Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Benjamin "Ziirish" SANS
burp-ui
Commits
7787f83c
Verified
Commit
7787f83c
authored
Jan 05, 2020
by
Benjamin "Ziirish" SANS
Browse files
make sure we can create default burp CA
parent
23b17624
Pipeline
#1730
passed with stages
in 10 minutes and 33 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
docker/components/docker-burp/assets/config/burp-server.conf
View file @
7787f83c
...
...
@@ -34,7 +34,7 @@ hardlinked_archive = 0
working_dir_recovery_method
=
delete
umask
=
0022
syslog
=
1
stdout
=
0
stdout
=
1
# The following options can restrict what the client can do.
# Restore clients can override all of these expect for force_backup.
client_can_delete
=
1
...
...
@@ -72,8 +72,8 @@ keep = 7
# keep = 6
# Run as different user/group.
#
user = burp
#
group = b
ack
up
user
=
burp
group
=
bu
r
p
# CA options.
# If you want your server to be a certificate authority and generate its own
...
...
docker/components/docker-burp/assets/init
View file @
7787f83c
...
...
@@ -23,6 +23,11 @@ appStart () {
pidfile=$(grep -E "^pidfile" /etc/burp/burp-server.conf | sed -r "s/^pidfile *= *(.*)$/\1/")
[ -n "$pidfile" ] && touch $pidfile && chown burp: $pidfile
[ "$(ls /var/lib/burp | wc -l)" -eq 0 ] && {
mkdir -p /var/lib/burp/ssl/client /var/lib/burp/ssl/server
chown -R burp: /var/lib/burp
}
# start supervisord
/usr/bin/supervisord -c /etc/supervisord.conf
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment