What is it wrong in this HTTP GET ???
What am I doing fatallity wrong?
I am using the great Blijbol onScore server system but I wanted to hack the calls to the php file in order to send scores silently ( w/o opening the browser).
Thank you a lot.
// Copyright © 2006-2009 Jeroen van der Gun (Blijbol)
var type, scorestr, stamp, oid, url;
if(argument4) type = 'quick';
else type = 'form';
scorestr = string(argument3);
stamp = string(current_timestamp());
if(registry_exists('__oid')) oid = registry_read_string('__oid');
else
{
oid = string_replace_all(string_format(current_time mod 100000, 5, 0) + string_format(floor(random(9999)) + 1, 4, 0), ' ', '0') + string(current_minute mod 10) + string(current_second mod 10);
registry_write_string('__oid', oid);
}
// 39 dll part
url = 'list.php?list=' + string(argument0) + '&submit=' + type + '&name='+string_urlencode(argument1) + '&website=' + string_urlencode(argument2) + '&score=' + scorestr + '&identity=' + oid + '&stamp=' + stamp + '&auth=' + string_md5(scorestr + string_insert(oid, onscore_connection_script(argument0), 17) + stamp);
newLine = chr(13) + chr(10);
dllinit(0,true,true)
sockId = tcpconnect('www.redefineteclas.com', 80, 0);
setformat(sockId, 1, newLine);
clearbuffer();
writechars('GET/'+ string(url) + newLine);
writechars("Host: volando1" + newLine);
sendmessage(sockId);
dllfree()









