Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 9bc59b5

Browse files
committed
#17 Added ZAP examples for full scans attacking the demo-targets
1 parent e60986e commit 9bc59b5

File tree

8 files changed

+5744
-0
lines changed

8 files changed

+5744
-0
lines changed

scanners/zap/examples/demo-bodgeit-full-scan/findings.yaml

Lines changed: 2954 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
apiVersion: "execution.experimental.securecodebox.io/v1"
2+
kind: Scan
3+
metadata:
4+
name: "zap-full-scan-bodgeit"
5+
labels:
6+
organization: "OWASP"
7+
spec:
8+
scanType: "zap-full-scan"
9+
parameters:
10+
# target URL including the protocol
11+
- "-t"
12+
- "http://bodgeit.demo-apps.svc:8080"
13+
# include the alpha active and passive scan rules as well
14+
- "-a"
15+
# show debug messages
16+
- "-d"
17+
# the number of minutes to spider for (default 1)
18+
- "-m"
19+
- "3"

scanners/zap/examples/demo-bodgeit-full-scan/zap-results.json

Lines changed: 2727 additions & 0 deletions
Large diffs are not rendered by default.

scanners/zap/examples/demo-juice-shop-full-scan/findings.yaml

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
apiVersion: "execution.experimental.securecodebox.io/v1"
2+
kind: Scan
3+
metadata:
4+
name: "zap-full-scan-juiceshop"
5+
labels:
6+
organization: "OWASP"
7+
spec:
8+
scanType: "zap-full-scan"
9+
parameters:
10+
# target URL including the protocol
11+
- "-t"
12+
- "http://juice-shop.demo-apps.svc:3000"
13+
# include the alpha active and passive scan rules as well
14+
- "-a"
15+
# show debug messages
16+
- "-d"
17+
# use the Ajax spider in addition to the traditional one
18+
- "-j"
19+
# the number of minutes to spider for (default 1)
20+
- "-m"
21+
- "3"
22+

scanners/zap/examples/demo-juice-shop-full-scan/zap-results.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
apiVersion: "execution.experimental.securecodebox.io/v1"
2+
kind: Scan
3+
metadata:
4+
name: "zap-api-petstore"
5+
labels:
6+
organization: "OWASP"
7+
spec:
8+
scanType: "zap-baseline"
9+
parameters:
10+
# target URL including the protocol
11+
- "-t"
12+
- "http://swagger-petstore.demo-apps.svc"
13+
# show debug messages
14+
- "-d"
15+
# use the Ajax spider in addition to the traditional one
16+
- "-j"
17+
# the number of minutes to spider for (default 1)
18+
- "-m"
19+
- "3"
20+

0 commit comments

Comments
 (0)