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

4399 Commits

Author SHA1 Message Date
djalal
010bcf1b78 Whitespace and formatting fix. 2010-08-02 10:33:58 +00:00
kris
75580c850b Don't fragment IP packets with DF set, even if o.fragscan is set. If a
packet is built to explicitly avoid fragmentation, honor it.
2010-08-02 07:53:40 +00:00
kris
35dd4e1377 Don't retry in Sendto() if errno is EMSGSIZE: sleeping for a few seconds
won't shorten the packet.
2010-08-02 07:41:53 +00:00
kris
886015d72c don't log (trace) an IP packet if the send failed 2010-07-31 07:57:10 +00:00
kris
85f7060088 Update CHANGELOG entry for my r19330 (fix -f/--mtu) to note that Nping's
--mtu was fixed as well.
2010-07-28 23:14:41 +00:00
kris
643d3eb9ff o Fixed the fragmentation options (-f, --mtu) which broke in 5.35DC1.
Instead of sending multiple fragments, Nmap would just send the
  original whole packet instead.  In some circumstances, Nmap would
  fail to send on interfaces with low MTUs (such as SLIP lines) with
  no way to bump down packet sizes for transport. [Kris]

It looks like this has been broken in trunk since merging libnetutil,
and since r18037 in the dedup branch.
2010-07-28 22:34:12 +00:00
fyodor
e8fd5b69b0 add more results of testing with giant scan logs 2010-07-27 17:50:17 +00:00
kirubakaran
80a741d03a [zenmap] Added a new Script selection Interface. This interface is
present under the Scripting tab of profile editor. Besides selecting 
  script,argument values can also be given. Description and categories 
  of script is also shown.
  [kirubakaran]
2010-07-27 17:14:23 +00:00
fyodor
b303103e7e Note a way to reproduce Zenmap scaling issue 2010-07-27 07:29:47 +00:00
david
8a5d27fae8 Include <sys/sockio.h> in libnetutil/netutil.cc. This is necessary to
compile on OpenSolaris according to
http://blogs.sun.com/sdaven/entry/nmap_5_35dc1_compile_on.
2010-07-26 22:19:23 +00:00
kris
578a26e552 Remove unused variables -- I'm not sure if these were ever actually used 2010-07-26 18:08:36 +00:00
luis
ec2357f75d Minor update 2010-07-25 18:36:56 +00:00
david
1e54009fb9 Change the "namevals" key in the return value of
http.read_auth_challenge to "params" to match RFC 2617.
2010-07-25 17:33:35 +00:00
david
bb1119e199 Make the indentation of new auth-related http function match that of the
rest of the file.
2010-07-25 17:30:32 +00:00
david
bd0f13c9a0 Move the http.get_default_timeout function out of the section for
parsing header values. get_default_timeout seems to be completely
unused, so I've moved it right to the end until someone can check on
that.
2010-07-25 17:29:36 +00:00
david
d053e1a6cc Add RFC section references to the new http auth-related functions. 2010-07-25 17:26:46 +00:00
david
ef18c40400 Add to CHANGELOG:
o [NSE] The http library's request functions now accept an additional
  "auth" table within the option table, which if provided causes Basic
  authentication credentials to be sent. [David]
2010-07-25 17:14:15 +00:00
david
42a1bd99ab Merge from /nmap-exp/david/nmap-http-brute. This adds Basic
authentication support for http requests.
2010-07-25 17:12:52 +00:00
david
e1607c5509 Add a favicon hash for "Sourcefire http admin" from Jason DePriest. 2010-07-24 23:24:52 +00:00
kris
33fa744392 fix function name typo in @usage doc 2010-07-24 20:24:55 +00:00
luis
e8862c1fa3 Updated Nping to-do list with the latest dev activity 2010-07-24 18:24:58 +00:00
fyodor
a0853a69ab expand an author name from plain 'Matt' to 'Matthew Boyle' 2010-07-24 05:54:47 +00:00
fyodor
6051356fd3 canonicalize author field for asn-query and dns-fuzz. One had just 'Michael' and another had Michael Pattrick's full name and his email address too. I standardized on just the full name on both 2010-07-24 05:51:10 +00:00
fyodor
a03bbb206e Remove Ange's email address from http-php-version.nse to match what he uses in http-passwd.nse, ftp-libopie.nse, and ftp-anon.nse author fields (If he wants the email addresses, I'd be happy to put it in all four scripts--I'm just doing a little cleanup for consistency 2010-07-24 05:36:47 +00:00
fyodor
90a21e31d3 Remove Artoro's email address from smtp-open-relay to match what he uses in http-open-proxy (If he wants the email addresses, I'd be happy to put it in both scripts--I'm just doing a little cleanup for consistency 2010-07-24 05:34:08 +00:00
fyodor
027f095b4f Remove Kris's email address from two scripts to match what he uses in the other three (If he wants the email addresses, he is welcome to put them on all five--I'm just doing a little cleanup for consistency 2010-07-24 05:32:18 +00:00
fyodor
6f22390e45 Remove Jah's email address from two scripts to match what he uses in the other three (If he wants the email addresses, he is welcome to put them on all five--I'm just shooting for consistency 2010-07-24 05:30:36 +00:00
kris
cc33a59ca4 Add nmap.clock() for providing scripts with the current time in floating
point seconds since the epoch, and add clock_ms() and clock_us() to stdnse
for convenience (millisecond and microsecond).

qscan.nse now provides microsecond resolution.
2010-07-23 19:49:42 +00:00
david
33845f104c TODO: allow Nsock to log to stderr. 2010-07-23 18:32:47 +00:00
kris
ee3c89afe4 o [NSE] When receiving raw packets from Pcap, the packet capture time
is now available to scripts as an additional return value from
  pcap_receive().  It is returned as the floating point number of
  seconds since the epoch.  The qscan.nse script was updated to use
  this more accurate data instead of using the clock_ms() function
  (which returns the current time). [Kris]
2010-07-23 10:43:04 +00:00
fyodor
9b5d9af236 Add some examples of potential prerule/postrule scripts to write 2010-07-22 23:32:51 +00:00
fyodor
97284af321 Removed a duplicate entry noted by Matt Selsky 2010-07-22 05:52:37 +00:00
david
acd64e2921 Fix HTTP caching; every lookup was a cache miss. The problem was r16435,
where I added a check to make sure that a GET request would hit a cache
entry for a HEAD request and vice versa. Because of a misnamed
identifier, the test was always false.
2010-07-21 20:36:03 +00:00
fyodor
f08edac73a a few new items and reprioritization from discussion with Luis 2010-07-21 20:15:08 +00:00
luis
e6b04fb10a Updated with latests tasks for the echo mode 2010-07-21 19:06:16 +00:00
luis
f7d7fa9112 Make sure documentation for the echo mode gets added at some point 2010-07-21 18:13:23 +00:00
fyodor
40b55aae8c add details to a CPE task 2010-07-20 03:03:31 +00:00
fyodor
e4f275bff6 Add a small web task 2010-07-19 22:08:19 +00:00
david
b476797753 Use <userinput> in examples to highlight the user's typed text. 2010-07-19 20:26:36 +00:00
david
14de56cbcb Add an indexterm. 2010-07-19 18:31:45 +00:00
david
aa5d360900 Remove indextermst that are two near one another, such that they cause
duplicate page numbers to be incldued in the index.
2010-07-19 18:18:42 +00:00
david
108c10ccd9 More editing of ndiff.xml. 2010-07-19 18:17:35 +00:00
david
fd40bfd5ae Update the link to Visual Studio express. (The old link redirected to
the new.)
2010-07-19 17:26:18 +00:00
david
14f314327c Fix duplicate words in documentation. 2010-07-19 16:58:52 +00:00
david
7a4efd455a Spell-check documentation. 2010-07-19 16:41:57 +00:00
david
3df554de64 Spell-check NSEDoc. 2010-07-19 16:29:48 +00:00
batrick
b70fe49adf Compact/share some code. 2010-07-19 12:25:24 +00:00
fyodor
1e8f3556bd did my edits to the preface, also trivial capitalization changes elsewhere 2010-07-19 06:50:26 +00:00
david
156952fbf8 Do index canonicalization in scripting.xml. Remove ".nse" where not
needed.
2010-07-18 20:31:32 +00:00
david
121ff5cd2a Update, review, and edit scripting.xml. 2010-07-18 19:42:01 +00:00