mirror of
https://github.com/nmap/nmap.git
synced 2025-12-17 05:09:00 +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
|
-- These checks will find specific installed software. If possible, it will also
|
||||||
-- find versions, etc.
|
-- 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, {
|
table.insert(fingerprints, {
|
||||||
category = 'security',
|
category = 'security',
|
||||||
probes = {
|
probes = {
|
||||||
|
|||||||
Reference in New Issue
Block a user