Copyright my own script

shaymiller

Regular Member
Joined
Dec 3, 2016
Messages
456
Reaction score
45
I’m planning to sell my own script I created. I want to sell and want to make sure no one else can resell it. Something like a key will be required to run it

I know people can easily null a script. Will it be possible to keep one file hosted at my site so that people can’t null it?

let’s say config.php is required & I don’t sell that file & have people link it off my host. That way I can see who is using my script.
 
Instead of copyrighting it; think of like you said like a key to be required when running it.

You can also obfuscate your script with something like an .exe file for example in order for people to not see the code of your script.

A recommendation from me (if you have an interface), use logins with Firebase. It's free and work well.

Think about how you will prevent people from sharing their logins and/or keys though.
 
you can use something like ioncube to protect your script.
 
Hi mate,

Duplicate your script with a license code

You can try building a "linker" to the script with ip address marked. Any additional ip to the duplicated script will flag an alert.

However, if someone nulled your script, I'm afraid that's nothing you could do. The only way around is to send them a copier that links to your script directly (so any additional ip addresses you can "boot" them out) .
 
Whatever you do, its crackable. You can slow them down but not stop them

and asking this question make wonder whats the quality of your script. Or you just a reseller tryna hide the fact. Hmm
 
Whatever you do, its crackable. You can slow them down but not stop them

and asking this question make wonder whats the quality of your script. Or you just a reseller tryna hide the fact. Hmm

More like FactBee :D
 
Nothing you do will be full proof but you can implement it in a way where your script accepts api requests and returns key features or information that is vital for the app. You can take some easy measures that validate a license key and returns a self signed token that is used to validate incoming requests to your server.
 
Copyrights are only useful if you have the money for the lawyers to pursue any lawsuits, otherwise just make it common license and you're good to go. Use a compiled language so it's just a little bit harder to figure out what's going on under the hood.
 
Following, would like to know more about the copywriting stuff :)
 
+1 for @cnick79's method, make a REST API or something like that, and your script must interact with it in order to work.
 
That's why people invented keys for line 3 machines or what you will accept..

A call home script or login is also good idea.
 
Back
Top