Skip to content

Commit

Permalink
Update firewall.js, add ddos-guard WAF
Browse files Browse the repository at this point in the history
Add ddos-guard WAF
https://ddos-guard.net/en
  • Loading branch information
n0a authored May 16, 2024
1 parent a59c335 commit 7125eef
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions api/firewall.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit 7125eef

Please sign in to comment.