forked from nmap/nmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libdnet stripped and integrated, ARP ping scan starting to work prett…
…y well
- Loading branch information
fyodor
committed
Apr 30, 2005
1 parent
3922128
commit 4d2beed
Showing
106 changed files
with
65,969 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
|
||
*BSD, MacOS X, Linux | ||
-------------------- | ||
|
||
./configure && make | ||
|
||
Solaris, IRIX, BSD/OS, HP-UX, Tru64 | ||
----------------------------------- | ||
|
||
For firewall support, install Darren Reed's IP Filter package: | ||
|
||
http://coombs.anu.edu.au/~avalon/ | ||
|
||
For tunnel support on Solaris, install the Universal TUN/TAP Driver: | ||
|
||
http://vtun.sourceforge.net/tun/ | ||
|
||
Unixware, AIX | ||
------------- | ||
|
||
These ports are incomplete. If anyone can set me up with legitimate | ||
root access to these platforms, it would be most appreciated. :-) | ||
|
||
Windows 2000/XP | ||
--------------- | ||
|
||
For raw Ethernet sending, install the WinPcap driver and DLLs, and | ||
extract their developer pack to a build directory: | ||
|
||
http://winpcap.polito.it/install/default.htm | ||
|
||
# XXX - unsupported for now | ||
# For tunnel interface support, install the OpenVPN "TAP-Win32 Virtual | ||
# Ethernet Adapter" component (their Windows installer will let you | ||
# install it alone): | ||
# | ||
# http://openvpn.sourceforge.net/ | ||
|
||
For firewall support, install HSC's PktFilter service: | ||
|
||
http://www.hsc.fr/ressources/outils/pktfilter/index.html.en | ||
|
||
Most Windows developers should just use the libdnet developer's pack | ||
(with MinGW and MSVC++ libraries) instead of building it themselves. | ||
But for those who really want to know... | ||
|
||
To build a MinGW native library (under Cygwin+MinGW): | ||
|
||
./configure && make | ||
|
||
To build a Microsoft Visual C++ native library and Python module | ||
(again, under Cygwin+MinGW): | ||
|
||
./configure | ||
cd python && C:/Python23/python.exe setup.py build | ||
cd ../src && lib /out:dnet.lib *.obj | ||
|
||
|
||
# $Id: INSTALL,v 1.4 2005/02/15 07:38:19 dugsong Exp $ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
Copyright (c) 2000-2004 Dug Song <dugsong@monkey.org> | ||
All rights reserved, all wrongs reversed. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions | ||
are met: | ||
|
||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
3. The names of the authors and copyright holders may not be used to | ||
endorse or promote products derived from this software without | ||
specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, | ||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY | ||
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | ||
THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | ||
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | ||
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | ||
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
Oops, something went wrong.