Page 1 of 2 12 LastLast
Results 1 to 25 of 27

Thread: My account was hacked by Simba or SMART

  1. #1
    Join Date
    May 2012
    Location
    John's Creek, Georgia, United States
    Posts
    392
    Mentioned
    0 Post(s)
    Quoted
    86 Post(s)

    Default My account was hacked by Simba or SMART

    Today, i logged in with 98 fletching. I started up SMART mananger in soul wars using SWfletch. Logged on 6 hrs later and know i have 0 Coins. Not sure what happened but I have only used Simba on that account using SMART Manager. I am the original owner. Not sure but seems fishy now

    Simba Code:
    program SWFletch;

    {$DEFINE SMARTManager}

    // SMARTManager Restarter

    procedure SMARTManager;
    var
      ioPath: string;
      ioFile: Integer;
    begin
      ioPath := 'C:\Users\Abhishek\Downloads\TmpScripts\369511.crashed';
      try
        ioFile := RewriteFile(ioPath, False);
      except
        Writeln('SmartManager Failed!');
      end;
      CloseFile(ioFile);
    end;


    {*******************************************************************************
    program SWFletch;
    by; Er1k - edits by Harry
    Description: Lightweight generic bow fletcher/shafter/headless arrow maker
      Keep logs in first bank slot. Have more than enough.
    Version: 1.02 - fixed knife for Bonfire update (May 10 2012)
    *******************************************************************************}

    {$DEFINE SRL5}
    {$DEFINE SMART}
    {$I SRL/SRL/misc/SMART.simba}
    {$I SRL/SRL.simba}

    //{$DEFINE DEBUG}      //uncomment if you need debug info
    //{$DEFINE DEBUG_DRAW} //uncomment if you need debug info

    {$IFDEF DEBUG_DRAW}
    {$I SRL/SRL/misc/debug.simba}
    {$I SRL/SRL/misc/paintsmart.simba}
    {$ENDIF}

    const
      NumbOfPlayers= 1;
      StartPlayer= 0;

      WatchaDoing = 'long'; // long, shaft, headless - keep it at long

      SRLStats_Username = '';
      SRLStats_Password = '';

      YourBasicProfits = 55; // how much gp profit per log? (70 gp=maple long u's)

      //SMART Setup
      SmartWorld = 0;
      Members = True;
      SignedClient = True;
      HighDetail = False;

    var startXP: integer;
    var dtm,StatsTimer,gountil,stacksize,profitz: integer;

    procedure DeclarePlayers;
    var i:integer;
    begin
      NumberOfPlayers(NumbOfPlayers);
      CurrentPlayer := StartPlayer;

      with Players[0] do
      begin
        Name        := 'Username22';
        Pass        := 'trdafge';
        Nick        := 'ffe';
        Pin         := '1169';
        Active      := True;
        Member      := True;
      end;

    end;

    procedure DoLogin;
    var t: integer;
    begin
      MarkTime(t);
      while (not LoggedIn) do
      begin
        wait(2000+Random(2000));
        if LogInPlayer then
          break;
        wait(10000+random(500));
        if (TimeFromMark(t) > 180000) then
        begin
          writeln('Failed to login after 180s... Terminating');
          TerminateScript;
        end;
      end;
    end;

    procedure WaitTillStationary;
    begin
      if not LoggedIn then Exit;
      repeat
        wait(200+random(50));
      until not IsMoving;
    end;

    procedure ProgressReport(var startXP: integer);
    var gain,profithr: integer;
    begin
      gain := GetXPBarTotal- startXP;
      {$IFDEF DEBUG}
      {$ENDIF}

      writeln('Time running: ' + TimeRunning);
      writeln('Exp Gained: ' + IntToStr(gain));
      writeln('Est XP/Hr: ' + toStr(Round(((gain) / (GetTimeRunning / 1000)) * 3600)));
      writeLn('Profit Gained: '+toStr(Profitz));
      profithr:= Round(((profitz) / (GetTimeRunning / 1000)) * 3600);
      writeLn('Profit/Hr: '+toStr(profithr));
    end;

    function InvFullEx: boolean;
    var i, X, Y: Integer;
        TB: TBox;
    begin
      Result:=False;
      for i:=1 to 28 do
      begin
        TB := InvBox(I);
        if not FindColor(x, y, srl_outline_black, TB.x1, TB.y1, TB.x2, TB.y2) then
          Exit;
      end;
      Result:=True;
    end;

    function BankScreenEx(pin: string): boolean;
    var t: integer;
    begin
      MarkTime(t);
      repeat
        if PinScreen then
          InPin(pin);
        if BankScreen then
          break;
        wait(100);
      until TimeFromMark(t) > 5000;
      Result:= BankScreen;
    end;

    function BankAndWithdraw: boolean;
    var v: TVariantArray;
    begin
      Result:=False;
      if (WatchaDoing = 'headless') then
      begin
        Result := True;
        Exit;
      end;
      if OpenBankChest(SRL_BANK_SW) then
      begin
        v:=[players[currentplayer].Pin];
        if WaitFuncEx('BankScreenEx', v, 200, 3000) then
        begin
          DepositAll;
          while getBankItemAmount(0, 0) = 0 do
            wait(200);
          if GetBankItemAmount(0, 0) < 29 then
          begin
            writeln('Out of materials - Logout');
            Logout;
            TerminateScript;
          end;
          Withdraw(0, 0, 0);
          incEx(Profitz,yourBasicProfits*28);
         // if WaitFunc(@InvFullEx, 200, 3000) then
            Result:=CloseBank;
        end;
      end;
    end;

    function watDo:boolean;
    begin
      Result := False;
      if (GetColor(263, 448)=2070783) then // knifens
      begin
        MouseBox(226, 406, 296, 453, 1);
        Wait(1000+Random(2000));
      end;
      if (WatchaDoing = 'headless') then  // todo: stack count for headless is messed up- might infinite loop
      begin
        if (GetColor(145, 371)=16777215) then // 15 headless
        begin
          stacksize := GetAmountBox(InvBox(2));
          if (random(2)=0) then
            gountil := (stacksize-120)
          else
            gountil := (stacksize-105);
          if (stacksize<14) then
          begin
            repeat
              WriteLn('You have not enough stack in your slot2. Fix this.');
              Wait(60000);
            until false;
          end;
          writeln('We have '+toStr(stacksize)+' feathers/shafts. We will go until '+toStr(gountil)+'.');
          MouseBox(219, 405, 297, 453, 1);
          Result := True;
          Wait(100+Random(1000));
        end;
      end else
      if (GetColor(147, 365)=16777215) then // what to make
      begin
        if (WatchaDoing = 'long') then
          MouseBox(222, 405, 300, 453, 1) else // longs
        if (WatchaDoing = 'shaft') then
          MouseBox(71, 401, 149, 457, 1) else // shafts
            writeLn(WatchaDoing+' is invalid!');
        Result := True;
        Wait(100+Random(1000));
      end;
    end;

    procedure RandomRClickH; // phantombmx/EvilChicken - removed inv clicking
    var
      M: Byte;
      Inv: Boolean;
      bx,by: integer;
    begin
      if (not LoggedIn) then exit;
      M := MouseSpeed;
      MouseSpeed := 7 + Random(25);
      bx := Random(MIX2);
      by := Random(MIY2);
      if PointInBox(point(bx,by),inttobox(MSX1,MSY1,msx2,msy2)) then
      begin
        Mouse(bx, by, 0, 0, False);
        if (Random(3) > 0) then
          Inv := ChooseOption('xamine');
        if (not Inv) then ChooseOption('ancel');
      end
      else
        MMouse(bx, by, 0, 0);
      MouseSpeed := M;
    end;

    procedure AntiBan_Short(disg:string; waitz:integer);
    begin
      while (waitz > 0) do
      begin
        status(disg+': '+tostr(waitz)+'ms');
        case (Random(200)) of
          0: begin RandomRClickH; Inc(Players[CurrentPlayer].Integers[2]); end;
         //1: begin MouseSpeed := MOUSE_SPEED + Random(MOUSE_SPEED_RANDOMNESS); Inc(Players[CurrentPlayer].Integers[2]); end;
          2: begin if (Random(2) = 0) then PickUpMouse; Inc(Players[CurrentPlayer].Integers[2]); end;
          3..200: begin
            wait(1);
          end;
        end;
        Wait(100+random(500));
        waitz:=waitz-(100+random(500));
      end;
    end;

    procedure Fletch;
    var x, y, t{, dtm}: integer;
    v: TVariantArray;
    begin
      if (WatchaDoing <> 'headless') then
        MMouseItem(1);
      if (WatchaDoing <> 'headless') then
        WaitFunc(@InvFullEx, 100, 3000)
      else
        MouseItem(2, mouse_left);
      MouseItem(1, mouse_left);
      wait(10+Random(100));
    //  DTM := DTMFromString('mwQAAAHic42RgYOhjYmDoBeJpQDwTiGcA8VwofxIQdwHxa0YGhkdAfB+InwLxSyD+AMSfgfgLEH8HYlN9AaBpTHjxfwbCgJEIDAcAk5APKg==');
    //  v:=[2070783, 0, MCX1, MCY1, MCX2, MCY2, X, Y, 'nife', StatChars, ClickLeft];
    //  if WaitFuncEx('FindTextTPAEx', v, 200, 3000) then
    //    wait(500);
    //  v:=[2070783, 0, MCX1, MCY1, MCX2, MCY2, X, Y, 'long', StatChars, ClickLeft];
      if WaitFunc(@watDo, 100, 10000) then
      begin
        MarkTime(t);
        repeat
          AntiBan_Short('antibane',1000+Random(1000));
          if (TimeFromMark(StatsTimer) > 360000) then // 6 minutes.
          begin
            Stats_Commit;
            MarkTime(StatsTimer);
            WriteLn('<! Sent stats in!');
          end;
          findspinticket;
          if (WatchaDoing <> 'headless') then
            if not FindDTM(dtm, x, y, MIX1, MIY1, MIX2, MIY2) then
              break;
          if (WatchaDoing = 'headless') then
            if (GetAmountBox(InvBox(2)) <= gountil) then
              Break;
        until TimeFromMark(t) > 120000;
      end;
    //  FreeDTM(dtm);
    end;

    procedure DoWork;
    var action: string;
    begin
      action:= 'bank';
      while LoggedIn do
      begin
        case action of
          'bank': begin if BankAndWithdraw then action:= 'work';
                    ProgressReport(startXP);
                  end;
          'work': begin Fletch; action:='bank'; end;
        end;
      end;
    end;

    begin
      Smart_Server := SmartWorld;
      Smart_Members := Members;
      Smart_Signed := SignedClient;
      Smart_SuperDetail := HighDetail;

      setupSRL;
    SRL_Procs[srl_OnRSUpdate] := @SMARTManager; // On rs update call smartmanager restart
      if (SRLStats_Username = '') then
        SetupSRLStats(1051, 'Anonymous', 'anon1337')
      else
        SetupSRLStats(1051, SRLStats_Username, SRLStats_Password);
      SmartSetRefresh(20);
      if (WatchaDoing <> 'long') and (WatchaDoing <> 'shaft') and (WatchaDoing <> 'headless') then
      begin
        WriteLn('Wrong value for const WatchaDoing. Bye bye!');
        Wait(60000);
        TerminateScript;
      end;
      DeclarePlayers;
      DoLogin;
      if (WatchaDoing <> 'headless') then
      begin
        Wait(4000+Random(4000));
        SetAngle(SRL_ANGLE_HIGH);
        Wait(4000+Random(4000));
        SetAngle(SRL_ANGLE_HIGH);
      end;
      ToggleXPBar(true);
      startXP:=getXPBarTotal;
      ProgressReport(startXP);
      dtm:= DTMFromString('mwQAAAHic42RgYOhjYmDoBeJpQDwTiGcA8VwofxIQdwHxa0YGhkdAfB+InwLxSyD+AMSfgfgLEH8HYlN9AaBpTHjxfwbCgJEIDAcAk5APKg==');
      DoWork;
      FreeDTM(dtm);
      WriteLN('We ended lol wat');
      SmartgetFieldObject(1488,'crash'); // will crash SMART (and Simba).
      Wait(5000);

    end.
    Last edited by Physic; 06-10-2012 at 11:35 PM.

  2. #2
    Join Date
    Mar 2012
    Posts
    105
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol

    those magical fairies inside the script must have ran off with your password again!

  3. #3
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    "My ignorance has caused my account to be hacked"

    FTFY.

    Let's see the script you used. We can then verify that it wasn't used to steal account details ruling out Simba. I don't know much about SMART Manager but I remember it being written by a reputable and old member from here.
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  4. #4
    Join Date
    Sep 2007
    Location
    British Columbia, Canada
    Posts
    4,047
    Mentioned
    1 Post(s)
    Quoted
    2 Post(s)

    Default

    post the scripts you are using or read it your self to see if they hacked you.
    Oh Hai Dar

  5. #5
    Join Date
    Dec 2011
    Posts
    237
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Physic View Post
    Today, i logged in with 98 fletching. I started up SMART mananger in soul wars using SWfletch. Logged on 6 hrs later and know i have 0 Coins. Not sure what happened but I have only used Simba on that account using SMART Manager. I am the original owner. Not sure but seems fishy now
    i have honestly never heard of someone getting hacked on simba. I have been useing mutiple scripts for months and months now on a daily baisis. I know it looks as though something to do with simba hacked u but i seriously doubt it mate. I am very sorry for u though mate! Getting hacked sucks
    "The holy grail is to spend less time making the picture then it takes poeple to look at it"- Banksy

  6. #6
    Join Date
    Mar 2012
    Location
    Color :D
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Not gonna happen with a script that hasn't been update for almost a month, and modded by a moderator lol.

  7. #7
    Join Date
    May 2012
    Location
    John's Creek, Georgia, United States
    Posts
    392
    Mentioned
    0 Post(s)
    Quoted
    86 Post(s)

    Default

    I will see but this is no joke. No trolls please im posting it now

  8. #8
    Join Date
    May 2012
    Location
    John's Creek, Georgia, United States
    Posts
    392
    Mentioned
    0 Post(s)
    Quoted
    86 Post(s)

    Default

    I had over 100M on that 1 account on which i was getting 99 fletch and logged in all my money was gone and I was in edgeville

  9. #9
    Join Date
    Dec 2011
    Posts
    237
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    that really sucks bro im extremely sorry for u dude. Getting hacked is the worst.
    "The holy grail is to spend less time making the picture then it takes poeple to look at it"- Banksy

  10. #10
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    You probably downloaded a RAT, or hit with a Java Driveby.

  11. #11
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Well, I've used Simba for nearly 6 months now and haven't got hacked.
    I wouldn't rule it out though, any recent downloads that you've done?

    And all the others saying

    omfggf lololl u were a st0pid prck woh donloaded vir8s3s.
    You have no proof of that guys, anything could be the case.
    Did you get any screenshots?

  12. #12
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Nothing malicious in the script.
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  13. #13
    Join Date
    Feb 2012
    Location
    Bboy Vil
    Posts
    319
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Take time to really think about things you've downloaded. Websites you've visited or any sort of thing that may have also gotten you hacked.

  14. #14
    Join Date
    May 2012
    Location
    John's Creek, Georgia, United States
    Posts
    392
    Mentioned
    0 Post(s)
    Quoted
    86 Post(s)

    Default

    Whatever it was im done with rs. I have lost my entire bank twice and im not pulling myself through it again? any decent mmorpgs i can try out?

  15. #15
    Join Date
    Jan 2012
    Posts
    713
    Mentioned
    3 Post(s)
    Quoted
    9 Post(s)

    Default

    You don't get hacked by any of the clients that are out its always the users fault, unless the script has a password stealer.
    You most likely logged into the client wrong with your info in and it type it out in-game, I've seen that happen plenty of times and everyone always blames the client.

  16. #16
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    @Shay, lets be honest, noones calling him a stupid prick...

    Edit : did you get a ip?

  17. #17
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Quote Originally Posted by pur3b100d View Post
    @Shay, lets be honest, noones calling him a stupid prick...

    Edit : did you get a ip?
    I had to give an example

  18. #18
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    Quote Originally Posted by Shay View Post
    I had to give an example
    well then say "thinking" next time or maybe not at all

  19. #19
    Join Date
    Sep 2007
    Location
    British Columbia, Canada
    Posts
    4,047
    Mentioned
    1 Post(s)
    Quoted
    2 Post(s)

    Default

    try aion 2.0
    Oh Hai Dar

  20. #20
    Join Date
    Jan 2011
    Posts
    151
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Eve Online, they will LOVE you over there.

  21. #21
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Quote Originally Posted by boobooo42 View Post
    Eve Online, they will LOVE you over there.
    I played this for a while, was an epic game.

  22. #22
    Join Date
    Oct 2011
    Location
    Australia, Vic
    Posts
    1,517
    Mentioned
    2 Post(s)
    Quoted
    120 Post(s)

    Default


    I thought it said Sin For a moment

  23. #23
    Join Date
    Jan 2011
    Posts
    151
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by Shay View Post
    I played this for a while, was an epic game.
    It still is, and this winter they are going to link it up with Dust 514. Will be the first ever PC MMO/ PlayStation FPS combo tried. Make money in Eve and finance mercs in Dust to kill htings planet side, or fly you ship over to the planet and supply orbital bombardments.

  24. #24
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Quote Originally Posted by GOOGLE View Post
    You don't get hacked by any of the clients that are out its always the users fault, unless the script has a password stealer.
    You most likely logged into the client wrong with your info in and it type it out in-game, I've seen that happen plenty of times and everyone always blames the client.
    There was an update 1/2 years ago that will hide ur password if u attempt to type it out.

    Simba and everything related to it are open source, u can always decompile and check the source for malicious code if u think Simba really hack u. U can get a jdb as easy as by just visiting a website and allowing a plugin (that appears at the top of the page) to be installed. I'd suggest that u reformat ur com and
    do not allow any suspicious plugins to be installed in the future.

  25. #25
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Quote Originally Posted by John View Post

    I thought it said Sin For a moment
    Same :S

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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