From 1fcc4fa7b5a7ac5d4048b22908cf00d7d2720e9f Mon Sep 17 00:00:00 2001 From: Jelle Janssens Date: Wed, 3 Sep 2025 18:32:32 +0200 Subject: [PATCH] Add CWES as synonym for CBBH --- src/helpers/verification.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/helpers/verification.py b/src/helpers/verification.py index 1c9286c..cfd2f42 100644 --- a/src/helpers/verification.py +++ b/src/helpers/verification.py @@ -94,6 +94,8 @@ async def process_certification(certid: str, name: str): return False if certRawName == "HTB Certified Bug Bounty Hunter": cert = "CBBH" + elif certRawName == "HTB Certified Web Exploitation Specialist": + cert = "CBBH" elif certRawName == "HTB Certified Penetration Testing Specialist": cert = "CPTS" elif certRawName == "HTB Certified Defensive Security Analyst":