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