mirror of
https://github.com/nmap/nmap.git
synced 2025-12-18 13:39:02 +00:00
Adds a fingerprint for Schneider Modicon Web Server
This commit is contained in:
@@ -492,6 +492,34 @@ table.insert(fingerprints, {
|
||||
end
|
||||
})
|
||||
|
||||
---
|
||||
--Industrial systems
|
||||
---
|
||||
table.insert(fingerprints, {
|
||||
-- Version 2.1.2, 2.2.0 on TSX ETY Port, 1.0.4, 2.2.0 on TSX ETY410
|
||||
name = "Schneider Modicon Web",
|
||||
category = "industrial",
|
||||
paths = {
|
||||
{path = "/"}
|
||||
},
|
||||
target_check = function (host, port, path, response)
|
||||
return response.status == 302
|
||||
and response.header["server"]
|
||||
and response.header["server"]:find("^Schneider%-WEB/V%d+%.")
|
||||
and response.header["location"]
|
||||
and response.header["location"]:find("/index%.htm$")
|
||||
end,
|
||||
login_combos = {
|
||||
{username = "USER", password = "USER"}
|
||||
},
|
||||
login_check = function (host, port, path, user, pass)
|
||||
-- realm="Schneider Web"
|
||||
return try_http_basic_login(host, port,
|
||||
url.absolute(path, "secure/system/globaldata.htm?Language=English"),
|
||||
user, pass, false)
|
||||
end
|
||||
})
|
||||
|
||||
---
|
||||
--Printers
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user