mirror of
https://github.com/nmap/nmap.git
synced 2025-12-09 22:21:29 +00:00
Adds a fingerprint for Schneider Modicon Web Server
This commit is contained in:
@@ -492,6 +492,34 @@ table.insert(fingerprints, {
|
|||||||
end
|
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
|
--Printers
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ You may select a category if you wish to reduce the number of requests. We have
|
|||||||
* <code>web</code> - Web applications
|
* <code>web</code> - Web applications
|
||||||
* <code>routers</code> - Routers
|
* <code>routers</code> - Routers
|
||||||
* <code>security</code> - CCTVs and other security devices
|
* <code>security</code> - CCTVs and other security devices
|
||||||
|
* <code>industrial</code> - Industrial systems
|
||||||
* <code>printer</code> - Network-attached printers and printer servers
|
* <code>printer</code> - Network-attached printers and printer servers
|
||||||
* <code>storage</code> - Storage devices
|
* <code>storage</code> - Storage devices
|
||||||
* <code>console</code> - Remote consoles
|
* <code>console</code> - Remote consoles
|
||||||
|
|||||||
Reference in New Issue
Block a user