Merge pull request #137 from n0a/patch-1

Update firewall.js, add QRATOR WAF
This commit is contained in:
Alicia Sykes
2024-05-15 22:34:02 +01:00
committed by GitHub

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