mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
ci(core): disable cloud metadata rule in zap (#4277)
* ci(core): disable cloud metadata rule in zap disable cloud metadata rule in zap * fix: update rule files update rule files * fix: update the conf file update the conf file * fix: revert docker settings revert docker settings
This commit is contained in:
parent
7ce014d033
commit
64e78024e0
2 changed files with 16 additions and 3 deletions
10
.github/workflows/pen-tests.yml
vendored
10
.github/workflows/pen-tests.yml
vendored
|
@ -4,10 +4,10 @@ on:
|
||||||
# Be careful when using the workflow_run trigger
|
# Be careful when using the workflow_run trigger
|
||||||
# https://github.community/t/workflow-run-completed-event-triggered-by-failed-workflow/128001/7
|
# https://github.community/t/workflow-run-completed-event-triggered-by-failed-workflow/128001/7
|
||||||
workflow_run:
|
workflow_run:
|
||||||
workflows: [ "Release" ]
|
workflows: ["Release"]
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
types:
|
types:
|
||||||
- completed
|
- completed
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
|
@ -20,6 +20,9 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Docker Compose up
|
- name: Docker Compose up
|
||||||
run: |
|
run: |
|
||||||
curl -fsSL https://raw.githubusercontent.com/logto-io/logto/HEAD/docker-compose.yml |\
|
curl -fsSL https://raw.githubusercontent.com/logto-io/logto/HEAD/docker-compose.yml |\
|
||||||
|
@ -32,8 +35,9 @@ jobs:
|
||||||
uses: zaproxy/action-full-scan@v0.5.1
|
uses: zaproxy/action-full-scan@v0.5.1
|
||||||
with:
|
with:
|
||||||
target: http://localhost:3001
|
target: http://localhost:3001
|
||||||
cmd_options: '-a'
|
cmd_options: "-a"
|
||||||
fail_action: true
|
fail_action: true
|
||||||
allow_issue_writing: false
|
allow_issue_writing: false
|
||||||
|
rules_file_name: ".zap/rules.conf"
|
||||||
|
|
||||||
# TODO: send slack message on failure
|
# TODO: send slack message on failure
|
||||||
|
|
9
.zap/rules.conf
Normal file
9
.zap/rules.conf
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# Mark the following rules as INFO
|
||||||
|
|
||||||
|
# CloudFlare will block the metadata endpoint access
|
||||||
|
90034 INFO (Cloud Metadata Potentially Exposed - Active/release)
|
||||||
|
|
||||||
|
10096 INFO (Timestamp Disclosure - Passive/release)
|
||||||
|
10063-1 INFO (Permissions Policy Header Not Set - Passive/beta)
|
||||||
|
10055-4 INFO (CSP - Wildcard Directive)
|
||||||
|
40039 INFO (Web Cache Deception)
|
Loading…
Reference in a new issue