mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
Add CHANGELOG entry for UDP payloads and add guidelines for payloads to
payloads.cc.
This commit is contained in:
parent
2ad8804e64
commit
3f8392d974
2 changed files with 11 additions and 0 deletions
|
|
@ -1,5 +1,12 @@
|
|||
# Nmap Changelog ($Id$); -*-text-*-
|
||||
|
||||
o For some UDP ports, Nmap will now send a protocol-specific payload
|
||||
that is more likely to get a response than an empty packet is. This
|
||||
improves the effectiveness of probes to those ports for host
|
||||
discovery, and also makes an open port more likely to be classified
|
||||
open rather than open|filtered. The ports and payloads are defined
|
||||
in payload.cc. [David]
|
||||
|
||||
o Fixed two memory leaks in ncat_posix.c and a bug where an open file was not
|
||||
being closed in libdnet-stripped/src/intf.c [Josh Marlow]
|
||||
|
||||
|
|
|
|||
|
|
@ -103,6 +103,10 @@ extern NmapOps o;
|
|||
|
||||
s = eval('"' + raw_input().replace('"', '\\"') + '"')
|
||||
print '"' + "".join(c.isalnum() and c or "\\%03o" % ord(c) for c in s) + '"'
|
||||
|
||||
These payloads are sent with every host discovery or port scan probe. Only
|
||||
include payloads that are unlikely to crash services, trip IDS alerts, or
|
||||
change state on the server.
|
||||
*/
|
||||
|
||||
static const char payload_DNSStatusRequest[] =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue