1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 14:11:29 +00:00

Apply a patch from Toni Ruottu with some small misc. improvements to the netbus-* scripts. Also I changed netbus-auth-bypass to the safe category as recommended by Toni

This commit is contained in:
fyodor
2011-01-15 21:28:45 +00:00
parent aef6f90991
commit b27c8e29d7
4 changed files with 32 additions and 12 deletions

View File

@@ -10,13 +10,16 @@ and login to the service by typing Password;1; into the console.
]]
---
-- @usage
-- nmap -p 12345 --script netbus-auth-bypass <target>
--
-- @output
-- 12345/tcp open netbus
-- |_netbus-auth-bypass: Vulnerable
author = "Toni Ruottu"
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
categories = {"auth", "intrusive", "vuln"}
categories = {"auth", "safe", "vuln"}
require("nmap")
require("stdnse")
@@ -50,6 +53,6 @@ action = function( host, port )
if buffer() == "Access;1" then
return "Vulnerable"
end
return
return "Not vulnerable, but password is empty"
end