-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
25 lines (20 loc) · 733 Bytes
/
Copy pathsetup.sh
File metadata and controls
25 lines (20 loc) · 733 Bytes
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
#!/bin/bash
# Pentest Kickoff Script Setup
# This script sets up the virtual environment and installs dependencies
echo "Setting up Pentest Kickoff Script..."
# Create virtual environment
echo "Creating virtual environment..."
python3 -m venv venv
# Activate virtual environment and install dependencies
echo "Installing dependencies..."
source venv/bin/activate
pip install -r requirements.txt
echo "Setup complete!"
echo ""
echo "To use the script:"
echo "1. Activate the virtual environment: source venv/bin/activate"
echo "2. Run the script: python pentest_visualizer.py <nmap_xml_file>"
echo ""
echo "Example:"
echo " source venv/bin/activate"
echo " python pentest_visualizer.py sample_nmap.xml -o pentest_results.xlsx"