50 lines
2.3 KiB
Properties
50 lines
2.3 KiB
Properties
## General Properties ##
|
|
# spring.main.web-application-type=reactive
|
|
spring.main.allow-bean-definition-overriding=true
|
|
spring.jackson.default-property-inclusion=non_null
|
|
|
|
## Server Config ##
|
|
server.port=8444
|
|
|
|
## Actuator Endpoints ##
|
|
management.endpoints.enabled-by-default=false
|
|
management.endpoint.health.enabled=true
|
|
management.endpoints.web.exposure.include=info, health, metrics
|
|
|
|
## C4PO_ApiService ##
|
|
api.client.url=http://localhost:8443/
|
|
api.client.projects.path=projects
|
|
api.client.pentests.path=pentests
|
|
|
|
## IdentityProvider (Keycloak) ##
|
|
spring.security.oauth2.resourceserver.jwt.issuer-uri=http://localhost:8080/auth/realms/c4po_realm_local
|
|
external.issuer-uri=http://localhost:8080/auth/realms/c4po_realm_local
|
|
keycloakhost=localhost
|
|
keycloak.client.url=http://localhost:8080
|
|
keycloak.client.realm.path=auth/realms/c4po_realm_local/
|
|
|
|
## Total number of pentests listet in the OWASP testing guide
|
|
## https://owasp.org/www-project-web-security-testing-guide/assets/archive/OWASP_Testing_Guide_v4.pdf
|
|
# ToDo: Disabled objectives are not excluded as of now
|
|
owasp.web.pentests=95
|
|
|
|
## Jasper ##
|
|
reportCoverDesignTemplate=/jasper/reports/c4po_cover.jrxml
|
|
reportContentDesignTemplate=/jasper/reports/c4po_content.jrxml
|
|
reportStateOfConfidentialityDesignTemplate=/jasper/reports/c4po_state_of_confidentiality.jrxml
|
|
reportExecutiveSummaryDesignTemplate=/jasper/reports/c4po_executive_summary.jrxml
|
|
reportPentestsFindingsAndCommentsDesignTemplate=/jasper/reports/c4po_pentests_findings_and_comments.jrxml
|
|
reportPentestsFindingsOnlyDesignTemplate=/jasper/reports/c4po_pentests_findings_only.jrxml
|
|
reportPentestsCommentsOnlyDesignTemplate=/jasper/reports/c4po_pentests_comments_only.jrxml
|
|
reportAppendenciesDesignTemplate=/jasper/reports/c4po_appendencies.jrxml
|
|
# Path to default pdf file #
|
|
reportDefaultPdf=/jasper/DEFAULT.pdf
|
|
# Localization files #
|
|
localization=jasper/localization/labels
|
|
# Resource variables for jrxml files #
|
|
CDATA_WATERMARK=./src/main/resources/jasper/Watermark.png
|
|
CDATA_C4POCoverBackground=./src/main/resources/jasper/C4POCoverBackground#1.jpeg
|
|
# Subreports #
|
|
CDATA_FindingsSubreport=./src/main/resources/jasper/subReports/FindingsSubreport.jasper
|
|
CDATA_CommentsSubreport=./src/main/resources/jasper/subReports/CommentsSubreport.jasper
|
|
CDATA_SeverityRatingTable=./src/main/resources/jasper/subReports/SeverityRatingTableSubreport.jasper |