Skip to content

Commit

Permalink
Merge pull request #188 from dwisiswant0/add-custom-workflows
Browse files Browse the repository at this point in the history
Add custom workflows
  • Loading branch information
ehsandeep committed Jul 5, 2020
2 parents 27ddfd3 + 7d9e2ee commit a1eaee2
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
15 changes: 15 additions & 0 deletions workflows/liferay-rce-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
id: liferay-rce-workflow

info:
name: Liferay RCE Workflow
author: dwisiswant0

variables:
liferay-portal: technologies/liferay-portal-detect.yaml
liferay-portal-cve: cves/CVE-2020-7961.yaml

logic:
|
if liferay-portal() {
liferay-portal-cve()
}
21 changes: 21 additions & 0 deletions workflows/springboot-pwner-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
id: springboot-pwner-workflow

info:
name: Spring Boot Pwner
author: dwisiswant0

variables:
springboot: security-misconfiguration/springboot-detect.yaml
springboot-cve-2018-1271: cves/CVE-2018-1271.yaml
springboot-cve-2019-3799: cves/CVE-2019-3799.yaml
springboot-cve-2020-5410: cves/CVE-2020-5410.yaml
springboot-xxe: vulnerabilities/springboot-actuators-jolokia-xxe.yaml

logic:
|
if springboot() {
springboot-cve-2018-1271()
springboot-cve-2019-3799()
springboot-cve-2020-5410()
springboot-xxe()
}

0 comments on commit a1eaee2

Please sign in to comment.