|
Post by incendie on Mar 8, 2017 23:26:59 GMT
So i created a server that can check email and password, but this require the user to enable network connection in the settings. I want more protection for my script.
I find this too much trouble for most user who just want to run the script. Is there a simpler way of just enabling network on the get go. Like a separate ankulua app with network already turned on
|
|
|
Post by qq12345 on Mar 9, 2017 1:02:48 GMT
So i created a server that can check email and password, but this require the user to enable network connection in the settings. I want more protection for my script. I find this too much trouble for most user who just want to run the script. Is there a simpler way of just enabling network on the get go. Like a separate ankulua app with network already turned on I think the reason that's a requirement is the script could potentially send other information(pictures maybe?) as well? Is there no way to have an encrypted file in the script folders that you could match a license key against? Not fail proof since its potentially crackable, but if its more for deterrence it should suffice I think? That might also require an update each time you sell a new license though... unless you just put them in before hand and just dole them out. No idea if its even viable, though as I'm not familiar with lua at all.
|
|
|
Post by AnkuLua on Mar 9, 2017 2:03:36 GMT
So i created a server that can check email and password, but this require the user to enable network connection in the settings. I want more protection for my script. I find this too much trouble for most user who just want to run the script. Is there a simpler way of just enabling network on the get go. Like a separate ankulua app with network already turned on Security is one of the most important things that we care. It's designed to enable network functions in settings.
|
|
|
Post by incendie on Mar 9, 2017 2:08:21 GMT
So i created a server that can check email and password, but this require the user to enable network connection in the settings. I want more protection for my script. I find this too much trouble for most user who just want to run the script. Is there a simpler way of just enabling network on the get go. Like a separate ankulua app with network already turned on Security is one of the most important things that we care. It's designed to enable network functions in settings. Im still learning about MySql and how to handle data. How do I send data to mysql to check username and password. All i can use is getHttp() and getHttpDownload(). None of these can send info to check with the database.
|
|
|
Post by AnkuLua on Mar 9, 2017 2:12:30 GMT
It's beyond the scope of this forum.
It's done on the server side. Nothing related with lua. Please google PHP mysql. There are many tutorials and examples.
|
|
|
Post by Mercobots on Mar 9, 2017 11:04:42 GMT
Security is one of the most important things that we care. It's designed to enable network functions in settings. Im still learning about MySql and how to handle data. How do I send data to mysql to check username and password. All i can use is getHttp() and getHttpDownload(). None of these can send info to check with the database. you can send username and password by http parameter using getHttp() and on server side you check the security and only return the response to lua , is not 100% safe but it will work, on server side use PDO_MYSQL to reinforce security you have a tons of info in google about this
|
|