Skip to content

Commit a8e9274

Browse files
authored
Merge pull request #791 from OWASP/securestep9-patch-http-html-title-module-1
New Module: HTML Title scan
2 parents 5b3ace3 + 4acfac0 commit a8e9274

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

modules/scan/http_html_title.yaml

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

0 commit comments

Comments
 (0)