mirror of
https://github.com/nmap/nmap.git
synced 2026-08-27 20:05:30 +00:00
Merge 6e23cbd369 into db4aefddfa
This commit is contained in:
commit
47c59037c0
1 changed files with 22 additions and 0 deletions
|
|
@ -1185,6 +1185,28 @@ table.insert(fingerprints, {
|
|||
end
|
||||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
-- Avigilon Cameras and Analog Video Encoders
|
||||
-- These return a Www-Authenticate header with a 12-digit number in the Realm
|
||||
-- That number is the serial number of the camera or video encoder.
|
||||
name = "Avigilon Cameras and Video Converters",
|
||||
category = "security",
|
||||
paths = {
|
||||
{path = "/media/cam0/still.jpg"}
|
||||
},
|
||||
target_check = function (host, port, path, response)
|
||||
local realm = http_auth_realm(response) or ""
|
||||
return realm:match("%d%d%d%d%d%d%d%d%d%d%d%d")
|
||||
end,
|
||||
login_combos = {
|
||||
{username = "administrator", password = ""}
|
||||
},
|
||||
login_check = function (host, port, path, user, pass)
|
||||
return try_http_basic_login(host, port, url.absolute(path, "/media/cam0/still.jpg"),
|
||||
user, pass, true)
|
||||
end
|
||||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
name = "NUOO DVR",
|
||||
category = "security",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue