Skip to content

Commit ea74eb9

Browse files
committed
Add an plugin to detect Scutum
1 parent 2b94868 commit ea74eb9

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
@@ -174,6 +174,7 @@ $ wafw00f -l
174174
Safe3 Web Firewall Safe3
175175
Safedog SafeDog
176176
Safeline Chaitin Tech.
177+
Scutum Secure Sky Technology Inc.
177178
SecKing SecKing
178179
SecuPress WP Security SecuPress
179180
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
@@ -123,6 +123,7 @@
123123
'Safe3 Web Firewall (Safe3)',
124124
'Safedog (SafeDog)',
125125
'Safeline (Chaitin Tech.)',
126+
'Scutum (Secure Sky Technology Inc.)',
126127
'SecKing (SecKing)',
127128
'SecuPress WP Security (SecuPress)',
128129
'Secure Entry (United Security Providers)',

0 commit comments

Comments
 (0)