nuclei-templates/workflows/vbulletin-workflow.yaml

25 lines
464 B
YAML
Raw Normal View History

2020-08-10 09:28:30 +00:00
id: vbulletin-workflow
info:
name: vBulletin workflow
author: pdteam
variables:
vbulletin_tech: technologies/tech-detect.yaml
vbulletin_cve_1: cves/CVE-2019-16759.yaml
vbulletin_cve_2: cves/CVE-2019-16759-1.yaml
vbulletin_cve_3: cves/CVE-2020-12720.yaml
2020-08-10 09:30:25 +00:00
# This will run all 3 CVEs if vbulletin tech is found.
2020-08-10 09:28:30 +00:00
logic:
|
vbulletin_tech()
if vbulletin_tech["vbulletin"] {
vbulletin_cve_1()
vbulletin_cve_2()
vbulletin_cve_3()
}