1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 09:59:04 +00:00

Add new fingerprint to http-fingerprints.lua (BitWarden)

This commit is contained in:
ron
2021-06-04 19:10:23 +00:00
parent edd7003ed1
commit 61f17067a3

View File

@@ -9139,6 +9139,27 @@ table.insert(fingerprints, {
}
});
-- Bitwarden Vault
table.insert(fingerprints, {
category = 'general',
probes = {
{
path = '/manifest.json',
method = 'GET'
}
},
matches = {
{
match = '([\'"])name%1%s*:%s*[\'"][Bb]itwarden',
output = 'Bitwarden Vault Manifest File'
},
{
match = '',
output = 'Manifest JSON File'
},
}
});
------------------------------------------------
---- UNCATEGORIZED ----
------------------------------------------------