Results 1 to 10 of 10

Thread: disguise scripts

  1. #1
    Join Date
    Jul 2006
    Posts
    259
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default disguise scripts

    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"

  2. #2
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    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

    They are sisters...
    Runescape Classic

  3. #3
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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?

  4. #4
    Join Date
    Oct 2006
    Location
    New Zealand
    Posts
    423
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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

  5. #5
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    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.

  6. #6
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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.

  7. #7
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    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.

  8. #8
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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.

  9. #9
    Join Date
    Jul 2006
    Posts
    259
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well wat if i want to sell it
    "your always where you supposed to be"

  10. #10
    Join Date
    Feb 2007
    Location
    USA
    Posts
    667
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Change SCAR Disguise
    By Championship in forum OSR Help
    Replies: 7
    Last Post: 03-09-2009, 10:42 PM
  2. Add ranging to chicken killing scripts, or the cow killing scripts
    By canu44 in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 12-18-2007, 07:37 AM
  3. Bigfish's Random Scar Disguise
    By Bigfish58 in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 10-20-2006, 09:00 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •