├── .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 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
40 |
82 |
83 |