mirror of
https://github.com/nmap/nmap.git
synced 2026-06-20 15:41:31 +00:00
Adds a fingerprint for TCS Basys Controls Communication Center
This commit is contained in:
parent
0bded8dc2a
commit
e4b4e5441d
1 changed files with 20 additions and 0 deletions
|
|
@ -678,6 +678,26 @@ table.insert(fingerprints, {
|
|||
end
|
||||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
-- Version 06.05.00/6.0.1 on QD2040 HW 675
|
||||
name = "TCS Basys Controls Communication Center",
|
||||
category = "industrial",
|
||||
paths = {
|
||||
{path = "/"}
|
||||
},
|
||||
target_check = function (host, port, path, response)
|
||||
return http_auth_realm(response) == "Private"
|
||||
and response.header["server"]
|
||||
and response.header["server"]:find("^lighttpd/%d+%.")
|
||||
end,
|
||||
login_combos = {
|
||||
{username = "admin", password = "password"}
|
||||
},
|
||||
login_check = function (host, port, path, user, pass)
|
||||
return try_http_basic_login(host, port, path, user, pass)
|
||||
end
|
||||
})
|
||||
|
||||
---
|
||||
--Printers
|
||||
---
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue