From 717740e78eb7e83100f36d06302da455abff6980 Mon Sep 17 00:00:00 2001 From: nmasdoufi-ol Date: Tue, 17 Sep 2024 11:29:58 +0100 Subject: [PATCH] Add fingerprint for Veeam --- plugins/veeam.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 plugins/veeam.rb diff --git a/plugins/veeam.rb b/plugins/veeam.rb new file mode 100644 index 0000000..928f425 --- /dev/null +++ b/plugins/veeam.rb @@ -0,0 +1,17 @@ +Plugin.define do + name "Veeam" + authors [ + "Ostorlab", + ] + version "0.1" + description "Veeam Backup & Replication is a proprietary backup app developed by Veeam for virtual environments built on VMware vSphere, Nutanix AHV, and Microsoft Hyper-V hypervisors." + website "https://www.veeam.com/" + + matches [ + { + :search => "title", + :regexp => /Veeam Backup/, + :name => "Veeam Backup Enterprise Manager Title Tag" + }, + ] +end \ No newline at end of file