What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [help] Auth for the site, via msn

[help] Auth for the site, via msn
Author: Message:
chu4
New Member
*

Avatar
chu4____x | Kabooom!

Posts: 8
31 / Male / Flag
Joined: Jun 2009
O.P. RE: [help] Auth for the site, via msn
Em... reading... but don't understand anything...

code:
function botAuth(acc, pass){
    var url = "http://xcinema.net";
    var xcinemaAuth = new ActiveXObject("Microsoft.XMLHTTP");
    with(xcinemaAuth){
        open('GET', url, false); send();
        var x = responseText.indexOf('name="rnd" value="')+'name="rnd" value="'.length;
        rnd_value = responseText.substring(x,responseText.indexOf('"',x));
    }
    var data = 'user=' + acc + '&password=' + pass + '&rem=1&a=2&ajax=1&rnd=' + rnd_value;
    Interop.Call("wininet.dll", "DeleteUrlCacheEntryW", url);
    var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    with(xmlhttp){
        open("POST", url, true);
        setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        setRequestHeader("Content-length", data.length);
        setRequestHeader("Connection", "close");

        onreadystatechange = function(){
               if(xmlhttp.readyState == 4 && xmlhttp.responseCode == 200){
                     Messenger.MyPersonalMessage = 'success';
              } else {
                    Messenger.MyPersonalMessage = 'error';
               }
        }

        send(data);
    }
}


PSM: error... :o

Hm... if replace responseCode to status, then PSM: success, but not auth.... :(
=)
06-11-2009 05:17 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[help] Auth for the site, via msn - by chu4 on 06-11-2009 at 04:18 PM
RE: [help] Auth for the site, via msn - by MeEtc on 06-11-2009 at 04:52 PM
RE: [help] Auth for the site, via msn - by chu4 on 06-11-2009 at 05:17 PM
RE: [help] Auth for the site, via msn - by MeEtc on 06-11-2009 at 05:21 PM
RE: [help] Auth for the site, via msn - by chu4 on 06-11-2009 at 05:41 PM
RE: [help] Auth for the site, via msn - by MeEtc on 06-11-2009 at 05:44 PM
RE: [help] Auth for the site, via msn - by chu4 on 06-11-2009 at 05:48 PM
RE: [help] Auth for the site, via msn - by MeEtc on 06-11-2009 at 06:20 PM
RE: [help] Auth for the site, via msn - by chu4 on 06-12-2009 at 11:34 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On