Skip to content

Commit 3fafb98

Browse files
authored
Merge pull request #242 from 0n1shi/feature/detect-scutum
Support Scutum WAF detection
2 parents 58864d6 + ea74eb9 commit 3fafb98

3 files changed

Lines changed: 16 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ $ wafw00f -l
177177
Safe3 Web Firewall Safe3
178178
Safedog SafeDog
179179
Safeline Chaitin Tech.
180+
Scutum Secure Sky Technology Inc.
180181
SecKing SecKing
181182
SecuPress WP Security SecuPress
182183
Secure Entry United Security Providers

wafw00f/plugins/scutum.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env python3
2+
"""
3+
Copyright (C) 2025, WAFW00F Developers.
4+
See the LICENSE file for copying permission.
5+
"""
6+
7+
NAME = "Scutum (Secure Sky Technology Inc.)"
8+
9+
10+
def is_waf(self):
11+
if self.matchHeader(("Server", "Scutum")):
12+
return True
13+
14+
return False

wafw00f/wafprio.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
'Safe3 Web Firewall (Safe3)',
127127
'Safedog (SafeDog)',
128128
'Safeline (Chaitin Tech.)',
129+
'Scutum (Secure Sky Technology Inc.)',
129130
'SecKing (SecKing)',
130131
'SecuPress WP Security (SecuPress)',
131132
'Secure Entry (United Security Providers)',

0 commit comments

Comments
 (0)