1 parent 32977c7 commit e025c0dCopy full SHA for e025c0d
1 file changed
tldr.sh
@@ -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