Jump to content
  • 0

script password


malekpw
 Share

Question

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

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

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
Link to comment
Share on other sites

  • 0

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.

Link to comment
Share on other sites

  • 0

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
Link to comment
Share on other sites

  • 0
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

 

Link to comment
Share on other sites

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
 Share

×
×
  • 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.