Jump to content

Html Siteye Giriş


SİNNAN
 Share

Recommended Posts

İyi forumlar.

ben auto it de pek usta değilim. Sadece bi kaç macro falan.

sizden ufak bi ricam var. sizin için çok zor olmasa gerek

auto it ile

http://194.27.44.159/ogrenci1/

sitesine scriptin içine kullanıcı adı ve şifre girilecek. script build edildikten sonra direk siteye girip kullanıcı adı ve şifre girecek.

örneğin şu script gibi


[code]Opt("TrayIconHide", 1)
#include<IE.au3>
#include <File.au3>

Local $mailtxt = "EMAİLİNİZ"
Local $passtxt = "ŞİFRENİZ"
$Mail = $mailtxt
$Pass = $passtxt
$oIE = _IECreate("https://login.facebook.com/login.php?login_attempt=1", 0, 1, 1)
$oForm = _IEFormGetObjByName($oIE, "login_form")
$oQuery = _IEFormElementGetObjByName($oForm, "email")
$o_Query = _IEFormElementGetObjByName($oForm, "pass")
$oSubmit = _IEFormElementGetObjByName($oForm, "login")
_IEFormElementSetValue($oQuery, $Mail)
_IEFormElementSetValue($o_Query, $Pass)
_IEAction($oSubmit, "click")[/code] Edited by SİNNAN
Link to comment
Share on other sites

[codebox]#include<IE.au3>

Local $mailtxt = "Öğrenci No"
Local $passtxt = "ŞİFRE"
$Mail = $mailtxt
$Pass = $passtxt
$oIE = _IECreate("http://194.27.44.159/ogrenci1/", 0, 1, 1)
$oForm = _IEFormGetObjByName($oIE, "login")
$oQuery = _IEFormElementGetObjByName($oForm, "ogrno")
$o_Query = _IEFormElementGetObjByName($oForm, "pass")
$oSubmit = _IEFormElementGetObjByName($oForm, "login")
_IEFormElementSetValue($oQuery, $Mail)
_IEFormElementSetValue($o_Query, $Pass)
_IEAction($oSubmit, "click")[/codebox]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...