mirror of
https://github.com/nmap/nmap.git
synced 2025-12-15 04:09:01 +00:00
Adds entry to detect SCADA Siemens PCS7. Signature taken from Jose Ramon Palanco's script https://github.com/drainware/nmap-scada/blob/master/Siemens-PCS7.nse
This commit is contained in:
@@ -4302,6 +4302,30 @@ table.insert(fingerprints, {
|
||||
-- These checks will find specific installed software. If possible, it will also
|
||||
-- find versions, etc.
|
||||
|
||||
table.insert(fingerprints, {
|
||||
category = 'security',
|
||||
probes = {
|
||||
{
|
||||
path = '/S7Web.css',
|
||||
method = 'GET'
|
||||
},
|
||||
{
|
||||
path = '/Portal0000.htm',
|
||||
method = 'GET'
|
||||
}
|
||||
},
|
||||
matches = {
|
||||
{
|
||||
match = '<td class="Title_Area_Name">(.-)</td>',
|
||||
output = 'SCADA Siemens PCS7: \\1'
|
||||
},
|
||||
{
|
||||
match = '',
|
||||
output = 'SCADA Siemens PCS7'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
table.insert(fingerprints, {
|
||||
category = 'security',
|
||||
probes = {
|
||||
|
||||
Reference in New Issue
Block a user