1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-01 04:19:02 +00:00

Re-indent some scripts. Whitespace-only commit

https://secwiki.org/w/Nmap/Code_Standards
This commit is contained in:
dmiller
2014-01-31 13:02:29 +00:00
parent 64fb5b3482
commit d36c08dcf5
137 changed files with 3977 additions and 3977 deletions

View File

@@ -22,53 +22,53 @@ categories = {"default", "safe"}
portrule = shortport.port_or_service(22, "ssh")
action = function(host, port)
local socket = nmap.new_socket()
local result;
local status = true;
local socket = nmap.new_socket()
local result;
local status = true;
socket:connect(host, port)
status, result = socket:receive_lines(1);
socket:connect(host, port)
status, result = socket:receive_lines(1);
if (not status) then
socket:close()
return
end
if (not status) then
socket:close()
return
end
if (result == "TIMEOUT") then
socket:close()
return
end
if (result == "TIMEOUT") then
socket:close()
return
end
if not string.match(result, "^SSH%-.+\n$") then
socket:close()
return
end
if not string.match(result, "^SSH%-.+\n$") then
socket:close()
return
end
socket:send("SSH-1.5-NmapNSE_1.0\n")
socket:send("SSH-1.5-NmapNSE_1.0\n")
-- should be able to consume at least 13 bytes
-- key length is a 4 byte integer
-- padding is between 1 and 8 bytes
-- type is one byte
-- key is at least several bytes
status, result = socket:receive_bytes(13);
-- should be able to consume at least 13 bytes
-- key length is a 4 byte integer
-- padding is between 1 and 8 bytes
-- type is one byte
-- key is at least several bytes
status, result = socket:receive_bytes(13);
if (not status) then
socket:close()
return
end
if (not status) then
socket:close()
return
end
if (result == "TIMEOUT") then
socket:close()
return
end
if (result == "TIMEOUT") then
socket:close()
return
end
if not string.match(result, "^....[\0]+\002") then
socket:close()
return
end
if not string.match(result, "^....[\0]+\002") then
socket:close()
return
end
socket:close();
socket:close();
return true, "Server supports SSHv1"
return true, "Server supports SSHv1"
end