Automatic conversion of the NetBSD pkgsrc CVS module, use with care
Find a file
salo 218c87ab37 Update to version 3.95
Changes:

- Put Nmap on a diet, with changes to the core port scanning routine
  (ultra_scan) to substantially reduce memory consumption, particularly
  when tens of thousands of ports are scanned.

- Wrote a new man page from scratch.  It is much more comprehensive
  (more than twice as long) and (IMHO) better organized than the
  previous one.  Read it online at http://www.insecure.org/nmap/man/
  or docs/nmap.1 from the Nmap distribution.  Let me know if you have
  any ideas for improving it.

- Wrote a new "help screen", which you get when running Nmap without
  arguments.  It is also reproduced in the man page and at
  http://www.insecure.org/nmap/data/nmap.usage.txt .  I gave up trying
  to fit it within a 25-line, 80-column terminal window.  It is now 78
  lines and summarizes all but the most obscure Nmap options.

- Removed foreign translations of the old man page from the
  distribution.  Included the following contributed translations
  (nroff format) of the new man page:
    Brazilian Portuguese by Lucien Raven (lucienraven(a)yahoo.com.br)
    Portuguese (Portugal) by José Domingos (jd_pt(a)yahoo.com) and
    Andreia Gaita (shana.ufie(a)gmail.com).

- Fixed a crash in IPID Idle scan.  Thanks to Ron
  (iago(a)valhallalegends.com>, Bakeman (bakeman(a)physics.unr.edu),
  and others for reporting the problem.

- Applied some small fixes so that Nmap compiles with Visual C++
  2005 Express, which is free from Microsoft at
  http://msdn.microsoft.com/vstudio/express/visualc/ .  Thanks to KX
  (kxmail(a)gmail.com) and Sina Bahram (sbahram(a)nc.rr.com)

- Version detection softmatches (when Nmap determines the service
  protocol such as smtp but isn't able to determine the app name such as
  Postfix) can now parse out the normal match line fields such as
  hostname, device type, and extra info.  For example, we may not know
  what vendor created an sshd, but we can still parse out the protocol
  number.  This was a patch from  Doug Hoyte (doug(a)hcsw.org).

- Fixed a problem which caused UDP version scanning to fail to print
  the matched service.  Thanks to Martin Macok
  (martin.macok(a)underground.cz) for reporting the problem and Doug
  Hoyte (doug(a)hcsw.org) for fixing it.

- Made the version detection "ports" directive (in
  nmap-service-probes) more comprehensive.  This should speed up scans a
  bit.  The patch was done by Doug Hoyte (doug(a)hcsw.org).

- Integrated all of the September version detection fingerprint
  submissions.  This was done by Version Detection Czar Doug Hoyte
  (doug(a)hcsw.org) and resulted in 86 new match lines.  Please keep
  those submissions coming!

- Fixed a bunch of typos and misspellings throughout the Nmap source
  code (mostly in comments).  This was a 625-line patch by Saint Xavier
  (skyxav(a)skynet.be).

- Added the --webxml option, which does the same thing as
  --stylesheet http://www.insecure.org/nmap/data/nmap.xsl , without
  requiring you to remember the exact URL or type that whole thing.

- Fixed a possible aliasing problem in tcpip.cc by applying a patch sent in by
  Gwenole Beauchesne (gbeauchesne(a)mandriva.com).  This problem
  shouldn't have had any effect on users since we already include the
  -fno-strict-aliasing option whenever gcc 4 is detected, but it
  brings us closer to being able to remove that option.

- Fixed a problem with the -S and -e options (spoof/set
  source address, and set interface by name, respectively).  The problem
  report and a partial patch were sent by Richard Birkett
  (richard(a)musicbox.net).

- Fixed a problem with the -S and option on Windows reporting "Failed
  to resolve/decode supposed IPv4 source address".  The -D (decoy)
  option was probably broken on that platform too.  Thanks to KX
  (kxmail(a)gmail.com) for reporting the problem and tracking down a
  potential solution.

- Added --thc option (undocumented)

- Modified libdnet-stripped/src/eth-bsd.c to allow for up to 128 bpf
  devices rather than 32.  This prevents errors like "Failed to open
  ethernet interface (fxp0)" when there are more than 32 interface
  aliases.  Thanks to Krok (krok(a)void.ru) for reporting the problem
  and even sending a patch.

- Fixed a minor syntax error in tcpip.h that was causing problems with
  GCC 4.1.  Thanks to Dirk Mueller (dmuell(a)gmx.net) for reporting
  the problem and sending a fix.

- Define INET_ADDRSTRLEN in tcpip.h if the system doesn't define it
  for us.  This apparently aids compilation on Solaris 2.6 and 7.
  Thanks to Albert Chin (nmap-hackers(a)mlists.thewrittenword.com) for
  sending the patch..

- Fixed an inefficiency in RPC scan that could slow things down and
  also sometimes resulted in the spurious warning message: Ünable to
  find listening socket in get_rpc_results"

- Fixed a compilation problem on Mac OS X and perhaps other platforms
  with a one-line fix to scan_engine.cc.  Thanks to Felix Gröbert
  (felix(a)groebert.org) for notifying me of the problem.

- Nmap now accepts target list files in Windows end-of-line format (\r\n)
  as well as standard UNIX format (\n) on all platforms.  Passing a
  Windows style file to Nmap on UNIX didn't work before unless you ran
  dos2unix first.

- Fixed a problem that prevented the command "nmap -sT -PT <targets>"
  from working from a non-privileged user account.  The -PT option
  doesn't change default behavior in this case, but Nmap should (and now
  does) allow it.

- Better handle ICMP type 3, code 0 (network unreachable) responses to
  port scan packets.  These are rarely seen when scanning hosts that
  are actually online, but are still worth handling.

- Fixed a crash occured when the --exclude option was used with
  netmasks on certain platforms.  Thanks to Adam
  (nmapuser(a)globalmegahost.com) for reporting the problem and to
  Greg Darke (starstuff(a)optusnet.com.au) for sending a patch (I
  modified the patch a bit to make it more efficient).

- Removed Identd scan support from NmapFE since Nmap no longer
  supports it.  Thanks to Jonathan Dieter (jdieter99(a)gmx.net) for the
  patch.

- Fixed a bug that caused Nmap to crash if an nmap-service-probes file
  was used which didn't contain the Exclude directive.

- Fixed a divide-by-zero crash when you specify rather bogus
  command-line arguments (a TCP scan with zero tcp ports).  Thanks to
  Bart Dopheide (dopheide(a)fmf.nl) for identifying the problem and
  sending a patch.
2005-12-08 21:59:17 +00:00
archivers Update to 7.30: 2005-12-06 23:48:47 +00:00
audio Write newline character to stderr instead of stdout, to avoid 2005-12-08 10:06:32 +00:00
benchmarks Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
biology Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
bootstrap Bump BOOTSTRAP_VERSION due to the update of archivers/pax. 2005-12-01 03:03:51 +00:00
cad Fix GCC 3.4+: label at end of compound statement. 2005-12-06 18:25:55 +00:00
chat Fix MASTER_SITES typo and add in a few more mirrors 2005-12-08 10:07:46 +00:00
comms Update asterisk-sounds-de-x9media to 20051128 2005-12-07 12:21:04 +00:00
converters Fixed pkglint warning about absolute filename /bin/sh. The real bug was 2005-12-06 17:19:21 +00:00
cross Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
crosspkgtools s/tar/${TAR}/ 2005-08-13 05:56:22 +00:00
databases DragonFly support. 2005-12-06 19:31:24 +00:00
devel Bumped the PKGREVISION of the packages that have been broken by the recent 2005-12-08 09:52:15 +00:00
distfiles
doc Note mailman update to 2.1.6nb1 2005-12-08 21:10:21 +00:00
editors Add DragonFly support. The libiconv conditional is nasty -- libiconv 2005-12-07 16:45:47 +00:00
emulators Update to 2.4: 2005-12-07 17:48:29 +00:00
finance Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
fonts Fixed pkglint warnings about misquoted @comment in PLIST_SUBST. 2005-12-08 21:41:17 +00:00
games Update to 1.0.2: 2005-12-07 17:57:38 +00:00
geography Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
graphics More xpdf buffer overflows. 2005-12-08 10:47:47 +00:00
ham Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
inputmethod Close pkg/28783 - unicon can't build under -current, submitted by myself. 2005-12-08 12:09:54 +00:00
lang Fix PLIST. Simplify PLIST handling. Bump PKGREVISION. 2005-12-08 12:20:02 +00:00
licenses Add the fs-kit licence. 2005-10-01 18:29:30 +00:00
mail Apply patch (from debian via Kimmo Suominen) to address 2005-12-08 21:09:04 +00:00
math Add a somewhat tricky check to get isinf correctly on DragonFly. 2005-12-08 14:35:01 +00:00
mbone Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
meta-pkgs Fixed PLIST quoting issue introduced by the recent "pkglint --autofix" 2005-12-08 09:14:50 +00:00
misc More xpdf buffer overflows. 2005-12-08 10:47:47 +00:00
mk Prefixed all status messages with "pre-build>" to show the user where they 2005-12-08 21:21:15 +00:00
multimedia Add DragonFly support. Disable always inlining on DragonFly, 2005-12-07 19:33:03 +00:00
net Update to version 3.95 2005-12-08 21:59:17 +00:00
news Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
packages
parallel Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
pkgtools - Improved the wording of the explanation regarding relative directories. 2005-12-08 21:13:49 +00:00
print Fix subdirectory on sunsite mirrors, noted by reed. 2005-12-08 18:53:24 +00:00
regress Added more tests for tr(1), including one that feeds 65536 bytes through 2005-11-24 19:46:45 +00:00
security Add DragonFly support. 2005-12-08 19:21:57 +00:00
shells Update zsh to 4.2.6. 2005-12-07 03:00:50 +00:00
sysutils Update to 1.38.2: 2005-12-08 01:32:11 +00:00
templates Drop some whitespace. 2005-06-01 19:07:20 +00:00
textproc Fix GCC 3.4+: label at end of compound statement. 2005-12-08 17:28:31 +00:00
time Initialisation with stdout has to be done at runtime. 2005-12-07 15:49:46 +00:00
wm Use imake PLIST variables. 2005-12-07 15:54:00 +00:00
www Add DragonFly support. 2005-12-08 17:11:58 +00:00
x11 Bumped the PKGREVISION of the packages that have been broken by the recent 2005-12-08 09:52:15 +00:00
Makefile Added a comment to the "regress" category. 2005-09-28 07:49:22 +00:00
pkglocate
README Refer doc/pkgsrc.txt instead of Packages.txt. 2005-05-07 22:16:38 +00:00

$NetBSD: README,v 1.18 2005/05/07 22:18:28 wiz Exp $

Please see doc/pkgsrc.txt for information.