Skip to content

Commit

Permalink
Merge pull request #137 from n0a/patch-1
Browse files Browse the repository at this point in the history
Update firewall.js, add QRATOR WAF
  • Loading branch information
Lissy93 authored May 15, 2024
2 parents 26d5170 + 9609cd3 commit a59c335
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 a59c335

Please sign in to comment.