From 61f17067a3928a92f7ef4b2c2ced7d5fddc3ba31 Mon Sep 17 00:00:00 2001 From: ron Date: Fri, 4 Jun 2021 19:10:23 +0000 Subject: [PATCH] Add new fingerprint to http-fingerprints.lua (BitWarden) --- nselib/data/http-fingerprints.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/nselib/data/http-fingerprints.lua b/nselib/data/http-fingerprints.lua index f6e0d0226..11548a938 100644 --- a/nselib/data/http-fingerprints.lua +++ b/nselib/data/http-fingerprints.lua @@ -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 ---- ------------------------------------------------