mirror of
https://github.com/nmap/nmap.git
synced 2025-12-16 04:39:03 +00:00
Added http fingerprints by Jesper Kückelhahn for Sitecore CMS.
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
# Nmap Changelog ($Id$); -*-text-*-
|
# Nmap Changelog ($Id$); -*-text-*-
|
||||||
|
|
||||||
|
o Added http fingerprints for Sitecore CMS. [Jesper Kückelhahn]
|
||||||
|
|
||||||
o Increased portability of configure scripts on systems using a libc
|
o Increased portability of configure scripts on systems using a libc
|
||||||
other than Glibc. Several problems were reported by John Spencer.
|
other than Glibc. Several problems were reported by John Spencer.
|
||||||
|
|
||||||
|
|||||||
@@ -2559,6 +2559,14 @@ table.insert(fingerprints, {
|
|||||||
{
|
{
|
||||||
path = '/admin_cp.asp',
|
path = '/admin_cp.asp',
|
||||||
method = 'HEAD'
|
method = 'HEAD'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path = '/sitecore/admin/',
|
||||||
|
method = 'HEAD'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path = '/sitecore/login/admin/',
|
||||||
|
method = 'HEAD'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
matches = {
|
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'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user