This commit is contained in:
`whoami`; # && WhatAmIDoingHere 2026-08-21 00:40:54 -07:00 committed by GitHub
commit 47c59037c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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",