Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
Include sample scan configuration with endpoint
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Arroutbi <[email protected]>
  • Loading branch information
sarroutbi committed Aug 31, 2023
1 parent e608f3a commit b095699
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions tools/scan_tools/scan_tang_endpoint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
config:
# WARNING: `configVersion` indicates the schema version of the config file
# This value tells RapiDAST what schema should be used to read this
# configuration.
# Therefore you should only change it if you update the configuration
# to a newer schema
# It is intended to keep backward compatibility
# (newer RapiDAST running an older config)
configVersion: 4

# `application` contains data related to the application, not to the scans
application:
shortName: "tangservers"
url: "https://1.2.3.4:6443"

# `general` is a section that will be applied to all scanners
general:
authentication:
type: "http_header"
parameters:
name: "Authorization"
value: "Bearer <bearer-token>"
# Normally, token to be used can be extracted with:
# oc -n "${NAMESPACE}" get secret "${SECRET}" -o json
# | jq -Mr '.data.token' | base64 -d
container:
# currently supported: `podman` and `none`
type: "none"

scanners:
zap:
# define a scan through the ZAP scanner
apiScan:
apis:
apiUrl: "https://1.2.3.4:6443/openapi/v3/apis/daemons.redhat.com/v1alpha1/namespaces/nbde/tangservers"
# Replace previous line to scan other APi groups/version
passiveScan:
# optional list of passive rules to disable
disabledRules: "2,10015,10027,10096,10024,10054"
# Remove comment symbols to enable activeScan once it is made sure
# that scanning with 'passiveScan' runs successfully.
# activeScan:
# # If no policy is chosen, a default ("API-scan-minimal")
# will be selected
# # The list of policies can be found in scanners/zap/policies/
# policy: "API-scan-minimal"
miscOptions:
# enableUI (default: false), requires a compatible runtime
# (e.g.: flatpak or no containment)
enableUI: false
# Defaults to True, set False to prevent auto update of ZAP plugins
updateAddons: false

0 comments on commit b095699

Please sign in to comment.