diff --git a/README.md b/README.md index 0e5b7da..a284e52 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,15 @@ ### to ack victim account.Brute force attack is the only successful method to hack account ### but this process will take long time depend upon the length of password. -### git clone https://github.com/Ha3MrX/Gemail-Hack +```git clone https://github.com/Ha3MrX/Gemail-Hack -### cd Gemail-Hack +cd Gemail-Hack -### chmod +x gemailhack.py +chmod +x gemailhack.py -### python gemailhack.py +python gemailhack.py + +``` ### ScreenShot diff --git a/gemailhack.py b/gemailhack.py index 2d28a67..5bcc9c2 100644 --- a/gemailhack.py +++ b/gemailhack.py @@ -3,39 +3,11 @@ import smtplib from os import system +from src import artwork -def main(): - print '=================================================' - print ' create by Ha3MrX ' - print '=================================================' - print ' ++++++++++++++++++++ ' - print '\n ' - print ' _,. ' - print ' ' - print ' ' - print ' HA3MrX ' - print ' _,. ' - print ' ,` -.) ' - print ' ( _/-\\-._ ' - print ' /,|`--._,-^| , ' - print ' \_| |`-._/|| , | ' - print ' | `-, / | / / ' - print ' | || | / / ' - print ' `r-._||/ __ / / ' - print ' __,-<_ )`-/ `./ / ' - print ' \ `--- \ / / / ' - print ' | |./ / ' - print ' / // / ' - print ' \_/ \ |/ / ' - print ' | | _,^- / / ' - print ' | , `` (\/ /_ ' - print ' \,.->._ \X-=/^ ' - print ' ( / `-._//^` ' - print ' `Y-.____(__} ' - print ' | {__) ' - print ' () V.1.0 ' -main() + +artwork.banner() print '[1] start the attack' print '[2] exit' option = input('==>') diff --git a/src/__pycache__/artwork.cpython-38.pyc b/src/__pycache__/artwork.cpython-38.pyc new file mode 100644 index 0000000..c55a01c Binary files /dev/null and b/src/__pycache__/artwork.cpython-38.pyc differ diff --git a/src/artwork.py b/src/artwork.py new file mode 100644 index 0000000..d1b57a8 --- /dev/null +++ b/src/artwork.py @@ -0,0 +1,31 @@ +def banner(): + print('=================================================') + print(' create by Ha3MrX ') + print('=================================================') + print(' ++++++++++++++++++++ ') + print('\n ') + print(' ') + print(' ') + print(' ') + print(' HA3MrX ') + print(' _,. ') + print(' ,` -.) ') + print(' ( _/-\\-._ ') + print(' /,|`--._,-^| , ') + print(' \_| |`-._/|| , | ') + print(' | `-, / | / / ') + print(' | || | / / ') + print(' `r-._||/ __ / / ') + print(' __,-<_ )`-/ `./ / ') + print(' \ `--- \ / / / ') + print(' | |./ / ') + print(' / // / ') + print(' \_/ \ |/ / ') + print(' | | _,^- / / ') + print(' | , `` (\/ /_ ') + print(' \,.->._ \X-=/^ ') + print(' ( / `-._//^` ') + print(' `Y-.____(__} ') + print(' | {__) ') + print(' () V.1.0 ') + print("\n") \ No newline at end of file