mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
Adds entry to detect SCADA SIMATIC S7. Signature taken from Jose Ramon Palanco's script https://github.com/drainware/nmap-scada/blob/master/SIEMENS-Simatic-HMI-miniweb.nse
This commit is contained in:
parent
b3d3553330
commit
913fbac6d1
1 changed files with 16 additions and 0 deletions
|
|
@ -4302,6 +4302,22 @@ 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 = '/CSS/Miniweb.css',
|
||||
method = 'GET'
|
||||
}
|
||||
},
|
||||
matches = {
|
||||
{
|
||||
match = 'ad_header_form_sprachauswahl',
|
||||
output = 'SCADA Siemens SIMATIC S7'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
table.insert(fingerprints, {
|
||||
category = 'security',
|
||||
probes = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue