1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-14 19:59:02 +00:00

Added http fingerprints by Jesper Kückelhahn for Sitecore CMS.

This commit is contained in:
kroosec
2012-09-12 21:57:49 +00:00
parent f66691ee08
commit ca43a6d59f
2 changed files with 37 additions and 0 deletions

View File

@@ -2559,6 +2559,14 @@ table.insert(fingerprints, {
{
path = '/admin_cp.asp',
method = 'HEAD'
},
{
path = '/sitecore/admin/',
method = 'HEAD'
},
{
path = '/sitecore/login/admin/',
method = 'HEAD'
}
},
matches = {
@@ -11410,3 +11418,30 @@ table.insert(fingerprints, {
}
});
table.insert(fingerprints, {
category = 'general',
probes = {
{
path = '/sitecore/shell/sitecore.version.xml',
method = 'GET'
},
{
path = '/sitecore/login/default.aspx',
method = 'GET'
}
},
matches = {
{
match = '<major>([^<]*)</major>.*<minor>([^<]*)</minor>.*<build>([^<]*)</build>.*<revision>([^<]*)</revision>',
output = '\\1.\\2.\\3 (rev. \\4)'
},
{
match = 'class="SystemInformationDivider">.*Sitecore.NET ([^<]*)</div>',
output = '\\1'
},
{
match = '<hr/>.*Sitecore version ([^<]*)</div>',
output = '\\1'
}
}
});