From 9609cd37012ae1a1c12aaaeea1217e88cc1f9d16 Mon Sep 17 00:00:00 2001 From: Denis Simonov Date: Fri, 3 May 2024 18:23:04 +0300 Subject: [PATCH] Update firewall.js, add QRATOR WAF Add new firewall: https://qrator.net/ --- api/firewall.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/firewall.js b/api/firewall.js index 39afde35..48419b6b 100644 --- a/api/firewall.js +++ b/api/firewall.js @@ -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, }