-
Notifications
You must be signed in to change notification settings - Fork 1
Installatiion
Daniel edited this page Mar 4, 2025
·
1 revision
This guide explains how to install and set up Postman2Burp on your system.
- Python 3.6 or higher
- Git (for cloning the repository)
- Burp Suite or another HTTP proxy
git clone https://github.com/darmado/postman2burp.git
cd postman2burpRun the setup script to create a virtual environment and install dependencies:
# Make the setup script executable
chmod +x setup_venv.sh
# Run the setup script
./setup_venv.shIf you prefer to set up manually:
# Create virtual environment
python3 -m venv venv
# Activate environment
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txtVerify that the installation was successful by running:
python postman2burp.py --helpYou should see the help message with available options.
After installation, you can: