updated matcher to regex
parent
af674e92c5
commit
cbafd06764
|
@ -1,7 +1,7 @@
|
||||||
id: CVE-2024-8517
|
id: CVE-2024-8517
|
||||||
|
|
||||||
info:
|
info:
|
||||||
name: SPIP BigUp Plugin - Unauthenticated Remote Code Execution
|
name: SPIP BigUp Plugin - Remote Code Execution
|
||||||
author: DhiyaneshDk
|
author: DhiyaneshDk
|
||||||
severity: critical
|
severity: critical
|
||||||
description: |
|
description: |
|
||||||
|
@ -24,7 +24,7 @@ info:
|
||||||
max-request: 2
|
max-request: 2
|
||||||
shodan-query: http.favicon.hash:-1224668706
|
shodan-query: http.favicon.hash:-1224668706
|
||||||
fofa-query: "X-Spip-Cache"
|
fofa-query: "X-Spip-Cache"
|
||||||
tags: cve,cve2024,intrusive,spip,unauth
|
tags: cve,cve2024,intrusive,spip,rce
|
||||||
|
|
||||||
flow: http(1) && http(2)
|
flow: http(1) && http(2)
|
||||||
|
|
||||||
|
@ -54,9 +54,9 @@ http:
|
||||||
part: body
|
part: body
|
||||||
group: 1
|
group: 1
|
||||||
name: formulaire
|
name: formulaire
|
||||||
internal: true
|
|
||||||
regex:
|
regex:
|
||||||
- name=['"]formulaire_action_args['"]\s*type=['"]hidden['"]\s*value=['"]([^'"]+)['"]
|
- name=['"]formulaire_action_args['"]\s*type=['"]hidden['"]\s*value=['"]([^'"]+)['"]
|
||||||
|
internal: true
|
||||||
|
|
||||||
- raw:
|
- raw:
|
||||||
- |
|
- |
|
||||||
|
@ -105,12 +105,10 @@ http:
|
||||||
|
|
||||||
matchers-condition: and
|
matchers-condition: and
|
||||||
matchers:
|
matchers:
|
||||||
- type: word
|
- type: regex
|
||||||
part: body
|
part: body
|
||||||
words:
|
regex:
|
||||||
- "uid="
|
- "uid=[0-9]+.*gid=[0-9]+.*"
|
||||||
- "gid"
|
|
||||||
condition: and
|
|
||||||
|
|
||||||
- type: status
|
- type: status
|
||||||
status:
|
status:
|
||||||
|
|
Loading…
Reference in New Issue