Skip to content

Commit e025c0d

Browse files
committed
Add helper script for grabbing more domains from Burp Suite Pro
1 parent 32977c7 commit e025c0d

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

tldr.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
# Define your input and output files to store the URL information
4+
in=$1
5+
out=$2
6+
7+
# Step 1: Select-all and "Copy Selected URLs" in the Burp Suite Pro Site map
8+
# Step 2: pbpaste > $FILE_NAME.txt
9+
# Step 3: tldr $FILE_NAME.txt $OUTPUT_FILE.txt
10+
# Step 4: ...
11+
# Step 5: Profit!
12+
13+
# And this is where the magic happens:
14+
cat $in | uniq | grep -Eo '(http|https)://[^/"]+' | uniq > $out

0 commit comments

Comments
 (0)