├── README.md ├── LICENSE └── maskphish.sh /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 | ## Author: https://github.com/jaykali 6 | ## Twitter: https://twitter.com/KaliLinux_in 7 | 8 | 9 | ### MaskPhish is a simple script to hide phishing URL under a normal looking URL(google.com or facebook.com). 10 | 11 | 12 | ## Legal Disclaimer: 13 | Usage of MaskPhish for attacking targets without prior mutual consent is illegal. It's the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program 14 | 15 | ## Installing (Tested on Kali Linux, Termux & Ubuntu): 16 | 17 | ``` 18 | git clone https://github.com/jaykali/maskphish 19 | cd maskphish 20 | ./maskphish 21 | ``` 22 | ## Detailed Article: 23 | https://www.kalilinux.in/2020/07/how-to-hide-phishing-link.html 24 | 25 | ## Screenshot 26 |

27 | 28 |

29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 KaliLinuxIn 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /maskphish.sh: -------------------------------------------------------------------------------- 1 | # Bash Script for Hide Phishing URL Created by KP 2 | 3 | url_checker() { 4 | if [ ! "${1//:*}" = http ]; then 5 | if [ ! "${1//:*}" = https ]; then 6 | echo -e "\e[31m[!] Invalid URL. Please use http or https.\e[0m" 7 | exit 1 8 | fi 9 | fi 10 | } 11 | 12 | echo -e "\n\e[1;31;42m######┌──────────────────────────┐##### \e[0m" 13 | echo -e "\e[1;31;42m######│▙▗▌ ▌ ▛▀▖▌ ▗ ▌ │##### \e[0m" 14 | echo -e "\e[1;31;42m######│▌▘▌▝▀▖▞▀▘▌▗▘▙▄▘▛▀▖▄ ▞▀▘▛▀▖│##### \e[0m" 15 | echo -e "\e[1;31;42m######│▌ ▌▞▀▌▝▀▖▛▚ ▌ ▌ ▌▐ ▝▀▖▌ ▌│##### \e[0m" 16 | echo -e "\e[1;31;42m######│▘ ▘▝▀▘▀▀ ▘ ▘▘ ▘ ▘▀▘▀▀ ▘ ▘│##### \e[0m" 17 | echo -e "\e[1;31;42m######└──────────────────────────┘##### \e[0m \n" 18 | echo -e "\e[40;38;5;82m Please Visit \e[30;48;5;82m https://www.kalilinux.in \e[0m" 19 | echo -e "\e[30;48;5;82m Copyright \e[40;38;5;82m JayKali \e[0m \n\n" 20 | echo -e "\e[1;31;42m ### Phishing URL ###\e[0m \n" 21 | echo -n "Paste Phishing URL here (with http or https): " 22 | read phish 23 | url_checker $phish 24 | short=$(curl -s https://da.gd/s/?url=${phish}) 25 | shorter=${short#https://} 26 | echo -e "\n\e[1;31;42m ### Masking Domain ###\e[0m" 27 | echo 'Domain to mask the Phishing URL (with http or https), ex https://google.com, http 28 | ://anything.org) :' 29 | echo -en "\e[32m=>\e[0m " 30 | read mask 31 | url_checker $mask 32 | echo -e '\nType social engineering words:(like free-money, best-pubg-tricks)' 33 | echo -e "\e[31mDon't use space just use '-' between social engineering words\e[0m" 34 | echo -en "\e[32m=>\e[0m " 35 | read words 36 | echo -e "\nGenerating MaskPhish Link...\n" 37 | final=$mask-$words@$shorter 38 | echo -e "Here is the MaskPhish URL:\e[32m ${final} \e[0m\n" 39 | --------------------------------------------------------------------------------