What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » javascript injections

javascript injections
Author: Message:
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
32 / Male / Flag
Joined: Apr 2004
RE: javascript injections
Based on the code from win_crook's reply to Web Services?.
code:
var sUrl = "http://www.hi5.com/friend/login.do";
var sEmail = "EMAIL";
var sPassword = "PASSWORD";

var ajax = new ActiveXObject("Microsoft.XMLHTTP");
ajax.open("POST", sUrl, true);
ajax.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
var sEncodedEmail = encodeURIComponent(sEmail);
var sEncodedPassword = encodeURIComponent(sPassword);

ajax.onreadystatechange = function() {
   if(ajax.readyState == 4 && ajax.status == 200) {
      Debug.Trace("Success!\nResponse text: "+ajax.responseText);
   }
}

ajax.send("email="+sEncodedEmail+"&password="+sEncodedPassword);
Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
09-08-2007 03:16 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
javascript injections - by LifelesS on 09-08-2007 at 01:00 PM
RE: javascript injections - by Spunky on 09-08-2007 at 02:03 PM
RE: javascript injections - by LifelesS on 09-08-2007 at 02:14 PM
RE: javascript injections - by Matti on 09-08-2007 at 03:16 PM
RE: RE: javascript injections - by LifelesS on 09-08-2007 at 05:23 PM
RE: javascript injections - by LifelesS on 09-09-2007 at 07:21 PM
RE: javascript injections - by Spunky on 09-09-2007 at 07:40 PM
RE: javascript injections - by LifelesS on 09-09-2007 at 07:41 PM
RE: javascript injections - by Spunky on 09-09-2007 at 07:42 PM
RE: javascript injections - by LifelesS on 09-09-2007 at 07:46 PM
RE: javascript injections - by Spunky on 09-09-2007 at 07:47 PM
RE: javascript injections - by LifelesS on 09-09-2007 at 07:48 PM
RE: javascript injections - by ShawnZ on 09-09-2007 at 08:26 PM
RE: javascript injections - by Spunky on 09-09-2007 at 08:27 PM
RE: javascript injections - by LifelesS on 09-09-2007 at 11:16 PM
RE: javascript injections - by ShawnZ on 09-09-2007 at 11:37 PM
RE: javascript injections - by davidpolitis on 09-11-2007 at 12:02 AM
RE: javascript injections - by LifelesS on 09-11-2007 at 12:08 AM
RE: javascript injections - by davidpolitis on 09-11-2007 at 12:10 AM
RE: RE: javascript injections - by LifelesS on 09-11-2007 at 12:14 AM
RE: javascript injections - by smaster on 03-26-2008 at 01: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