Burp Suite Professional is the web security tester's toolkit of choice. Use it to automate repetitive testing tasks - then dig deeper with its expert-designed manual and semi-automated security testing tools. Burp Suite Professional can help you to test for OWASP Top 10 vulnerabilities - as well as the very latest hacking techniques. Advanced manual and automated features empower users to find lurking vulnerabilities more quickly. Burp Suite is designed and used by the industry's best.
wget -qO- https://raw.githubusercontent.com/xiv3r/Burpsuite-Professional/main/install.sh | sudo bashburpsuiteprooptional
cdrm -rf Burpsuite-Professional && wget -qO- https://raw.githubusercontent.com/xiv3r/Burpsuite-Professional/refs/heads/main/update.sh | sudo bash
license.mp4
Note: Copy the license from loader to the burpsuite > manual activation > copy burpsuite request key to loader request > copy response key to the burpsuite.
right click the desktop -> create a launcher name it Burpsuite Professional, add command burpsuitepro and select burpsuite community icon.
# flake.nix
{
# ...
inputs = {
burpsuitepro = {
type = "github";
owner = "xiv3r";
repo = "Burpsuite-Professional";
inputs.nixpkgs.follows = "nixpkgs";
};
};
# ...
}
With
environment.systemPackages(nixosModules)
{ inputs, ... }: {
environment.systemPackages = [
inputs.burpsuitepro.packages.${system}.default
];
}
With
home.packages(home-manager)
{ inputs, ... }: {
home.packages = [
inputs.burpsuitepro.packages.${system}.default
];
}
NOTE: loader.jar is symlinked to burpsuite.jar so burpsuite recognizes the license keys. You can access the loader command from the terminal only
-
Make a
Burpdirectory name inC Drivefor faster access. -
Download install.ps1 and extract move the file inside to
C:\Burp -
Open
Powershellas administrator and execute below command to set Script Execution Policy.Set-ExecutionPolicy -ExecutionPolicy bypass -Scope process -
Inside PowerShell go to
cd C:\Burp -
Now Execute
install.ps1file in Powershell to Complete Installation../install.ps1 -
Change the icon of
Burp-Suite-Pro.vbsto the given icon -
Create a shortcut to Desktop. Right Click over
Burp-Suite-Pro.vbsGo to Shortcut tab, and below there isChange Icontab -
Click there and choose the
burp-suite.icofromC:\Burp\
-
For Start Menu Entry, copy
Burp-Suite-Pro.vbsfile toC:\ProgramData\Microsoft\Windows\Start Menu\Programs\
Credit
- Loader.jar 👉 h3110w0r1d-y
- Script 👉 cyb3rzest


