├── .github └── FUNDING.yml ├── LICENSE ├── maskphish.sh └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: ["https://www.paypal.me/jharnachakraborty", 'https://link.trustwallet.com/send?address=bnb1tmwpdmvt5ctsrx6dj05d36kzv7nfr5escyavag&asset=c714'] 13 | -------------------------------------------------------------------------------- /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 | #!/bin/bash 2 | # Bash Script for Hide Phishing URL Created by KP 3 | 4 | url_checker() { 5 | if [ ! "${1//:*}" = http ]; then 6 | if [ ! "${1//:*}" = https ]; then 7 | echo -e "\e[31m[!] Invalid URL. Please use http or https.\e[0m" 8 | exit 1 9 | fi 10 | fi 11 | } 12 | 13 | echo -e "\n\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" 18 | echo -e "\e[1;31;42m######└──────────────────────────┘##### \e[0m \n" 19 | echo -e "\e[40;38;5;82m Please Visit \e[30;48;5;82m https://www.kalilinux.in \e[0m" 20 | echo -e "\e[30;48;5;82m Copyright \e[40;38;5;82m JayKali \e[0m \n\n" 21 | echo -e "\e[1;31;42m ### Phishing URL ###\e[0m \n" 22 | echo -n "Paste Phishing URL here (with http or https): " 23 | read phish 24 | url_checker $phish 25 | sleep 1 26 | echo "Processing and Modifying Phishing URL" 27 | echo "" 28 | short=$(curl -s https://is.gd/create.php\?format\=simple\&url\=${phish}) 29 | shorter=${short#https://} 30 | echo -e "\n\e[1;31;42m ### Masking Domain ###\e[0m" 31 | echo 'Domain to mask the Phishing URL (with http or https), ex: https://google.com, http://anything.org :' 32 | echo -en "\e[32m=>\e[0m " 33 | read mask 34 | url_checker $mask 35 | echo -e '\nType social engineering words: (like free-money, best-pubg-tricks)' 36 | echo -e "\e[31mDon't use space just use '-' between social engineering words\e[0m" 37 | echo -en "\e[32m=>\e[0m " 38 | read words 39 | if [[ -z "$words" ]]; then 40 | echo -e "\e[31m[!] No words.\e[0m" 41 | echo -e "\nGenerating MaskPhish Link...\n" 42 | final=$mask@$shorter 43 | echo -e "Here is the MaskPhish URL:\e[32m ${final} \e[0m\n" 44 | exit 45 | fi 46 | if [[ "$words" =~ " " ]]; then 47 | echo -e "\e[31m[!] Invalid words. Please avoid space.\e[0m" 48 | echo -e "\nGenerating MaskPhish Link...\n" 49 | final=$mask@$shorter 50 | echo -e "Here is the MaskPhish URL:\e[32m ${final} \e[0m\n" 51 | exit 52 | fi 53 | # Minor fix: Trim trailing newline from shorter variable to avoid malformed URL 54 | shorter=$(echo -n "$shorter") 55 | echo -e "\nGenerating MaskPhish Link...\n" 56 | final=$mask-$words@$shorter 57 | echo -e "Here is the MaskPhish URL:\e[32m ${final} \e[0m\n" 58 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 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 |

👨‍💻️ Author : jaykali

41 |

42 | 43 |
44 | 45 | ## 🔥 MaskPhish 46 | MaskPhish is not any Phishing tool. It's just a proof of concept of "URL Making Technology". It is a simple Bash Script to hide phishing URL under a normal looking URL (google.com or facebook.com). It can be integrated into Phishing tools (with proper credits) to look the URL ledgit. 47 | 48 |
49 | 50 | ## ⚖️ Legal Disclaimer: 51 | **FOR EDUCATIONAL PURPOSES ONLY**
52 | 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. Use Responsibly! 53 | 54 |
55 | 56 | ## Common Issue 57 | Sometimes Masked link is not generating properly. In that case we need to use VPN/proxy, then use maskphish to generate masked link. 58 | 59 | ## 💻 Installation 60 | 61 | ```bash 62 | # Clone the repository 63 | git clone https://github.com/jaykali/maskphish 64 | 65 | # Enter into the directory 66 | cd maskphish 67 | 68 | # Run the script 69 | bash maskphish.sh 70 | ``` 71 | 72 |
73 | 74 | - *Tested on Kali Linux, Termux & Ubuntu*
75 | - Detailed Article can be found [here](https://www.kalilinux.in/2020/07/how-to-hide-phishing-link.html) 76 | - Want to discuss something? Start discussions [click here](https://github.com/jaykali/maskphish/discussions/new) 77 | 78 |
79 | 80 | ## 🖼️ Screenshot 81 |

82 | 83 |

84 | 85 |
86 | 87 | ## ❤️ Contributors: 88 | You can propose a feature request opening an issue or a pull request. 89 | Here is a list of MaskPhish contributors: 90 | 91 | 92 | 93 | 94 | --------------------------------------------------------------------------------