Update firewall.js, add QRATOR WAF

Add new firewall: https://qrator.net/
This commit is contained in:
Denis Simonov 2024-05-03 18:23:04 +03:00 committed by GitHub
parent 031b0e37bb
commit 9609cd3701
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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