File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments