Originally posted by Tustin
Mind explaining what language this is going to be written in? Would make it easier to help. But for that URL you posted, you just GET your elite key md5 hash here:
You must login or register to view this content. and it'll return VALID if it's good. This isn't very secure but if you create some middle man that verifies it and doesn't return a static response, it would be a lot better.
It's in C++ and a SPRX Menu
char* request = SocketRequest("nextgenupdate.com", Key, "validator.php?KEY=");
char* s = strstr(request , "License is valid");
if (s != NULL)
{
return true;
}
else
{
return false;
}
'
I'm not sure how to do the MD5 Part..