Skip to content

Commit

Permalink
Update firewall.js, add QRATOR WAF
Browse files Browse the repository at this point in the history
Add new firewall: https://qrator.net/
  • Loading branch information
n0a authored May 3, 2024
1 parent 031b0e3 commit 9609cd3
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 @@ -91,6 +91,10 @@ const handler = async (url) => {
return hasWaf('IBM WebSphere DataPower');
}

if (headers['server'] && headers['server'].includes('QRATOR')) {
return hasWaf('QRATOR WAF');
}

return {
hasWaf: false,
}
Expand Down

0 comments on commit 9609cd3

Please sign in to comment.