david
64b7e255ef
Add the segmentation fault fix from zenmap r7176 to the CHANGELOG.
2008-04-22 18:35:12 +00:00
fyodor
a552a52eb1
change all -P0 instances to -PN, rewrite protocol ping (-PO) section a bit
2008-04-19 09:08:59 +00:00
kris
44a4cb90e6
Fixing the assertion failure: "Target.cc:396: void Target::stopTimeOutClock(const timeval*): Assertion 'htn.toclock_running == true' failed." This was caused when a target had scripts in multiple run levels. The problem was the time-out clocks added for --host-timeout support in NSE (r6657--appears to be present since 4.52). Now the time-out clocks are started before each runlevel execution, which (besides not failing assert) makes more sense because the timer would have been counting even when the target had no scripts in the current runlevel.
2008-04-16 17:56:48 +00:00
fyodor
f2938a2d37
o Fixed the NmapArpCache so that it actually works. Previously, Nmap
...
was always falling back to the system ARP cache. Of course this
raises the question of whether NmapArpCache is needed in the first
place. [Daniel Roethlisberger]
2008-04-14 23:55:25 +00:00
kris
10899aba9b
Adding a service-probes match for the Motorola WE800G bridge. I used the WR850G line directly below it as a starting point since I have both of these devices on my LAN--they are extraordinarily similar.
2008-04-14 04:25:40 +00:00
david
b1facd9a19
Add the vendor "Apple" to some Mac OS fingerprints.
2008-04-14 02:28:16 +00:00
david
7f910924ec
Mention the removal of tcpsequence class in the CHANGELOG, and bump the XML output version to 1.02.
2008-04-11 19:33:49 +00:00
david
c0490af2fd
Remove mentions of the TCP sequence class in XML output.
2008-04-11 18:57:32 +00:00
david
c7017806cc
Remove some dead gen-1 OS code.
2008-04-11 03:54:44 +00:00
david
071d313e7b
Use included versions of ilbdnet, libpcap, libpcre, and liblua when building an RPM.
2008-04-11 03:01:01 +00:00
david
cfb8d87874
Add --with-libdnet=included to the configure --help output and clarify that it
...
is the default.
2008-04-10 21:00:09 +00:00
david
e025ff4173
Fix the test for liblua (on my computer it requires also linking with libm) and
...
simplify the Lua check in configure.ac.
2008-04-10 20:44:11 +00:00
kris
841071b121
Simple change: make state_table local in the NSElib shortport.service()
2008-04-10 15:24:49 +00:00
david
7f2e704795
Reduce the maximum number of sockets from max_sd() - 4 to max_sd() - 5. I've
...
foudn that five files can be open on Mac OS X: stdin, stdout, stderr, /dev/tty,
and /private/var/run/utmpx. This could cause a non-root scan at a high scan
rateto fail with the message "Too many open files". I was able to cause this
with "nmap --min-rate 5000 localhost -p-".
That command still fails with the same error message, but for an entirely
different reason. After a while, one of the connect calls fails with an errno of
22 = EINVAL, Invalid argument. Whatever this means, the socket doesn't get
closed, Nmap just reports a "Strange error from connect". The socket is still
open but Nmap doesn't include it in its count of open sockets, so it's off by
one (or more, conceivably). This allows it to try to open one too many sockets
and bomb with an error message.
Note that running as non-root is important both because it uses a connect scan
and because non-root users have a lower limit on open files.
I've tried just closing the socket when EINVAL is returned, and that fixes the
problem. But that's likely to differ on different systems. Plus I don't know why
EINVAL is returned; maybe it's an OS bug. This only affects localhost scans and
only at high scan rates, so I'm leaving it alone.
2008-04-10 01:51:05 +00:00
david
9c60ac5741
Move the check for a host being timed out or completed to before the check for a minimum rate in HostScanStats::sendOK. We don't want to tell a host that has nothing to send to send something.
2008-04-09 23:09:21 +00:00
david
ed4e96b4f7
Update the --min-rate documentation in the reference guide.
2008-04-09 22:23:57 +00:00
david
5ebce24446
Fix an index term in the reference guide: --g to -g.
2008-04-09 22:11:01 +00:00
fyodor
ee5bd4bb7c
reflect some url changes
2008-04-09 09:55:38 +00:00
fyodor
5b113453b3
reflect moved url
2008-04-09 09:55:03 +00:00
kris
a85151470d
Whoops, updating docs for r7098 (NSE unfiltered port selection)
2008-04-09 05:20:11 +00:00
fyodor
5551c5a311
o Fixed a bunch of code to avoid compilation warning messages (at
...
least on some Linux machines) [Andrew J. Bennieston]
2008-04-09 02:11:20 +00:00
kris
fa9bd6be6e
Allow unfiltered ports to be selected in NSE
2008-04-09 01:54:14 +00:00
fyodor
f2ebfdecba
o Fixed a bug on Win32 problem which caused an infinite loop when Nmap
...
encountered certain broadcast addresses. [Dudi Itzhakov]
2008-04-09 00:07:20 +00:00
david
6b1465612f
Lower-case zenmap for uniformity with RPM packages.
2008-04-08 22:17:12 +00:00
david
4787e2e239
Allow adding an appendage to the image name.
2008-04-08 22:12:39 +00:00
david
3a8f2d00e4
Another known issue: You can't run from a directory with a space in the name.
2008-04-08 21:49:56 +00:00
david
120367b24d
Add COPYING to the Zenmap distribution.
2008-04-08 21:12:29 +00:00
david
db7d641f38
Just copy Zenmap.app, don't move it.
2008-04-08 21:10:26 +00:00
david
6da0f26a20
Add a README to the Zenmap distribution.
2008-04-08 21:07:09 +00:00
david
7057e0a03d
Fix an error in macosx/Makefile having to do with creating the staging directory.
2008-04-08 20:09:17 +00:00
david
061ded973d
Allocate 128 characters for the idle scan ScanProgressMeter title. Previously
...
it was 32 characters. The "idle scan against " and the \0 terminator take up 19
characters, leaving only 13, which isn't enough to represent all IP addresses,
let alone host names.
2008-04-08 19:59:56 +00:00
david
4d6d9eef1d
Add macosx/Makefile, which creates a disk image of the Zenmap bundle.
2008-04-08 19:50:06 +00:00
kris
55eb8199fe
fix: nmap.getPortState() -> nmap.get_port_state() in NSE docs
2008-04-08 16:15:10 +00:00
kris
43523f441b
Correcting the uptime parsing and reporting in SNMPsysdesr.nse when the uptime is less than about 46 hours. The amount of bytes holding the uptime is variable up to 4, but the script was assuming it always held 4 bytes of uptime. When the real uptime was less than 46 hours, this script was reporting an uptime anywhere from 5 days to 130 days (I think it actually reported 0 days once, but the hours were all messed up).
2008-04-08 14:58:17 +00:00
fyodor
c89f191406
minor updates to license and author fields
2008-04-07 08:57:52 +00:00
fyodor
60d1e103d3
Canonicalize license text--more than half did not even spell license correctly. They all still say that they are under Nmap's license, just with consistent capitalization and spelling, and now a link to Nmap legal page at http://nmap.org/man/man-legal.html
2008-04-07 08:23:21 +00:00
kris
425d6afdab
Adding more PCRE option flags to the list returned by the NSE pcre.flags() function. This is up-to-date as of PCRE 7.6
2008-04-06 00:01:33 +00:00
fyodor
d3d97d934b
print host name and IP in a script engine status message, rather than just hostname (which Nmap sometimes does not know). Patch from Jah
2008-04-05 23:52:41 +00:00
fyodor
83fe88c0f8
apply patch from Tom Sellers which modifies ms-sql-s signatures; I made minor changes
2008-04-05 23:44:30 +00:00
fyodor
8bee871157
change svn:externals to correspond to path change in svn from /umit to /zenmap
2008-04-04 19:12:27 +00:00
fyodor
8d3569c71c
disambiguate a link
2008-04-04 19:11:47 +00:00
fyodor
20143ece6f
add MingW compilation fix
2008-04-04 19:11:19 +00:00
david
1b7063ee73
Fix a typo in MACLookup.cc: corolation -> correlation.
2008-03-31 23:05:53 +00:00
doug
507e720217
vsftpd 00PS->OOPS patch from Kris
...
and
citrix metafrme -> metaframe from James Beers
2008-03-31 22:56:33 +00:00
david
22dbdd4a3b
Make a new method HostScanStats::probes_outstanding_empty to avoid a couple of possible traversals of probes_outstanding.
2008-03-31 15:14:34 +00:00
david
6aa96dd816
Change a call to probes_outstanding.size to one to num_probes_outstanding for consistency.
2008-03-31 14:39:34 +00:00
kris
8530569047
Adding my Datafiles NSElib for parsing the nmap-* data files for scripts and also update rpcinfo.nse to use this library. Includes CHANGELOG and docs/scripting.xml updates
2008-03-30 20:33:33 +00:00
kris
5f81cca485
When using the NSE nmap.set_port_state(), check if the requested port is already in the requested state. Otherwise, "Duplicate port" messages are printed, and the inaccurate "script-set" state reason is used. This mostly just occurs when -sV is used (I first spotted this when using Brandon's nbstat.nse with -sV, although other scripts do the same thing)
2008-03-27 22:15:50 +00:00
kris
60924c7308
update ripeQuery.nse to not print extraneous beginning whitespace
2008-03-27 18:08:42 +00:00
david
9186e84358
Add --min-rate to CHANGELOG.
2008-03-26 02:50:48 +00:00