From 1a935c4dad007e92551ffe48cae94d42d94cf146 Mon Sep 17 00:00:00 2001 From: Md Faizan Ahmad Date: Sun, 2 May 2021 22:00:33 +0530 Subject: [PATCH] Code Cleanup --- README.md | 10 +++++--- gemailhack.py | 34 +++---------------------- src/__pycache__/artwork.cpython-38.pyc | Bin 0 -> 1462 bytes src/artwork.py | 31 ++++++++++++++++++++++ 4 files changed, 40 insertions(+), 35 deletions(-) create mode 100644 src/__pycache__/artwork.cpython-38.pyc create mode 100644 src/artwork.py 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 0000000000000000000000000000000000000000..c55a01c533699c9445ad76319670a7679ce6fd7d GIT binary patch literal 1462 zcmbW1OK;Oa5XaX^Q$lEXzbVolW8w8S;+j?`g>n}CNexS2z6>uKFGuwhC zV1f0Cy<$P-8MCW>h?ER-AHg&G1xpOMA1w>DLYn(k@;69pf6+~fpCPT2o+WLNo+I5N zZIYfRy+C@A^b+Z1(krA_Nw1M!C%r*>lk^tpZPGia0fRf)-cQ=Q|7uB_m#rU#ejM_{ zIq&-SpGF5|ir!kuy%Vflmh3djfm6M;Lr$$I&((c+^6=$0$zAf52s@e!*Iwtz zHpW_9N#O}s9ZN99(n+-d=7?Up${lX7r&10Hu9E2rc6gd$4jZn8!zFIWBnOu!%c4+Q zU_*1vbp*ZB6oOpgd>J)Z!AzZOW?KsY+9hhR2iY*Wz(a8_^ICZS*`*an0!@qB0^^yv z$-FZJpxRU5W7EuVydoQ$o6fi>rze)@Vs?QYt~K1fhqcR_H=}uuEB3P2;T?!w*~3C( z2Dh@)%&p6wCWK-z*DvADz* literal 0 HcmV?d00001 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