Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
johanah29 committed Oct 23, 2024
1 parent 21e9859 commit 83aa78e
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions openbas-api/src/test/resources/application.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
# Global configuration
# suppress inspection "SpringBootApplicationProperties"
info.app.name=OpenBAS
# suppress inspection "SpringBootApplicationProperties"
info.app.version=Testing
# OpenBAS configuration
openbas.base-url=http://localhost:8080
openbas.admin.email=[email protected]
openbas.admin.password=admin
openbas.admin.token=0d17ce9a-f3a8-4c6d-9721-c98dc3dc023f
# Server configuration
server.servlet.context-path=/
# rabbit mq
openbas.rabbitmq.management-insecure=true
openbas.rabbitmq.trust-store-password=<trust-store-password>
openbas.rabbitmq.trust.store=<file:/path/to/client-store.p12>
# Authenticators
## Local
openbas.auth-local-enable=false
## Oauth
openbas.auth-openid-enable=false
## Kerberos
openbas.auth-kerberos-enable=false
spring.datasource.url=jdbc:postgresql://localhost:5433/openbas
spring.datasource.username=openbas
spring.datasource.password=openbas
# Minio Properties
minio.endpoint=localhost
minio.port=10000
minio.bucket=openbas
minio.access-key=minioadmin
minio.access-secret=minioadmin
#############
# INJECTORS #
#############
# Mail config (Always available)
openbas.default-mailer=[email protected]
openbas.default-reply-to=[email protected]
spring.mail.host=smtp.gmail.com
spring.mail.port=587
spring.mail.username=<login user to smtp server>
spring.mail.password=<login password to smtp server>
spring.mail.properties.mail.smtp.ssl.trust=*
spring.mail.properties.mail.smtp.ssl.enable=true
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
# IMAP Configuration
openbas.mail.imap.enabled=false
openbas.mail.imap.host=imap.mail.com
openbas.mail.imap.username=<[email protected]>
openbas.mail.imap.password=<<password>
openbas.mail.imap.port=993
openbas.mail.imap.inbox=INBOX
openbas.mail.imap.sent=Sent
# Extra IMAP configuration
openbas.mail.imap.ssl.trust=*
openbas.mail.imap.ssl.enable=true
openbas.mail.imap.auth=true
openbas.mail.imap.starttls.enable=true
# OVH SMS config
ovh.sms.enable=false
# Mastodon config
mastodon.enable=false
# Airbus LADE config
lade.enable=false
# Injector Http config
http.enable=false
# Injector Caldera config
injector.caldera.enable=false
# XLS Import
openbas.xls.import.mail.enable=true
openbas.xls.import.sms.enable=true
#############
# COLLECTORS #
#############
# Collectors
## Collector user
collector.users.enable=false
## Collector MITRE ATT&CK
collector.mitre-attack.enable=false
## Collector Caldera
collector.caldera.enable=false

0 comments on commit 83aa78e

Please sign in to comment.