mirror of
https://github.com/nmap/nmap.git
synced 2025-12-16 12:49:02 +00:00
o [NSE] Applied patch to http-fingerprints adding support for identifying DCVS
systems Git, Mercurial and Bazaar. [Hani Benhabiles]
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
# Nmap Changelog ($Id$); -*-text-*-
|
# Nmap Changelog ($Id$); -*-text-*-
|
||||||
|
|
||||||
|
o [NSE] Applied patch to http-fingerprints adding support for identifying DCVS
|
||||||
|
systems Git, Mercurial and Bazaar. [Hani Benhabiles]
|
||||||
|
|
||||||
o [NSE] Applied some code cleanup to the snmp library. [Brendan Byrd]
|
o [NSE] Applied some code cleanup to the snmp library. [Brendan Byrd]
|
||||||
|
|
||||||
o [NSE] Fixed a bug with an undeclared variable in snmp-ios-config.nse [Patrik]
|
o [NSE] Fixed a bug with an undeclared variable in snmp-ios-config.nse [Patrik]
|
||||||
|
|||||||
@@ -956,6 +956,16 @@ table.insert(fingerprints, {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
table.insert(fingerprints, {
|
||||||
|
category='general',
|
||||||
|
probes={
|
||||||
|
{path='/clientaccesspolicy.xml', method='HEAD'},
|
||||||
|
},
|
||||||
|
matches= {
|
||||||
|
{output='Microsoft Silverlight crossdomain policy'}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
table.insert(fingerprints, {
|
table.insert(fingerprints, {
|
||||||
category='general',
|
category='general',
|
||||||
probes={
|
probes={
|
||||||
@@ -2710,6 +2720,36 @@ table.insert(fingerprints, {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
table.insert(fingerprints, {
|
||||||
|
category='attacks',
|
||||||
|
probes={
|
||||||
|
{path='/.git/HEAD', method='GET'},
|
||||||
|
},
|
||||||
|
matches= {
|
||||||
|
{match='ref: refs', output='Git folder'}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
table.insert(fingerprints, {
|
||||||
|
category='attacks',
|
||||||
|
probes={
|
||||||
|
{path='/.hg/requires', method='GET'},
|
||||||
|
},
|
||||||
|
matches= {
|
||||||
|
{match='revlogv1', output='Mercurial folder'}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
table.insert(fingerprints, {
|
||||||
|
category='attacks',
|
||||||
|
probes={
|
||||||
|
{path='/.bzr/README', method='GET'},
|
||||||
|
},
|
||||||
|
matches= {
|
||||||
|
{match='This is a Bazaar', output='Bazaar folder'}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
table.insert(fingerprints, {
|
table.insert(fingerprints, {
|
||||||
category='attacks',
|
category='attacks',
|
||||||
probes={
|
probes={
|
||||||
|
|||||||
Reference in New Issue
Block a user