Results 1 to 19 of 19

Thread: Account Stealer Checker

  1. #1
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Account Stealer Checker

    Account Stealer Checker
    This is a short and simple script I made to check for the instance of procedures that may be used to steal passwords.

    That does not necessarily mean that the procedures are being used to do that however. They can be used to check versions, download updates, etc.

    Current Version: 0.01

    Planned Updates:
    1. Check what page they are accessing (easy)
    2. Form (Highly improbable)
    3. Check if a variable is being set to a player's password. Ex: z := Players[?].Pass;


    Directions:
    1. Copy and paste the below script into a SCAR window.
    2. Click play.
    3. Select the path of the script you want to check.
    4. Click Open.
    5. Read the debug box.

    SCAR Code:
    Program New;
     
    var
      Counts : array [0..4] of integer;
      Params : array of string;
      ScriptPath, s : string;
      FileNum : integer;

    procedure Browse;
    var
      OpenDialog1 : TOpenDialog;
    begin
      OpenDialog1 := TOpenDialog.Create(nil);
      OpenDialog1.InitialDir := AppPath + 'Scripts/';
      OpenDialog1.Filter := 'SCAR Files | *.scar';
      if OpenDialog1.Execute then
       ScriptPath := OpenDialog1.FileName;
      OpenDialog1.Free;
    end;

    function Count(s1, s2 : string) : integer;
    var
      tmp : string;
    begin
      tmp := lowercase(s2);
      if pos(lowercase(s1), tmp) >= 1 then
      begin
        repeat
          if pos(lowercase(s1), tmp) >= 1 then
          begin
            inc(result);
            delete(tmp, pos(lowercase(s1), tmp), length(s1));
          end;
        until(pos(lowercase(s1), tmp) <= 0);
      end;
    end;


    begin
      ClearDebug;
      Browse;
      if ScriptPath = '' then
      begin
        Writeln('You did not select a file. Please restart and select a file.');
        TerminateScript;
      end;
     
      FileNum := OpenFile(ScriptPath, false);
      ReadFileString(FileNum, s, FileSize(FileNum));
      CloseFile(FileNum);
       
      Counts[0] := Count('getpage(', s);
      Counts[1] := Count('openwebpage(', s);
      Counts[2] := Count('posthttppage(', s);
      Counts[3] := Count('posthttppageex(', s);
      Counts[4] := Count('gethttppage(', s);
     
      Writeln('Scan complete.');
      Writeln('');
      Writeln('Found ' + IntToStr(Counts[0]) + ' instances of GetPage.');
      Writeln('Found ' + IntToStr(Counts[1]) + ' instances of OpenWebPage.');
      Writeln('Found ' + IntToStr(Counts[2]) + ' instances of PostHTTPPage.');
      Writeln('Found ' + IntToStr(Counts[3]) + ' instances of PostHTTPPageEx.');
      Writeln('Found ' + IntToStr(Counts[4]) + ' instances of GetHTTPPage.');
      Writeln('--');
      Writeln('Please note that if a script includes these procedures it does');
      Writeln('not always mean that it is used to steal account info.');
      Writeln('');
      Writeln('Thank you for using my script.');
     
    end.

  2. #2
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Nice, I was thinking of making one these but in C# program along time ago when alot of people tried stealing accounts.

  3. #3
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    heheh. buckley add me on msn? kylewollaston@hotmail.com

  4. #4
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice ;D

    but.. some people like Floor and Camo have legit webby's they post to..

    still works nicely

  5. #5
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Precisely why I addressed that issue when I said

    Quote Originally Posted by Da 0wner
    That does not necessarily mean that the procedures are being used to do that however. They can be used to check versions, download updates, etc.

  6. #6
    Join Date
    Oct 2006
    Location
    ithurtsithurtsithurtsithurts
    Posts
    2,930
    Mentioned
    7 Post(s)
    Quoted
    135 Post(s)

    Default

    Would it be possible to display which lines have the GET, open, or POST commands on them?

  7. #7
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Hey da 0wner, when you going to apply for members???
    Also could I use your browse function please?

  8. #8
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    heh, sure .

  9. #9
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Da 0wner View Post
    heheh. buckley add me on msn? kylewollaston@hotmail.com
    Yea, I get you when i get back from school .
    Feel like skipping really but yea.

  10. #10
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by senrath View Post
    Would it be possible to display which lines have the GET, open, or POST commands on them?
    Yes, most likely it would. I will try to do that in the next update.

  11. #11
    Join Date
    Jan 2008
    Location
    U.S.A
    Posts
    313
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Could this theoretically be used for me to hack my friends account?
    Will test most scripts, offering members account to certain scripters! PM Me.
    Also need helping making a powerminer, Pst/Aim me!

  12. #12
    Join Date
    Jan 2009
    Location
    Somewhere
    Posts
    240
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by goldrush655 View Post
    Could this theoretically be used for me to hack my friends account?
    You'll find that by looking at script. Dumb.

  13. #13
    Join Date
    Feb 2009
    Posts
    0
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Omg nice!

  14. #14
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by goldrush655 View Post
    Could this theoretically be used for me to hack my friends account?
    Hacking or any type of account stealing is not allowed here as it causes troubles most of the time.

    This can not be used to hack your friends account as it checks if the script is trying to access the internet in any way.

    I don't know why you would think that...

  15. #15
    Join Date
    Apr 2007
    Location
    England
    Posts
    313
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    because he doesnt know how to script, he doesnt know how to read the topic. He just saw the Title and was like "OMGRZ I C4N US3 TH1S 2 ST3AL MY FR13NDZ M0N3YZ 4ND P1X3LS!!!!

  16. #16
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Heh, yup :/. I don't like people like that.

  17. #17
    Join Date
    Apr 2007
    Location
    England
    Posts
    313
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    no one does.

    But on topic, great script, ingenius idea (i think thats the word)!

    Rep++

  18. #18
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Are you sure you Repped . I still have 110 and I've had that .

  19. #19
    Join Date
    Feb 2009
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    I Must say, this is a very useful scripts. I've downloaded a few off other sites and had to check them for password stealing parts myself. This saves time, Thanks.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Tea Stealer for Draynor
    By littethink in forum First Scripts
    Replies: 7
    Last Post: 01-10-2009, 05:03 PM
  2. Tea stealer - By N1ke!
    By Naike in forum RS3 Outdated / Broken Scripts
    Replies: 14
    Last Post: 09-15-2008, 08:31 PM
  3. Auto Varrock Tea Stealer!
    By Harry in forum RS3 Outdated / Broken Scripts
    Replies: 18
    Last Post: 07-08-2008, 02:39 PM
  4. Need help with my tea stealer
    By Lancelot074 in forum OSR Help
    Replies: 15
    Last Post: 02-21-2008, 12:48 AM
  5. Would anyone like a Zammy Wine Stealer?
    By mat_de_b in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 08-30-2007, 08:09 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
  •