mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 16:57:06 +00:00
Make smtp-commands.nse run for the services {"smtp", "smtps",
"submission"}, like the other smtp scripts.
This commit is contained in:
parent
6ba24a5a36
commit
d2f232396e
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue