Thanks Simon. Following up to your comment, I added the same 3 jobs without authentication to start with. Surprisingly, in this scan ZAP found less findings (1 instead of 2).
Is that possible that I have added non-authenticated scans at the start and now I see less findings then without them?
This is the following yaml I used with the 3 new jobs at the start:
```
jobs:
# Non-authenticated scan
- type: spider
- type: delay # We use a delay between scans to spot the difference between the different scans
parameters:
time: 2
- type: spiderAjax
- type: delay
parameters:
time: 2
- type: activeScan
- type: delay
parameters:
time: 2
# Authenticated scan
- type: spider
parameters:
user: authentication-user
- type: delay
parameters:
time: 2
- type: spiderAjax
parameters:
user: authentication-user
- type: delay
parameters:
time: 2
- type: activeScan
parameters:
user: authentication-user
- type: report
parameters:
template: traditional-json
reportDir: /zap/wrk
risks:
- high
confidences:
- high
- medium
```