Skip to content

Commit f8a7f60

Browse files
authored
New Module: HTML Title scan
extract TITLE from the scan target as it can help identify what application is running on the server Signed-off-by: Sam Stepanyan <[email protected]>
1 parent 5b3ace3 commit f8a7f60

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

modules/scan/http_html_title.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
info:
2+
name: status_scan
3+
author: OWASP Nettacker Team
4+
severity: 3
5+
description: HTTP Title scan
6+
reference:
7+
profiles:
8+
- scan
9+
- http
10+
- backup
11+
- low_severity
12+
13+
payloads:
14+
- library: http
15+
steps:
16+
- method: get
17+
timeout: 3
18+
headers:
19+
User-Agent: "{user_agent}"
20+
allow_redirects: true
21+
ssl: false
22+
url:
23+
nettacker_fuzzer:
24+
input_format: "{{schema}}://{target}:{{ports}}"
25+
prefix: ""
26+
suffix: ""
27+
interceptors:
28+
data:
29+
schema:
30+
- "http"
31+
- "https"
32+
ports:
33+
- 80
34+
- 443
35+
response:
36+
condition_type: or
37+
log: "response_dependent['status_code'] response_dependent['content']"
38+
conditions:
39+
status_code:
40+
regex: \d\d\d
41+
reverse: false
42+
content:
43+
regex: <title>(.+?)</title>
44+
reverse: false

0 commit comments

Comments
 (0)