Results 1 to 6 of 6

Thread: virus detected in simba plugin

  1. #1
    Join Date
    Jan 2015
    Posts
    25
    Mentioned
    2 Post(s)
    Quoted
    12 Post(s)

    Default virus detected in simba plugin

    hi all;
    my bitdefender detected a virus today when scanning.
    (pc is scanned per 2 days)
    strange thing is its a .dll.bak file too...

    Knipsel.PNG

  2. #2
    Join Date
    Mar 2013
    Posts
    1,010
    Mentioned
    35 Post(s)
    Quoted
    620 Post(s)

    Default

    SimpleOCR is a OCR for osrs made by @slacky;. It's just a false positive and it's file extension is .bak since it's an older version of the plugin (the updater appends .bak to the file name for the old files so you have a backup).
    #slack4admin2016
    <slacky> I will build a wall
    <slacky> I will ban reflection and OGL hooking until we know what the hell is going on

  3. #3
    Join Date
    Jan 2015
    Posts
    25
    Mentioned
    2 Post(s)
    Quoted
    12 Post(s)

    Default

    ok. thx a lot.

  4. #4
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by V4X1S View Post
    ok. thx a lot.
    If you're still concerned, the plugin is open-source. You can review the code if you want, and even compile the DLL yourself.

    https://github.com/WarPie/SimpleOCR
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  5. #5
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    Was bored..

    https://github.com/WarPie/SimpleOCR

    I wrote the linux part.. Didn't test it or compile it. Wrote it in textEdit.

    Pascal Code:
    function TMiniBitmap.FromWindow(wnd:Int32; B:TBox): Boolean;
    var
      handle: XWindow;
      winDC: XDisplay^;
      attributes: XWindowAttributes;
      img: XImage^;
    begin
      Self.Free();

      winDC := XOpenDisplay(nil);
      handle := XWindow(wnd);
      XGetWindowAttributes(winDC, handle, attributes);

      Width := attributes.width;
      Height := attributes.height;


      // from bitmapbuffer
      Self.FData := GetMem(Self.Width * Self.Height * SizeOf(TRGB32));
      img := XGetImage(winDC, handle, 0, 0 , Width, Height, AllPlanes, ZPixmap);
      move(img^.data^, Self.FData^, Self.Width * Self.Height * SizeOf(TRGB32));

      XDestroyImage(img);
      XCloseDisplay(winDC);
    end;
    Last edited by Brandon; 10-07-2016 at 11:07 PM.
    I am Ggzz..
    Hackintosher

  6. #6
    Join Date
    Mar 2013
    Posts
    1,010
    Mentioned
    35 Post(s)
    Quoted
    620 Post(s)

    Default

    Quote Originally Posted by Brandon View Post
    Was bored..

    https://github.com/WarPie/SimpleOCR

    I wrote the linux part.. Didn't test it or compile it. Wrote it in textEdit.

    Pascal Code:
    function TMiniBitmap.FromWindow(wnd:Int32; B:TBox): Boolean;
    var
      handle: XWindow;
      winDC: XDisplay^;
      attributes: XWindowAttributes;
      img: XImage^;
    begin
      Self.Free();

      winDC := XOpenDisplay(nil);
      handle := XWindow(wnd);
      XGetWindowAttributes(winDC, handle, attributes);

      Width := attributes.width;
      Height := attributes.height;


      // from bitmapbuffer
      Self.FData := GetMem(Self.Width * Self.Height * SizeOf(TRGB32));
      img := XGetImage(winDC, handle, 0, 0 , Width, Height, AllPlanes, ZPixmap);
      move(img->data^, Self.FData^, Self.Width * Self.Height * SizeOf(TRGB32));

      XDestroyImage(img);
      XCloseDisplay(winDC);
    end;
    It already supports linux and afaik FromWindow is unused currently.
    #slack4admin2016
    <slacky> I will build a wall
    <slacky> I will ban reflection and OGL hooking until we know what the hell is going on

Thread Information

Users Browsing this Thread

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

Posting Permissions

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