From 795228c71774005582355524e2639d137a19bd6a Mon Sep 17 00:00:00 2001 From: Chad Seaman Date: Tue, 31 May 2022 10:08:28 -0400 Subject: [PATCH] added Zyxel USG Flex --- lift/lift.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lift/lift.py b/lift/lift.py index 4966e1c..2ce3c95 100644 --- a/lift/lift.py +++ b/lift/lift.py @@ -584,6 +584,9 @@ def getheaders_ssl(dest_ip, dport, cert, ctx, ssl_only, output_handler): + " | IntelBras WOM500 (Probably admin/admin) (Server string)" ) output_handler.write(output) + elif "USG FLEX" in str(title_contents) or "USG20" in str(title_contents): + output = (str(dest_ip).rstrip("\r\n)") + " | Zyxel USG Firewall :: CVE-2022-30525") + output_handler.write(output) elif "ZeroShell" in str(cert): output = (str(dest_ip).rstrip("\r\n)") + " | ZeroShell Firewall") output_handler.write(output)