1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 14:11:29 +00:00

Update my email address in the places which had the old one

This commit is contained in:
fyodor
2012-12-10 01:34:21 +00:00
parent a90d961f51
commit d81c7040f0
8 changed files with 10 additions and 10 deletions

View File

@@ -14,7 +14,7 @@
* SOFTWARE. * SOFTWARE.
*/ */
/* Modified by Fyodor (fyodor@insecure.org) for inclusion in the Nmap /* Modified by Fyodor (fyodor@nmap.org) for inclusion in the Nmap
* Security Scanner. * Security Scanner.
* *
* $Id$ * $Id$

View File

@@ -14,7 +14,7 @@
* SOFTWARE. * SOFTWARE.
*/ */
/* Modified by Fyodor (fyodor@insecure.org) for inclusion in the Nmap /* Modified by Fyodor (fyodor@nmap.org) for inclusion in the Nmap
* Security Scanner. * Security Scanner.
* *
* $Id$ * $Id$

View File

@@ -1,7 +1,7 @@
/*************************************************************************** /***************************************************************************
* nbase_ipv6.h -- IPv6 portability classes and structures These were * * nbase_ipv6.h -- IPv6 portability classes and structures These were *
* written by fyodor@insecure.org . * * written by fyodor@nmap.org . *
* * * *
***********************IMPORTANT NMAP LICENSE TERMS************************ ***********************IMPORTANT NMAP LICENSE TERMS************************
* * * *

View File

@@ -4,7 +4,7 @@
* allocation. Right now they are just safe_ versions of well known calls * * allocation. Right now they are just safe_ versions of well known calls *
* like malloc that quit if the allocation fails (so you don't have to * * like malloc that quit if the allocation fails (so you don't have to *
* have a bunch of ugly checks in your code. These were written by * * have a bunch of ugly checks in your code. These were written by *
* fyodor@insecure.org . * * fyodor@nmap.org . *
* * * *
***********************IMPORTANT NMAP LICENSE TERMS************************ ***********************IMPORTANT NMAP LICENSE TERMS************************
* * * *

View File

@@ -1,7 +1,7 @@
/*************************************************************************** /***************************************************************************
* nbase_str.c -- string related functings in the nbase library. These * * nbase_str.c -- string related functings in the nbase library. These *
* were written by fyodor@insecure.org . * * were written by fyodor@nmap.org . *
* * * *
***********************IMPORTANT NMAP LICENSE TERMS************************ ***********************IMPORTANT NMAP LICENSE TERMS************************
* * * *

View File

@@ -1,7 +1,7 @@
/* Note -- this file was obtained from tcpdump-2000-9-17 CVS snapshot * /* Note -- this file was obtained from tcpdump-2000-9-17 CVS snapshot *
* ( www.tcpdump.org). It has been modified slightly for * * ( www.tcpdump.org). It has been modified slightly for *
* compatability with libnbase. Modification etails may be in the * * compatability with libnbase. Modification etails may be in the *
* nbase CHANGELOG - fyodor@insecure.org */ * nbase CHANGELOG - fyodor@nmap.org */
/* /*

View File

@@ -1965,7 +1965,7 @@ void printosscanoutput(Target *currenths) {
p = numlst; p = numlst;
for (i = 0; i < currenths->seq.responses; i++) { for (i = 0; i < currenths->seq.responses; i++) {
if (p - numlst > (int) (sizeof(numlst) - 15)) if (p - numlst > (int) (sizeof(numlst) - 15))
fatal("STRANGE ERROR #3877 -- please report to fyodor@insecure.org\n"); fatal("STRANGE ERROR #3877 -- please report to fyodor@nmap.org\n");
if (p != numlst) if (p != numlst)
*p++ = ','; *p++ = ',';
sprintf(p, "%X", currenths->seq.seqs[i]); sprintf(p, "%X", currenths->seq.seqs[i]);
@@ -1989,7 +1989,7 @@ void printosscanoutput(Target *currenths) {
p = numlst; p = numlst;
for (i = 0; i < currenths->seq.responses; i++) { for (i = 0; i < currenths->seq.responses; i++) {
if (p - numlst > (int) (sizeof(numlst) - 15)) if (p - numlst > (int) (sizeof(numlst) - 15))
fatal("STRANGE ERROR #3876 -- please report to fyodor@insecure.org\n"); fatal("STRANGE ERROR #3876 -- please report to fyodor@nmap.org\n");
if (p != numlst) if (p != numlst)
*p++ = ','; *p++ = ',';
sprintf(p, "%hX", currenths->seq.ipids[i]); sprintf(p, "%hX", currenths->seq.ipids[i]);
@@ -2010,7 +2010,7 @@ void printosscanoutput(Target *currenths) {
p = numlst; p = numlst;
for (i = 0; i < currenths->seq.responses; i++) { for (i = 0; i < currenths->seq.responses; i++) {
if (p - numlst > (int) (sizeof(numlst) - 15)) if (p - numlst > (int) (sizeof(numlst) - 15))
fatal("STRANGE ERROR #3877 -- please report to fyodor@insecure.org\n"); fatal("STRANGE ERROR #3878 -- please report to fyodor@nmap.org\n");
if (p != numlst) if (p != numlst)
*p++ = ','; *p++ = ',';
sprintf(p, "%X", currenths->seq.timestamps[i]); sprintf(p, "%X", currenths->seq.timestamps[i]);

View File

@@ -55,7 +55,7 @@ struct ip {
#define HAVE_STRUCT_IP #define HAVE_STRUCT_IP
/* From Linux glibc, which apparently borrowed it from /* From Linux glibc, which apparently borrowed it from
BSD code. Slightly modified for portability --fyodor@insecure.org */ BSD code. Slightly modified for portability --fyodor@nmap.org */
/* /*
* Structure of an internet header, naked of options. * Structure of an internet header, naked of options.
*/ */