i was just wondering how you make a script need an authentication code in order to run like some pay scripts at moparisthebest and some functions in srl
i was just wondering how you make a script need an authentication code in order to run like some pay scripts at moparisthebest and some functions in srl
"your always where you supposed to be"
i dont there is a function or procedure as such for doing that
but there is something called an obfuscater or something like that that will help to scramble your script so others cant use it unless given a code
i dont know much about it but try googling it!- noob
Simple!
Just add this into your script as show below
SCAR Code:program SCARLines;
{.include SRL/SRL.scar}
begin
DisguiseScar('ScriptNameHere');
end.
And for Authentication purposes you can use the Scar Obfuscator which you can find by googling. I don't know much about it so wait to see if some one else posts about it.
Edit: Also you can get your script certified and encrypted by Dylock, Kaitnieks, [Freddy1990 (I think)] Contact one of them about it.
Edit2: Also try these for links.
Try Freddy's website Freddy1990.com , Dylock.net, or Kaitnieks.com.
For Obfuscator try the iBot site or is it impsoft.net?
Star has a working one but its not public, maybe you could ask him to obfuscate the script for you. with the auth code, why not just have a const the user sets and then somewhere in the middle of the script have a procedure like :
SCAR Code:const auth:=456789;
Procedure hihihi;
begin
if (auth = 456789)
then begin
setupssrl;
setupscriptorwateva;
end;
end;
instead of calling setupsrl; call hihihi;
no idea if that works and would be easy to crack, more difficult if it was obfused though
for auths, use this: (obfuscate it, ofcourse)
SCAR Code:if(getpage('www.authsite.com/auth.txt')=Readln('Auth?'))then
you really should do a whole php thing on your site, so it will lock down an auth to an IP...but the scar code stays somewhat the same. You could even have a php script dynamically generate a textfile with 'accepted' or 'void', then have people give you their IP's when they buy the script. Scar would connect to the php page, and it would check the incoming IP against a database of people who have bought the script. If the IP matches up, then they're accepted, if not, they're declined.
Most of an authsystem is in the php page you use, and the obfuscation you use. If either of these is crappy, your script will easily be cracked.
Starblaster is probably one of the most experienced scripters in this area
Interested in C# and Electrical Engineering? This might interest you.
Internet check isn't secure you can goto your Drivers and fake the url to get it to say accepted, or even more simple you could just Hex edit it to say accepted , So in other words I wouldn't release something if it wasn't open source.
You can't fake a page if you don't know what url you're faking
Encrypt the url, then decrypt it on runtime
Obfuscate everything like crazy
Put random auth checks in essential procedures
Make tons of fake auth checks & procedures
Use multiple sites to store the auths on, and check each one
Put random text inside the auth sites to be checked
Record all IP's that use your script
Interested in C# and Electrical Engineering? This might interest you.
It's not that hard to find out the URL, The easiest way is to open your firewall settings in SCAR, the next way would be to bridge your connection and have all incoming data logged. Also Obbing is insecure to, it can easily be deobbed with the propper programs.
Well the following is just my opinion:
If it isn't open source then don't release it to the public.
well wat if i want to sell it
"your always where you supposed to be"
Then sell it to nubs who don't know how to deob or don't know what they are looking for to crack the auth. Unless you come up with a killer script like star's stress miner, most advanced players aren't going to be your target consumers anyway.
There are currently 1 users browsing this thread. (0 members and 1 guests)