-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yml
69 lines (61 loc) · 2.2 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
# defaults file for ansible_burpui_agent/
burp_usr_path: '/usr/local'
burp_bin_path: "{{ burp_usr_path }}/sbin/burp"
burp_server_etc: '/etc/burp'
# if burpsrv_agent: true
### Burp UI Agent
#[Global]
burp_agent_global_port: "5001"
burp_agent_global_bind: "0.0.0.0"
burp_agent_global_ssl: "false"
burp_agent_global_version: "2"
burp_agent_global_password: "password"
burp_server_ssl_cert: "{{ burp_server_etc }}/ssl_cert-server.pem"
burp_server_ssl_key: "{{ burp_server_etc }}/ssl_cert-server.key"
burp_agent_global_init_wait: '15'
#[Security]
burp_agent_security_includes: "/etc/burp"
burp_agent_security_enforce: "false"
burp_agent_security_revoke: "true"
#[Experimental]
burp_agent_experimental_zip64: "false"
#[Backend]
burp_agent_backend_burpbin: "{{ burp_bin_path }}"
burp_agent_backend_stripbin: "{{ burp_usr_path }}/bin/vss_strip"
burp_agent_backend_tmpdir: "/tmp"
burp_agent_backend_timeout: "60"
# Burp UI pip packages
# Install burpui from a different source
# ex: burpsrv_pip_burpui: "https://burpui.ziirish.me/builds/burp-ui.dev.tar.gz"
burp_agent_pip_burpui: "burp-ui-agent"
burpui_pip_package: "{{ burp_agent_pip_burpui }}==1.0.0"
burp_agent_pip_present:
- "cffi>=1.14.5"
#- "urllib3>=1.19" # required to avoid issues with get_url module
# - "ndg-httpsclient>=0.4.2" # required to avoid issues with get_url module
- "pyasn1>=0.4.8"
#[Burp]
burpui_backend_bconfcli: '/etc/burp/burp.conf'
burpui_backend_bconfsrv: '/etc/burp/burp-server.conf'
#- "requests[security]>=2.12" # required to avoid issues with get_url module
### ---
burpui_virtualenv: /venv_apps/bui
burpui_virtualenv_bin: "{{ burpui_virtualenv}}/bin"
burpui_virtualenv_python: python3
burpui_agent_bin_links:
- bui-agent
### Supervisor
# Burp Agent
burp_sv_agent_priority: "40"
burp_sv_agent_directory: "/tmp"
burp_sv_agent_command: "{{ pip_installed_exe_bin_path }}/bui-agent -v -c /etc/burp/buiagent.cfg"
burp_sv_agent_user: "root"
burp_sv_agent_autostart: "true"
burp_sv_agent_autorestart: "true"
burp_sv_agent_stdout_logfile: "/var/log/supervisor/%(program_name)s.log"
burp_sv_agent_stderr_logfile: "/var/log/supervisor/%(program_name)s.log"
### systemd
# Burp Agent systemd
# On ubuntu trusty it is always changed to false
bui_agent_systemd: true