-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcoba.sh
33 lines (26 loc) · 853 Bytes
/
coba.sh
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
26
27
28
29
30
31
32
33
#!/bin/bash
YELLOW="\033[1;33m"
ENDCOLOR="\033[0m"
clear
echo -e
echo -e $YELLOW"[ + ] Points [ + ]"$ENDCOLOR
echo "1. Author = Computer Users"
echo "2. Last/Modified By = Computer Users"
echo "3. Producer or Creator = Software / OS Versions"
echo "4. Title = Path Information"
echo "5. Creator = Software / OS Versions"
echo "6. Mime = Content Information"
echo "7. SVG = image/svg+xml; charset=us-ascii means XSS"
echo ""
echo "[ + ] Enter TERMUX option for Termux else press RETURN :"
read $first
if [ "$first" == 'TERMUX' ]
then
read -p "[ + ] Enter victim url in absolute format: " victim
echo "$victim"
python cobra_webmeta_crawler.py --wait=2 --download $victim
else
read -p "[ + ] Enter victim url: " victim
echo "$victim"
python3 cobra_webmeta_crawler.py --wait=2 --download $victim
fi