1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-15 20:29:03 +00:00

Added signature of a Cisco router

This commit is contained in:
paulino
2011-07-08 18:44:23 +00:00
parent 7c75967507
commit 84a4bb2506

View File

@@ -87,8 +87,6 @@ table.insert(fingerprints, {
return try_http_basic_login(host, port, path, user, pass)
end
})
---
--ROUTERS
---
@@ -105,3 +103,23 @@ table.insert(fingerprints, {
return try_http_post_login(host, port, path, "login.cgi", "Login Error !!", {action="submit", page="", logout="", pws=pass})
end
})
table.insert(fingerprints, {
name = "Cisco 2811",
category = "routers",
paths = {
{path = "/exec/show/log/CR"},
{path = "/level/15/exec/-/configure/http"},
{path = "/level/15/exec/-"},
{path = "/level/15/"}
},
login_combos = {
{username = "", password = ""},
{username = "cisco", password = "cisco"}
},
login_check = function (host, port, path, user, pass)
return try_http_basic_login(host, port, path, user, pass)
end
})