1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-05 13:06:32 +00:00
Commit Graph

1903 Commits

Author SHA1 Message Date
dmiller
e7baa4418b New DTLS service probe and match line. 2016-09-23 05:18:16 +00:00
dmiller
9370f5bd5d Strip carriage returns (\r) from output to prevent spoofing 2016-09-21 03:55:12 +00:00
dmiller
d1fb502144 Fix some bad patterns with excessive backtracking 2016-09-21 03:55:11 +00:00
david
59cc2fe72a Avoid eating 'T' 'U' 'S' 'P' not followed by ':' in getpts.
On reading 'T', 'U', 'S', or 'P', getpts_aux would unconditionally
consume the character before checking to see whether it was followed by
a ':'. You could insert 'T', 'U', 'S', or 'P' in several places and it
would just be ignored, which is different treatment than other letters
got.

Behavior before:
	nmap -p 9
	# scans port 9

	nmap -p discard
	# scans port 9

	nmap -p Tdiscard
	# scans port 9

	nmap -p T:Tdiscard
	# scans port 9

	nmap -p Tdi*ard
	# scans port 9

	nmap -p Xdiscard
	# Error #485: Your port specifications are illegal.  Example of proper form: "-100,200-1024,T:3000-4000,U:60000-"

Behavior after:
	nmap -p 9
	# scans port 9

	nmap -p discard
	# scans port 9

	nmap -p Tdiscard
	# Error #485: Your port specifications are illegal.  Example of proper form: "-100,200-1024,T:3000-4000,U:60000-"

	nmap -p T:Tdiscard
	# Error #485: Your port specifications are illegal.  Example of proper form: "-100,200-1024,T:3000-4000,U:60000-"

	nmap -p Tdi*ard
	# Error #485: Your port specifications are illegal.  Example of proper form: "-100,200-1024,T:3000-4000,U:60000-"

	nmap -p Xdiscard
	# Error #485: Your port specifications are illegal.  Example of proper form: "-100,200-1024,T:3000-4000,U:60000-"
2016-09-18 20:42:56 +00:00
dmiller
182bcf8c1c Add compatibility with LibreSSL. Closes #543 2016-09-09 14:08:48 +00:00
dmiller
f607178541 Fix calling Ndiff from Zenmap on OS X. http://seclists.org/nmap-dev/2016/q3/266 2016-09-09 00:53:45 +00:00
dmiller
0790885360 CoAP scripts, payloads, and service probe for CoAP by Mak Kolybabi 2016-09-08 21:19:55 +00:00
dmiller
3fcd3987d3 Claudiu's IPMI scripts from GSoC 2014 2016-09-08 17:30:40 +00:00
dmiller
ee97c8f2a9 New MQTT script and library. Closes #352 2016-09-07 20:01:47 +00:00
dmiller
0edbf3f073 Tridium Fox script, probes, sslports. 2016-09-07 03:49:31 +00:00
dmiller
916647d375 New probe and matchline for ProConOS 2016-09-06 16:36:29 +00:00
dmiller
14de59e6e5 New script: pcworx-info 2016-09-06 04:27:47 +00:00
dmiller
d2dcb49a88 Sync CHANGELOG with 7.25BETA2 release 2016-09-02 04:12:24 +00:00
dmiller
dbc995b883 Missed a call to server_key_exchange that also needed protocol 2016-08-31 02:32:26 +00:00
dmiller
1bbd6c8e90 Fix a bug: forgot to pass in the protocol version 2016-08-31 02:32:25 +00:00
dmiller
3997b3c196 New script oracle-tns-version 2016-08-31 02:32:24 +00:00
nnposter
537eefeac4 Fixes a CHANGELOG typo 2016-08-30 21:38:05 +00:00
nnposter
ea8a343b6c Captures changes to http-default-accounts.nse 2016-08-30 21:24:49 +00:00
dmiller
58bd519f90 Add Github issue links to changelog 2016-08-30 18:59:58 +00:00
dmiller
3d377e07ee tftp-enum: Don't brute cisco names with custom wordlists. Fixes #117. Closes #355 2016-08-30 18:59:57 +00:00
dmiller
8779c1e376 Fix a crash in ssl-enum-ciphers when parsing unsupported cert types 2016-08-30 16:07:08 +00:00
tomsellers
7dc1bbf928 Update CHANGELOG for last commit 2016-08-25 22:37:36 +00:00
dmiller
f4c5c832a6 Remove dependency on pcap-int.h Fixes #426
Windows doesn't support selectable pcap fds, so instead of fiddling with
adapter read timeouts via PacketSetReadTimeout, we get an event handle
with pcap_get_event and WaitForSIngleObject. This means we don't need to
extract the adapter from the pcap_t, which is not part of the libpcap
API and was causing crashes switching between the libpcap versions used
by WinPcap and Npcap.
2016-08-25 18:41:03 +00:00
dmiller
d4f698bc59 Avoid unnecessary assert failure: http://seclists.org/nmap-dev/2016/q3/98 2016-08-22 19:50:06 +00:00
paulino
429215565c Removes obsolete script. Closes #519 2016-08-22 01:34:02 +00:00
abhishek
22fc9e7865 Add CHANGELOG entry for --script-timeout. 2016-08-20 18:57:52 +00:00
nnposter
5391960515 Adds a CHANGELOG entry to capture a major update to script http-default-accounts 2016-08-19 20:02:09 +00:00
abhishek
9d288db7fd Add support for decoys in IPv6 closes #433 and fixes #98 2016-08-17 06:09:09 +00:00
vincent
bd1108c442 Update CHANGELOG for OpenSSL 1.1.0-pre5 and previous versions 2016-08-01 09:41:58 +00:00
dmiller
56f3573609 Fix interaction of --ssl --exec --max-conns 2016-07-30 00:13:18 +00:00
dmiller
0b8b1097ab Changelog entry for bounce scan changes 2016-07-29 16:24:00 +00:00
dmiller
98d5fd7625 Fix a segfault due to Nsock event leak in NSE. 2016-07-21 21:36:40 +00:00
dmiller
5b7a07b6c9 Add clock-skew script, datetime library 2016-07-21 17:05:25 +00:00
dmiller
60dc6353b9 Bump version from 7.25BETA1 release, regen docs, merge CHANGELOG 2016-07-19 19:57:56 +00:00
dmiller
5040fb3874 Add a couple changelog entries 2016-07-19 15:11:22 +00:00
dmiller
b47c55dc6e Add sslv2-drown. Closes #365 2016-07-07 16:35:39 +00:00
dmiller
1c16a55227 New script: http-mcmp. Closes #304 2016-06-25 19:23:26 +00:00
dmiller
72f3a17c60 Let Nping use Npcap on Windows. 2016-06-25 05:00:02 +00:00
dmiller
c52d865b22 Add legend for Topography window. Closes #279, Fixes #258 2016-06-25 03:53:00 +00:00
paulino
bff2dc4563 Adds clamav-exec.nse to detect ClamAV servers vulnerable to remote clamav command execution 2016-06-20 05:50:04 +00:00
paulino
540494a92d Adds http-aspnet-debug to detect ASP.NET applications with debugging enabled. 2016-06-18 14:51:03 +00:00
dmiller
67fd101b01 Enable Nmap, Nping to use Npcap over Winpcap if available. 2016-06-14 14:16:46 +00:00
dmiller
7a9ab13bee Fix assertion error when stats requested and 0 threads scheduled 2016-06-14 00:34:22 +00:00
dmiller
39018e3e91 Check for RSA exponent of 1, resulting in F score 2016-06-09 04:36:09 +00:00
dmiller
88bcae4ef1 Add some changelog entries 2016-06-09 04:36:06 +00:00
paulino
91ead4aa2e GH#379 changelog 2016-05-16 17:05:15 +00:00
dmiller
f38b959593 Avoid clobbering nsiod.peer with junk data if recvfrom doesn't set src_addr 2016-05-13 02:13:25 +00:00
dmiller
0dd8757e70 Add needed requires to mysql-cis.audit. Closes #371 2016-05-11 14:55:43 +00:00
dmiller
423c8380ef Fix network prefix length on Windows. http://seclists.org/nmap-dev/2016/q2/101 2016-05-11 02:23:21 +00:00
dmiller
b341915722 Deprecate RC4 ciphersuites 2016-05-02 13:55:16 +00:00