├── .github └── FUNDING.yml ├── logo.png ├── article.jpg ├── README.md ├── LICENSE └── hidemeplease.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: krishealty 2 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishealty/HideMePlease/HEAD/logo.png -------------------------------------------------------------------------------- /article.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishealty/HideMePlease/HEAD/article.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## HideMePlease 2 |

3 | logo 4 |

5 |

6 | HideMePlease is a tool that can hide Phising web links into custom legitimate links (eg: facebook.com, instagram.com) by using ccTLD Disguise method. 7 |

8 | 9 | ## Installation 10 | 11 | ``` 12 | git clone https://github.com/krishealty/hidemeplease 13 | ``` 14 | 15 | ``` 16 | cd hidemeplease 17 | ``` 18 | 19 | ``` 20 | bash hidemeplease.sh 21 | ``` 22 | 23 | Find more about the tool in the [Medium article](https://medium.com/@krishealty/how-to-easily-convert-phising-links-into-legitimate-website-domains-5a8fbd4dbe5a) 24 | 25 |

26 | article 27 |

28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Krish Lalwani 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 | -------------------------------------------------------------------------------- /hidemeplease.sh: -------------------------------------------------------------------------------- 1 | url_checker() { 2 | if [ ! "${1//:*}" = http ]; then 3 | if [ ! "${1//:*}" = https ]; then 4 | echo -e "\e[31m[!] Invalid URL. Please use http or https.\e[0m" 5 | exit 1 6 | fi 7 | fi 8 | } 9 | echo -e "\n\e[1;31;42m######┏┓┏┳┓┏┓╋┏━┳━┓╋┏━┓╋╋╋╋╋╋┏━┓##### \e[0m" 10 | echo -e "\e[1;31;42m######┃┗┛┣╋┛┣━┫┃┃┃┣━┫╋┣┓┏━┳━┓┃━╋━┓##### \e[0m" 11 | echo -e "\e[1;31;42m######┃┏┓┃┃╋┃┻┫┃┃┃┃┻┫┏┫┗┫┻┫╋┗╋━┃┻┫##### \e[0m" 12 | echo -e "\e[1;31;42m######┗┛┗┻┻━┻━┻┻━┻┻━┻┛┗━┻━┻━━┻━┻━┛##### \e[0m\n" 13 | echo -e "\e[30;48;5;82m Copyright \e[40;38;5;82m krishealty \e[0m \n\n" 14 | echo -e "\e[1;31;42m ### Phishing URL ###\e[0m \n" 15 | echo -n "Paste Phishing URL here (with http or https): " 16 | read phish 17 | url_checker $phish 18 | sleep 1 19 | echo "Processing and Modifing Phishing URL" 20 | echo "" 21 | short=$(curl -s https://is.gd/create.php\?format\=simple\&url\=${phish}) 22 | shorter=${short#https://} 23 | echo -e "\n\e[1;31;42m ### Masking Domain ###\e[0m" 24 | echo 'Domain to mask the Phishing URL (with http or https), ex: https://google.com, http 25 | ://anything.org) :' 26 | echo -en "\e[32m=>\e[0m " 27 | read mask 28 | url_checker $mask 29 | echo -e '\nType social engineering words:(like free-money, win-money, free-iphone)' 30 | echo -e "\e[31mDon't use space, just use '-' between social engineering words\e[0m" 31 | echo -en "\e[32m=>\e[0m " 32 | read words 33 | if [[ -z "$words" ]]; then 34 | echo -e "\e[31m[!] No words.\e[0m" 35 | echo -e "\nGenerating HideMePlease Link...\n" 36 | final=$mask@$shorter 37 | echo -e "Here is the MaskPhish URL:\e[32m ${final} \e[0m\n" 38 | exit 39 | fi 40 | if [[ "$words" =~ " " ]]; then 41 | echo -e "\e[31m[!] Invalid words. Please avoid space.\e[0m" 42 | echo -e "\nGenerating HideMePlease Link...\n" 43 | final=$mask@$shorter 44 | echo -e "Here is the HideMePlease URL:\e[32m ${final} \e[0m\n" 45 | exit 46 | fi 47 | echo -e "\nGenerating HideMePlease Link...\n" 48 | final=$mask-$words@$shorter 49 | echo -e "Here is the HideMePlease URL:\e[32m ${final} \e[0m\n" 50 | --------------------------------------------------------------------------------