diff --git a/api/firewall.js b/api/firewall.js index 48419b6b..a37ed61b 100644 --- a/api/firewall.js +++ b/api/firewall.js @@ -95,6 +95,10 @@ const handler = async (url) => { return hasWaf('QRATOR WAF'); } + if (headers['server'] && headers['server'].includes('ddos-guard')) { + return hasWaf('DDoS-Guard WAF'); + } + return { hasWaf: false, }