Update firewall.js, add ddos-guard WAF

Add ddos-guard WAF
https://ddos-guard.net/en
This commit is contained in:
Denis Simonov 2024-05-17 00:00:56 +03:00 committed by GitHub
parent a59c33571a
commit 7125eeff5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,
}