1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-08 07:29:03 +00:00

Add 3389 as an SSL port; Enhanced RDP Security requires TLS

This commit is contained in:
dmiller
2015-04-02 04:40:26 +00:00
parent 311c2c3065
commit dab7b10ebe
2 changed files with 18 additions and 4 deletions

View File

@@ -12262,6 +12262,7 @@ match landesk-rc m|^TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\
Probe TCP TerminalServer q|\x03\0\0\x0b\x06\xe0\0\0\0\0\0|
rarity 6
ports 515,1028,1068,1503,1720,1935,2040,3389
sslports 3389
match activefax m|^ActiveFax Server: Es befinden sich insgesamt| p/ActFax Communication ActiveFax/ i/German/

View File

@@ -185,12 +185,25 @@ LIKELY_HTTP_SERVICES = {
http = port_or_service(LIKELY_HTTP_PORTS, LIKELY_HTTP_SERVICES)
local LIKELY_SSL_PORTS = {
443, 465, 587, 636, 989, 990, 992, 993, 994, 995, 5061, 6679, 6697, 8443,
9001,
443, -- https
465, -- smtps
636, -- ldapssl
989, -- ftps-data
990, -- ftps-control
992, -- telnets
993, -- imaps
994, -- ircs
995, -- pop3s
3389, -- ms-wbt-server
5061, -- sip-tls
6679,
6697,
8443, -- https-alt
9001, -- tor-orport
}
local LIKELY_SSL_SERVICES = {
"ftps", "ftps-data", "https", "https-alt", "imaps", "ircs",
"ldapssl", "pop3s", "sip-tls", "smtps", "telnets", "tor-orport",
"ftps", "ftps-data", "ftps-control", "https", "https-alt", "imaps", "ircs",
"ldapssl", "ms-wbt-server", "pop3s", "sip-tls", "smtps", "telnets", "tor-orport",
}
---