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:
LifelesS
Full Member
***


Posts: 115
Reputation: 4
31 / Male / Flag
Joined: Dec 2006
O.P. RE: RE: javascript injections
quote:
Originally posted by Mattike
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);


Thanks Mattike, going to try it out ^^


Edit: Works like candy, many thanks Mattike :bow:

This post was edited on 09-09-2007 at 07:05 PM by LifelesS.
Best Regards,
Joćo Godinho
09-08-2007 05:23 PM
Profile E-Mail PM 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