This commit is contained in:
Mohit Thazhath 2026-06-20 21:27:47 +00:00 committed by GitHub
commit 96b7b75738
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -91,7 +91,7 @@ local table = require "table"
-- CHANGELOG:
-- Added 120 new signatures taken from exploit-db.com archives from July 2009 to July 2011 [Paulino Calderon]
-- Added the option to read nikto's database and make use of its fingerprints. [George Chatzisofroniou]
--
-- Added the option to extract info from <ip>/xmldata?item=all. [Mohit Bhasi]
fingerprints = {};
@ -4354,6 +4354,22 @@ table.insert(fingerprints, {
}
});
table.insert(fingerprints, {
category = 'general',
probes = {
{
path = '/xmldata?item=all',
method = 'GET'
}
},
matches = {
{
match = '',
output = 'XML Data'
}
}
});
------------------------------------------------
---- SECURITY SOFTWARE ----
------------------------------------------------