Post: Im making a sprx
01-04-2016, 09:55 PM #1
.EXE
Hurah!
(adsbygoogle = window.adsbygoogle || []).push({}); Hi im in the middle of making a sprx for GTA but i need some help/advice i also own a domain website but i want the menus shared with a license key how do i go by doing it?
01-05-2016, 10:49 AM #2
Winter
Purple God
Originally posted by PS3Servicesuk
Hi im in the middle of making a sprx for GTA but i need some help/advice i also own a domain website but i want the menus shared with a license key how do i go by doing it?


setup a php thingo that will return something when a key is input to check is valadidity, I've never touched that kind of stuff but I can do the sprx side of it ^^ Sal
01-05-2016, 10:52 AM #3
.EXE
Hurah!
Originally posted by Winter View Post
setup a php thingo that will return something when a key is input to check is valadidity, I've never touched that kind of stuff but I can do the sprx side of it ^^ Sal


how do i go by doing this is there link or site to go like i ask a few people just say google youtube ect but i need a trusted site so i know im i the right place
01-05-2016, 11:39 AM #4
Winter
Purple God
Originally posted by PS3Servicesuk
how do i go by doing this is there link or site to go like i ask a few people just say google youtube ect but i need a trusted site so i know im i the right place


try 000webhost
01-05-2016, 12:28 PM #5
.EXE
Hurah!
Originally posted by Winter View Post
try 000webhost


Thanks toxic directed me to right thread you can close this as answer been found Smile
01-18-2016, 06:55 AM #6
ImTrippinHoes
Vault dweller
Originally posted by PS3Servicesuk
Thanks toxic directed me to right thread you can close this as answer been found Smile


by anychance im doing the same thing and wanted to make a wesbite for my menu as well is there anyway you can link me the thread that toxic linked you?
01-18-2016, 12:40 PM #7
.EXE
Hurah!
Originally posted by ImTrippinHoes View Post
by anychance im doing the same thing and wanted to make a wesbite for my menu as well is there anyway you can link me the thread that toxic linked you?


I currently don't sorry pm and i can see what you need and maybe help you in the right direction
01-20-2016, 09:53 PM #8
Passion
League Champion
Originally posted by ImTrippinHoes View Post
by anychance im doing the same thing and wanted to make a wesbite for my menu as well is there anyway you can link me the thread that toxic linked you?


Originally posted by PS3Servicesuk
I currently don't sorry pm and i can see what you need and maybe help you in the right direction


For the website:
You must login or register to view this content.

Someone send me this a while ago, not sure if does work.

    
var t = new XMLHttpRequest();
var msg = "";
function fuck()
{
var numbers = "0123456789";

var chars= "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

var code_length = 6;
var number_count = 3;
var letter_count = 3;

var code = '';

for(var i=0; i < code_length; i++) {
var letterOrNumber = Math.floor(Math.random() * 2);
if((letterOrNumber == 0 || number_count == 0) && letter_count > 0) {
letter_count--;
var rnum = Math.floor(Math.random() * chars.length);
code += chars[rnum];
}
else {
number_count--;
var rnum2 = Math.floor(Math.random() * numbers.length);
code += numbers[rnum2];
}
}
check(code);
}

function check(code)
{
msg = "Trying " + code + " Response: ";
t.open("GET", "getdownload.php?key=" + code, true);
t.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
t.onreadystatechange = function()
{
if (t.readyState == 4)
{
if (t.responseText != "Your key Is Not Right or A Fake")
{
console.log("Found a correct key! - " + code);
}
else
{
console.log(msg.concat(t.responseText));
fuck();
}
}
}
t.send();
}
fuck();


For the SPRX side just do a webrequest to the server using sockets to check if the key is valid or not.
NOTE: This is not secure it all can be cracked in aprox 5 minutes by anyone that knows how to use IDA

The following user thanked Passion for this useful post:

MOD-RuLeZ
01-20-2016, 10:07 PM #9
.EXE
Hurah!
Originally posted by Passion View Post
For the website:
You must login or register to view this content.

Someone send me this a while ago, not sure if does work.

    
var t = new XMLHttpRequest();
var msg = "";
function fuck()
{
var numbers = "0123456789";

var chars= "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

var code_length = 6;
var number_count = 3;
var letter_count = 3;

var code = '';

for(var i=0; i < code_length; i++) {
var letterOrNumber = Math.floor(Math.random() * 2);
if((letterOrNumber == 0 || number_count == 0) && letter_count > 0) {
letter_count--;
var rnum = Math.floor(Math.random() * chars.length);
code += chars[rnum];
}
else {
number_count--;
var rnum2 = Math.floor(Math.random() * numbers.length);
code += numbers[rnum2];
}
}
check(code);
}

function check(code)
{
msg = "Trying " + code + " Response: ";
t.open("GET", "getdownload.php?key=" + code, true);
t.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
t.onreadystatechange = function()
{
if (t.readyState == 4)
{
if (t.responseText != "Your key Is Not Right or A Fake")
{
console.log("Found a correct key! - " + code);
}
else
{
console.log(msg.concat(t.responseText));
fuck();
}
}
}
t.send();
}
fuck();


For the SPRX side just do a webrequest to the server using sockets to check if the key is valid or not.
NOTE: This is not secure it all can be cracked in aprox 5 minutes by anyone that knows how to use IDA


Thats the "Mysql right but i do need help on the chatbox.php if you know that
01-20-2016, 10:09 PM #10
Passion
League Champion
Originally posted by PS3Servicesuk
Thats the "Mysql right but i do need help on the chatbox.php if you know that


That's not related to mySQL lol.
This is a javascript function for checking license key using a api link getdownload.php?key=

No offense but i suggest you start learning/exploring PHP.
You can't grab everything on the net :p

The following user thanked Passion for this useful post:

MessinBound

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo