Skip to content

Commit

Permalink
Updated and Working. Plz follow the instractions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaykali authored Dec 19, 2020
1 parent 1b807fc commit 55efc84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions maskphish.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Bash Script for Hide Phishing URL Created by KP
#!/bin/zsh

url_checker() {
if [ ! "${1//:*}" = http ]; then
if [ ! "${1//:*}" = https ]; then
Expand All @@ -23,11 +23,11 @@ read phish
url_checker $phish
sleep 1
echo "Processing and Modifing Phishing URL"
sleep 1
short=$(curl https://is.gd/create.php\?format\=simple\&url\=${phish})
echo ""
short=$(curl -s https://is.gd/create.php\?format\=simple\&url\=${phish})
shorter=${short#https://}
echo -e "\n\e[1;31;42m ### Masking Domain ###\e[0m"
echo 'Domain to mask the Phishing URL (with http or https), ex https://google.com, http
echo 'Domain to mask the Phishing URL (with http or https), ex: https://google.com, http
://anything.org) :'
echo -en "\e[32m=>\e[0m "
read mask
Expand Down

0 comments on commit 55efc84

Please sign in to comment.