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

Install burp suite #73

Open
fazlearefin opened this issue Mar 31, 2024 · 0 comments
Open

Install burp suite #73

fazlearefin opened this issue Mar 31, 2024 · 0 comments
Labels
24.04 Ubuntu 24.04 (Noble Numbat)

Comments

@fazlearefin
Copy link
Owner

Sample playbook:

---
- hosts: all
  become: yes
  tasks:

    - name: Install required dependencies
      apt:
        name:
          - openjdk-11-jre
        state: present
        update_cache: yes

    - name: Download Burp Suite Community Edition
      get_url:
        url: https://portswigger.net/burp/releases/download?product=community&type=linux
        dest: /tmp/burpsuite_community_linux.sh
        mode: 0755

    - name: Install Burp Suite Community Edition
      command: /tmp/burpsuite_community_linux.sh --prefix=/opt/burpsuite

    - name: Create symbolic link for Burp Suite
      file:
        src: /opt/burpsuite/burpsuite_community.sh
        dest: /usr/local/bin/burpsuite
        state: link

    - name: Create Burp Suite desktop entry
      copy:
        content: |
          [Desktop Entry]
          Name=Burp Suite Community Edition
          Exec=/opt/burpsuite/burpsuite_community.sh
          Terminal=false
          Type=Application
          Categories=Development;
        dest: /usr/share/applications/burpsuite.desktop
        mode: 0644
@fazlearefin fazlearefin added the 24.04 Ubuntu 24.04 (Noble Numbat) label Mar 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
24.04 Ubuntu 24.04 (Noble Numbat)
Projects
None yet
Development

No branches or pull requests

1 participant