Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added allowance to break system packages #26

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update burpsuitepro.yml
n0isegat3 committed Feb 4, 2024

Unverified

This user has not yet uploaded their public signing key.
commit f89f8607dad433576dd0305a0096c6b4b468437f
9 changes: 6 additions & 3 deletions roles/install-tools/tasks/burpsuitepro.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
- name: "Download Burp Suite Professional Install Script"
shell: "wget https://portswigger-cdn.net/burp/releases/download\\?product\\=pro\\&version\\=2023.12.1.3\\&type\\=Linux -O $HOME/Downloads/burpsuiteproinstall.sh"
shell: "wget https://portswigger-cdn.net/burp/releases/download\\?product\\=pro\\&version\\=2023.12.1.3\\&type\\=Linux -O /tmp/burpsuiteproinstall.sh"

- name: Fix permissions for Burp Suite Professional Install Script"
shell: "chmod +x /tmp/burpsuiteproinstall.sh"

- name: "Install Burp Suite Professional"
shell: "$HOME/Downloads/burpsuiteproinstall.sh -q"
become: false
shell: "/tmp/burpsuiteproinstall.sh -q"
become: true
become_method: sudo