mirror of
https://github.com/nmap/nmap.git
synced 2026-09-02 08:20:52 +00:00
Add new fingerprint to http-fingerprints.lua (BitWarden)
This commit is contained in:
parent
edd7003ed1
commit
61f17067a3
1 changed files with 21 additions and 0 deletions
|
|
@ -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 ----
|
||||
------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue