mirror of
https://github.com/nmap/nmap.git
synced 2026-06-22 00:24:08 +00:00
Added http-fingerprint matches for Nessus's HTTP server
This commit is contained in:
parent
d21024f87f
commit
2957b4d733
1 changed files with 22 additions and 1 deletions
|
|
@ -412,11 +412,32 @@ table.insert(fingerprints, {
|
|||
probes={
|
||||
{path='/theme/images/en/login1.gif', method='HEAD'},
|
||||
},
|
||||
matches= {
|
||||
matches={
|
||||
{match='', output='Fortinet VPN/Firewall'}
|
||||
}
|
||||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
category='security',
|
||||
probes={
|
||||
{path='/', method='GET'},
|
||||
},
|
||||
matches={
|
||||
{match='id="NessusClient"', output='Nessus'},
|
||||
{match='NessusClient.swf', output='Nessus'}
|
||||
}
|
||||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
category='security',
|
||||
probes={
|
||||
{path='/NessusClient.swf', method='HEAD'},
|
||||
},
|
||||
matches={
|
||||
{match='', output='Nessus'}
|
||||
}
|
||||
})
|
||||
|
||||
------------------------------------------------
|
||||
---- MANAGEMENT SOFTWARE ----
|
||||
------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue