update flow
parent
9b2a2fe13c
commit
492ee41107
|
@ -1,4 +1,4 @@
|
|||
id: CVE-2023-6063
|
||||
id: CVE-2023-6063
|
||||
|
||||
info:
|
||||
name: WP Fastest Cache 1.2.2 - SQL Injection
|
||||
|
@ -32,11 +32,24 @@ info:
|
|||
tags: cve,cve2023,wp-fastest-cache,wpscan,wordpress,wp-plugin
|
||||
|
||||
flow: |
|
||||
for (var i = 0; i < 3; i++) {
|
||||
http(1)
|
||||
}
|
||||
if (http(1)) {
|
||||
for (let i = 0; i < 2; i++) {
|
||||
http(2);
|
||||
}}
|
||||
|
||||
http:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/wp-content/plugins/wp-fastest-cache/readme.txt"
|
||||
|
||||
matchers:
|
||||
- type: dsl
|
||||
dsl:
|
||||
- 'status_code == 200'
|
||||
- 'contains(body, "WP Fastest Cache")'
|
||||
condition: and
|
||||
internal: true
|
||||
|
||||
- raw:
|
||||
- |
|
||||
@timeout: 20s
|
||||
|
|
Loading…
Reference in New Issue