mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-15 14:16:08 -06:00
76 lines
2.5 KiB
INI
76 lines
2.5 KiB
INI
# Burp-UI configuration file
|
|
# @version@ - 0.3.0
|
|
# @release@ - stable
|
|
[Global]
|
|
backend = burp1
|
|
# authentication plugin (mandatory)
|
|
# list the misc/auth directory to see the available backends
|
|
# to disable authentication you can set "auth: none"
|
|
auth = basic
|
|
# acl plugin
|
|
# list misc/auth directory to see the available backends
|
|
# default is no ACL
|
|
acl = basic
|
|
|
|
[UI]
|
|
# refresh interval of the pages in seconds
|
|
refresh = 15
|
|
|
|
[Production]
|
|
# storage backend for session and cache
|
|
# may be either 'default' or 'redis'
|
|
storage = redis
|
|
# session database to use
|
|
# may also be a backend url like: redis://localhost:6379/0
|
|
# if set to 'redis', the backend url defaults to:
|
|
# redis://<redis_host>:<redis_port>/0
|
|
# where <redis_host> is the host part, and <redis_port> is the port part of
|
|
# the below "redis" setting
|
|
session = redis
|
|
# cache database to use
|
|
# may also be a backend url like: redis://localhost:6379/0
|
|
# if set to 'redis', the backend url defaults to:
|
|
# redis://<redis_host>:<redis_port>/1
|
|
# where <redis_host> is the host part, and <redis_port> is the port part of
|
|
# the below "redis" setting
|
|
cache = redis
|
|
# redis server to connect to
|
|
redis = localhost:6379
|
|
# whether to use celery or not
|
|
# may also be a broker url like: redis://localhost:6379/0
|
|
# if set to "true", the broker url defaults to:
|
|
# redis://<redis_host>:<redis_port>/2
|
|
# where <redis_host> is the host part, and <redis_port> is the port part of
|
|
# the above "redis" setting
|
|
celery = true
|
|
# database url to store some persistent data
|
|
# none or a connect string supported by SQLAlchemy:
|
|
# http://docs.sqlalchemy.org/en/latest/core/engines.html#database-urls
|
|
# example: sqlite:////var/lib/burpui/store.db
|
|
database = sqlite:////tmp/store.db
|
|
|
|
# burp backend specific options
|
|
[Burp]
|
|
# burp status address (can only be '127.0.0.1' or '::1'
|
|
#bhost = 127.0.0.1
|
|
# burp status port
|
|
bport = 9999
|
|
# burp binary
|
|
burpbin = /this file-should-not-exist
|
|
# vss_strip binary
|
|
stripbin = /this file-should-not-exist
|
|
# temporary dir for the on the fly restoration
|
|
#tmpdir = this-file-should-not-exist
|
|
# burp client configuration file used for the restoration (Default: None)
|
|
bconfcli = this-file-should-not-exist
|
|
# burp server configuration file used for the setting page
|
|
bconfsrv = this-file-should-not-exist
|
|
|
|
[BASIC:AUTH]
|
|
admin = pbkdf2:sha1:1000$07Q0FeKW$eab0bc54b0d2e779081fe85c91ea84a50203d0bf
|
|
user1 = pbkdf2:sha1:1000$hWYnkYoh$ba7521104d262bb8cca3095c33ae1a3f19dbb3c7
|
|
|
|
[BASIC:ACL]
|
|
admin = ["fail]
|
|
user1 = '["client1", "client2"]'
|
|
user2 = {"agent1": ["client3"]
|