1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-19 14:09:02 +00:00
Commit Graph

3106 Commits

Author SHA1 Message Date
fyodor
5c4444ddb5 new David ndiff task 2009-02-09 19:37:26 +00:00
fyodor
c0e819e86e rewording suggested by angico 2009-02-09 18:56:01 +00:00
david
83cb7d60b9 Clean up usage of the goodseq variable for checking trynum and pingseq. Remove
it from places it's not used. Limit its scope to the places it is used. Patch
from Daniel Roethlisberger.
2009-02-09 18:29:57 +00:00
fyodor
aa4a716c5f 2009-02-08 21:45:58 +00:00
fyodor
c4a2b18aba consolidate categories a abit -- remove 9 categories which only had 1 or 2 members in the whole file 2009-02-08 21:26:49 +00:00
david
1d1ca5346c Add a Croatian translation of Zenmap by Vlatko Kosturjak. 2009-02-08 20:52:16 +00:00
doug
06f5b7e8db Next batch of HTTP fingerprints from nmapsubmit-svfp-020309.mbx 2009-02-08 20:30:41 +00:00
david
aaaed61c52 Improve the efficiency of xml_convert. The old version was wasteful of space;
it started by allocating six times the size of the input string because in the
worst case each byte can take up to six bytes when escaped (&#xXX;). It was
wasteful of time because it built the string up with strncat, which pads the
entire destination buffer with null bytes every time it was called. This led to
quadratic time complexity, not linear as expected.

The new version uses the usual strategy of doubling the size of the buffer
whenever it runs out of space. It builds up the string using memcpy, checking
each time that there is space for the new copy.
2009-02-08 05:28:38 +00:00
david
590e7b7574 Fix abug in the DNS parser in dns-zone-transfer.nse: All '0' characters in
domain names were changed to '.', probably as a result of some code that wasn't
updated when surrounding code was. This changed the name net360.example.com to
net36..example.com.
2009-02-08 04:33:43 +00:00
fyodor
05428883c5 2009-02-07 21:19:57 +00:00
david
1252aa00fa Add CHANGELOG credits for the users who sent in reports for the
dns-zone-transfer.nse parsing bug.
2009-02-07 07:28:54 +00:00
doug
8d75390c9b First batch of http/http-proxy submissions from nmapsubmit-svfp-020309.mbx 2009-02-07 03:35:31 +00:00
fyodor
a7ae3fed29 Some dns-zone-transfer related problems noted by David, and misc. updates 2009-02-06 20:31:14 +00:00
david
e545084ebf Adjust the model numbers on the Tandberg OS print after reading the submission
email more closely.
2009-02-06 20:10:05 +00:00
david
9755978955 Expand an OS fingerprint slightly as a result of someone sending in a follow-up
scan.
2009-02-06 20:06:45 +00:00
david
e6d6e8d83e Fixed a DNS decoding bug in dns-zone-transfer.nse that created
garbage output and could crash Zenmap by including 0x0C bytes in XML
files. The Zenmap crash looked like
  SAXParseException: .../zenmap-XXXXXX.xml:39:290: not well-formed (invalid token)
2009-02-06 19:25:11 +00:00
david
fda214ed63 Make sure now has a value before assigning it to last_print in
ScanProgressMeter::printStats. I messed this up in r11985. Brandon reported the
problem.
2009-02-06 04:49:45 +00:00
doug
1491180c50 IRC, SIP and jabber from nmapsubmit-svfp-020309.mbx 2009-02-06 03:41:17 +00:00
doug
e73920016e * Remaining telnet submissions from nmapsubmit-svfp-020309.mbx
* Normalized cable modem match lines to be "broadband router" not "router"
2009-02-06 02:35:18 +00:00
fyodor
59b32dfab6 2009-02-06 00:16:50 +00:00
david
00b65b7768 Remove script args that are inherited from modules from sript documentation.
Such args are now included automatically in the generated documentation.
2009-02-05 23:45:12 +00:00
doug
cedc80699d About 2/3 of the telnet match lines from nmapsubmit-svfp-020309.mbx 2009-02-05 22:53:27 +00:00
doug
7a1470fde5 * SQL submissions from nmapsubmit-svfp-020309.mbx
* Refined PostgreSQL and MySQL match lines
2009-02-05 03:04:35 +00:00
doug
25379845ec * POP3 and IMAP submissions from nmapsubmit-svfp-020309.mbx
* Normalized some old IMAP match line output to be more like newer ones
2009-02-05 02:19:23 +00:00
david
eaccd9175e Use a command chain after the endlocal in python-wrap.bat to allow ndiff's exit
code to propagate.
2009-02-05 01:39:02 +00:00
doug
230691bfdd FTP updates from nmapsubmit-svfp-020309.mbx 2009-02-05 01:38:47 +00:00
david
02869fd83a Reintroduce the time_t local in ScanProgressMeter::printStats; it's needed for
Windows compilation.
2009-02-05 01:32:26 +00:00
david
29460cd95d Simplify and shorten the ScanProgressMeter::printStats code. 2009-02-05 00:25:25 +00:00
david
b369fd3c5b Add a patch from Henri Doreau that fixes an integer overflow in
ScanProgressMeter.
2009-02-04 23:24:49 +00:00
david
c5cf99a014 Canonicalize the formatting of some CHANGELOG credits. 2009-02-04 22:50:53 +00:00
david
7f3effda4a o [Ndiff] Ndiff is now included in the Windows zip distribution. For
space reasons, it is not an executable compiled with py2exe as in
  the executable installer, rather it is the Ndiff source code
  (ndiff.py) and a batch file wrapper (ndiff.bat). Because it's not
  precompiled, it's necessary to have a Python interpreter
  installed. [David]
2009-02-04 22:48:21 +00:00
ron
5ec608507a Backported a couple minor bugfixes from my experimental branch 2009-02-04 22:08:20 +00:00
david
20b753f16f Fix a couple of minor formatting problems in nmap-install.xml. 2009-02-04 16:25:22 +00:00
fyodor
e3dcefe207 Change 'SCRIPT ENGINE' prefix in log messages to the shorter 'NSE' 2009-02-04 08:13:41 +00:00
doug
4b23bb9bb2 On Tue, Feb 03, 2009 at 08:02:30PM -0800 or thereabouts, Fyodor wrote:
> Looking at our current nmap-service-probes, the first real probe for a
> TCP service on port 25 will be the "Hello" (which didn't exist at the
> time of the fingerprint above).  So my suggestion would be to move the
> OpenBSD spamd signature to the bottom of the HelLo probe SMTP
> signatures.
2009-02-04 07:04:09 +00:00
doug
8d44d28023 smtp submissions from nmapsubmit-svfp-020309.mbx and some services that were mislabeled as smtp 2009-02-04 03:45:54 +00:00
doug
cd3d4eb3dd New SSH submissions from nmapsubmit-svfp-020309.mbx
Made some of the OpenSSH lines more general to cover more of the combinations of patchsets distros use
2009-02-04 02:10:53 +00:00
doug
3a420809e9 * Merged HP-UX and AIX ftpd match lines. credit: Tom Sellers
* Added better comments to a few of the correction updates from previous commit
2009-02-04 00:25:48 +00:00
david
a041909485 Call locale.getdefaultlocale to get the system locale setting instead of
relying on gettext.install to do it. locale.getdefaultlocale checks the LANG
environment variable like gettext.install does, but it additionally does
platform-specific checks that remove the need to set LANG on Windows.
2009-02-03 23:54:58 +00:00
doug
787c854946 Applied corrections from nmapsubmit-svcorr-020309.mbx 2009-02-03 23:46:50 +00:00
david
23f21d6b7d Fix a factual error in the Windows installation section: in
winpcap-nmap-<version>.exe, <version> is the WinPcap version (currently 4.02),
not the Nmap version.
2009-02-03 23:07:48 +00:00
david
8e1f4ca00e Add missing replaceable tags around the "version" in "nmap-version" in the
Windows zip section.
2009-02-03 23:04:17 +00:00
david
8aa4ab72a8 Add to CHANGELOG:
o [Zenmap] Removed some unnecessary GTK+ files from the files
  installed by the Windows executable installer [David].
2009-02-03 21:52:35 +00:00
david
71a2cd30f2 Tweaked the file format of the topology icons (firewall.png, padlock.png, etc.)
in an attempt to improve compatibility with some versions of GTK+. This may fix
a crash like
  File "radialnet/gui/Image.py", line 53, in get_pixbuf
    self.__cache[icon + image_type] = gtk.gdk.pixbuf_new_from_file(file)
  GError: Couldn't recognize the image file format for file 'radialnet/padlock.png'
All I did was open the files in the GIMP and resave them.
2009-02-03 20:44:18 +00:00
david
d830039182 Remove the creation of the obsolete zenmap directory. It wasn't copied into the
installed files anyway.
2009-02-03 19:41:36 +00:00
jah
c622a1518e Pass "ssl" as the third paramater to connect() in pop3.lua capabilities() and
smtp-commands.nse if version detection set the port service_tunnel to "ssl".
2009-02-03 02:43:24 +00:00
jah
b05f66d43a Removed reference to C:\Python25. 2009-02-03 02:40:23 +00:00
fyodor
24327d201d final changelog entries in prep for 4.85BETA3 2009-02-03 02:34:11 +00:00
fyodor
475ba909a2 Update docs to note that we're using the gtk bundle from gtk.org rather than the glade win32 stuff 2009-02-03 02:33:36 +00:00
fyodor
05b54ac9b4 Update Nmap release number to 4.85BETA3 2009-02-03 02:29:19 +00:00