use python3/pip3 on demo images

This commit is contained in:
ziirish 2019-03-20 18:03:40 +01:00
parent e27e5fe36d
commit 0ba91dfb73
No known key found for this signature in database
GPG key ID: 72DB229A64B54E46
3 changed files with 9 additions and 7 deletions

View file

@ -10,8 +10,10 @@ ssl = false
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
# burp backend to load either 'burp1', 'burp2' or 'parallel'.
# You can also use whatever custom backend you like if it is located in the
# 'plugins' directory and if it implements the right interface.
backend = burp1
# agent password
password = azerty

View file

@ -19,8 +19,8 @@ make install
cd
# Install burp-ui
pip install --upgrade setuptools
pip install --upgrade $BURPUI
pip3 install --upgrade setuptools
pip3 install --upgrade $BURPUI
# Create burp-ui User
useradd -m -s /bin/bash -d /var/lib/burpui -c 'Burp-UI daemon user' -u 5337 burpui

View file

@ -15,9 +15,9 @@ apt-get install -y burp-server burp-client
cd
# Install burp-ui
pip install --upgrade setuptools
pip install --upgrade $BURPUI
pip install --upgrade $BURPUIMON
pip3 install --upgrade setuptools
pip3 install --upgrade $BURPUI
pip3 install --upgrade $BURPUIMON
# Create burp-ui User
useradd -m -s /bin/bash -d /var/lib/burpui -c 'Burp-UI daemon user' -u 5337 burpui