mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
62 lines
1.6 KiB
INI
62 lines
1.6 KiB
INI
[Global]
|
|
# On which port is the application listening
|
|
port: 5001
|
|
# On which address is the application listening
|
|
# '::' is the default for all IPv6
|
|
bind: ::
|
|
# enable SSL
|
|
ssl: false
|
|
# ssl cert
|
|
sslcert: /etc/burp/ssl_cert-server.pem
|
|
# ssl key
|
|
sslkey: /etc/burp/ssl_cert-server.key
|
|
# burp server version (currently only burp 1.x is implemented)
|
|
version: 1
|
|
# Handle multiple bui-servers or not
|
|
# If set to 'false', you will need to declare at least one 'Agent' section (see
|
|
# bellow)
|
|
standalone: false
|
|
# 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
|
|
|
|
# burp1 backend specific options
|
|
[Burp1]
|
|
# 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]
|
|
admin: admin
|
|
user1: password
|
|
toto: toto
|
|
|
|
[BASIC:ACL]
|
|
user1: ["client1", "client2"]
|
|
user2: {"agent1": ["client3"]}
|
|
|
|
[Agent:dummy]
|
|
host: 127.0.0.1
|
|
port: 10000
|
|
password: password
|
|
ssl: false
|