Jump to content
  • 0

Question

Posted

hello guys, 

I have a script for a game with username and password secured but I wanna sell the script, the problem is that for example the password is abc, anyone who uses the script can use this password, but I only want my friend to use abc as password, I tried everything and nothing works, if you know why, reply or dm my instagram -> malekpw I pay you in paypal because I really need that not everyone uses the same password. Here is the picture of how I secured the script.

Screenshot_2021-08-31-07-53-43-1.png

11 answers to this question

Recommended Posts

  • 0
Posted

⚠️ if i understand you have an script ( i supose if u ask its because your not the creator ) if we consider that i think its a bad idea to ask that

  • 0
Posted (edited)

There is many methods you can make this done, in my case i use php to lock the script in a specific device model but the cons is anyone with the same model can access the script. before we used android device id it was more secure and unique but android 10+ restricted external app for accessing device id and IMEI. for example of devices id lock check the script bellow it detects any device model using php

script.lua

Edited by MAARS
  • 0
Posted

Yeah blocx I am the creator I have my code to edit but nothing worked

Thanks MAARS I'll take a look 

  • 0
Posted

So I make a website, type my phone model, and make the script say that if someone has not got the same model as me, the script ends?

  • 0
Posted

the script detect the phone model automaticaly all you need is to create a table with allowed device model then compare, if the device dont exist in the table then stop execution else output the script. all of this should be done in the server not in lua.

  • 0
Posted (edited)

just learn basic php

<?php

$model = "Here the dynamic device model name";

$devices = [
  "SM-J600FN",
  "GT-4000MN",
];

/*
Then you compare the device model that require the script with all device in your table
*/

$allowed = false;
foreach ($devices as $device) {
  if ($device === $model) {
    $allowed = true;
    break;
  }
}

if ($allowed) {
  echo "Output the script";
} else {
  echo "Your device is not allowed";
}

 

Edited by MAARS
  • 0
Posted

Omg thanks so I basically just type all that php in like pastebin.com then say gg.makeRequest to that php then it should work ur actually a hero😂

  • 0
Posted
On 8/31/2021 at 9:57 AM, malekpw said:

hello guys, 

I have a script for a game with username and password secured but I wanna sell the script, the problem is that for example the password is abc, anyone who uses the script can use this password, but I only want my friend to use abc as password, I tried everything and nothing works, if you know why, reply or dm my instagram -> malekpw I pay you in paypal because I really need that not everyone uses the same password. Here is the picture of how I secured the script.

Screenshot_2021-08-31-07-53-43-1.png

There is already general answer by MAARS, but for advanced protection you can see my vip service (that's paidfull) :

https://t.me/TopGEOYT/204b

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.