1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Make smtp-commands.nse run for the services {"smtp", "smtps",

"submission"}, like the other smtp scripts.
This commit is contained in:
david
2010-04-01 04:10:40 +00:00
parent 6ba24a5a36
commit d2f232396e

View File

@@ -54,7 +54,7 @@ require "shortport"
require "stdnse"
require "comm"
portrule = shortport.port_or_service({25, 587, 465}, "smtp")
portrule = shortport.port_or_service({ 25, 465, 587 }, { "smtp", "smtps", "submission" })
action = function(host, port)