1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-22 23:49:03 +00:00

level should be a number

This commit is contained in:
batrick
2014-08-03 00:43:03 +00:00
parent 1cec0a305b
commit a809f52d5d

View File

@@ -56,8 +56,8 @@ StartTLS = {
status, result = s:receive_lines(1) status, result = s:receive_lines(1)
if not (string.match(result, "^234")) then if not (string.match(result, "^234")) then
stdnse.print_debug("1","%s",result) stdnse.print_debug(1,"%s",result)
stdnse.print_debug("1","AUTH TLS failed or unavailable. Enable --script-trace to see what is happening.") stdnse.print_debug(1,"AUTH TLS failed or unavailable. Enable --script-trace to see what is happening.")
-- Send QUIT to clean up server side connection -- Send QUIT to clean up server side connection
local query = "QUIT\r\n" local query = "QUIT\r\n"
@@ -77,7 +77,7 @@ StartTLS = {
if status then if status then
status,err = s:reconnect_ssl() status,err = s:reconnect_ssl()
if not status then if not status then
stdnse.print_debug("1","Could not establish SSL session after STARTTLS command.") stdnse.print_debug(1,"Could not establish SSL session after STARTTLS command.")
s:close() s:close()
return false, "Failed to connect to SMTP server" return false, "Failed to connect to SMTP server"
else else
@@ -307,8 +307,8 @@ StartTLS = {
status, resultEHLO = s:receive_lines(1) status, resultEHLO = s:receive_lines(1)
if not (string.match(resultEHLO, "^250")) then if not (string.match(resultEHLO, "^250")) then
stdnse.print_debug("1","%s",resultEHLO) stdnse.print_debug(1,"%s",resultEHLO)
stdnse.print_debug("1","EHLO with errors or timeout. Enable --script-trace to see what is happening.") stdnse.print_debug(1,"EHLO with errors or timeout. Enable --script-trace to see what is happening.")
return false, "Failed to connect to SMTP server" return false, "Failed to connect to SMTP server"
end end
@@ -320,8 +320,8 @@ StartTLS = {
status, resultEHLO = s:receive_lines(1) status, resultEHLO = s:receive_lines(1)
if not (string.match(resultEHLO, "^220")) then if not (string.match(resultEHLO, "^220")) then
stdnse.print_debug("1","%s",resultEHLO) stdnse.print_debug(1,"%s",resultEHLO)
stdnse.print_debug("1","STARTTLS failed or unavailable. Enable --script-trace to see what is happening.") stdnse.print_debug(1,"STARTTLS failed or unavailable. Enable --script-trace to see what is happening.")
-- Send QUIT to clean up server side connection -- Send QUIT to clean up server side connection
local query = "QUIT\r\n" local query = "QUIT\r\n"
@@ -341,7 +341,7 @@ StartTLS = {
if status then if status then
status,err = s:reconnect_ssl() status,err = s:reconnect_ssl()
if not status then if not status then
stdnse.print_debug("1","Could not establish SSL session after STARTTLS command.") stdnse.print_debug(1,"Could not establish SSL session after STARTTLS command.")
s:close() s:close()
return false, "Failed to connect to SMTP server" return false, "Failed to connect to SMTP server"
else else