mirror of
https://github.com/nmap/nmap.git
synced 2025-12-31 03:49:01 +00:00
Adds fingerprints for Drupal and Arris 2307
This commit is contained in:
@@ -236,6 +236,16 @@ table.insert(fingerprints, {
|
||||
}
|
||||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
category='general',
|
||||
probes={
|
||||
{path='/logo_t.gif', method='HEAD'}
|
||||
},
|
||||
matches= {
|
||||
{match='IP_SHARER WEB', output='Arris 2307'}
|
||||
}
|
||||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
category='general',
|
||||
probes={
|
||||
@@ -1218,6 +1228,47 @@ table.insert(fingerprints, {
|
||||
}
|
||||
})
|
||||
|
||||
-- Drupal changelog
|
||||
table.insert(fingerprints, {
|
||||
category='cms',
|
||||
probes={
|
||||
{path='/CHANGELOG.txt'}
|
||||
},
|
||||
matches={
|
||||
{match='Drupal (%d..-),', output='Drupal v\\1'}
|
||||
}
|
||||
})
|
||||
|
||||
-- Drupal signatures
|
||||
table.insert(fingerprints, {
|
||||
category='cms',
|
||||
probes={
|
||||
{path='/'}
|
||||
},
|
||||
matches={
|
||||
{match=' src="/sites/all/themes/', output='Drupal signature'},
|
||||
{match=' src="/sites/all/modules/', output='Drupal signature'},
|
||||
{match=' href="/sites/all/themes/', output='Drupal signature'},
|
||||
{match='jQuery.extend(Drupal.settings,', output='Drupal signature'}
|
||||
}
|
||||
})
|
||||
|
||||
-- Drupal files
|
||||
table.insert(fingerprints, {
|
||||
category='cms',
|
||||
probes={
|
||||
{path='/UPGRADE.txt'},
|
||||
{path='/INSTALL.txt'},
|
||||
{path='/MAINTENERS.txt'},
|
||||
{path='/INSTALL.mysql.txt'},
|
||||
{path='/INSTALL.pgsql.txt'},
|
||||
{path='/update.php'}
|
||||
},
|
||||
matches={
|
||||
{match='Drupal ', output='Drupal file'}
|
||||
}
|
||||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
category='general',
|
||||
probes={
|
||||
|
||||
Reference in New Issue
Block a user