-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |