[AntiHideToolz] BY GXSoft

Results 1 to 20 of 20
  1. #1
    Member REGNAL is offline
    MemberRank
    May 2007 Join Date
    virtualmu.orgLocation
    56Posts

    [AntiHideToolz] BY GXSoft

    That's it, we made a dll to block hidetoolz ... that blocks only the dll hidetoolz ...


    just give a simple hook


    without MORE


    Note: do not give much support to it!

    this was tested and working!

    100% credits to GXSoft - MuOnlineDev

    File(s) Attachment(s)

    http://www.muonlinedev.com/public/style_extra/mime_types/zip.gif killhidetoolz.rar


  2. #2
    The Fearless One Not4You is offline
    Super ModRank
    Oct 1973 Join Date
    3,270Posts

    Re: [AntiHideToolz] BY GXSoft

    Approved,

  3. #3
    Member andy_drei is offline
    MemberRank
    Mar 2007 Join Date
    68Posts

    Re: [AntiHideToolz] BY GXSoft

    can you offer more detalies ?

  4. #4
    Account Upgraded | Title Enabled! Bl4ck I0t4 is offline
    MemberRank
    Oct 2008 Join Date
    Moldova&IsraelLocation
    238Posts

    Re: [AntiHideToolz] BY GXSoft

    if you can renew the link cuase he is dead and which hook do we need to do with process or without ?

  5. #5
    Mulegend Server Mulegend is offline
    MemberRank
    May 2006 Join Date
    Montevideo - UruguayLocation
    461Posts

    Re: [AntiHideToolz] BY GXSoft

    nice, but, what is export init name?

  6. #6
    Enthusiast thanhdia is offline
    MemberRank
    May 2008 Join Date
    35Posts

    Re: [AntiHideToolz] BY GXSoft

    It not working

  7. #7
    Member brunoia is offline
    MemberRank
    May 2006 Join Date
    brasilLocation
    57Posts

    Re: [AntiHideToolz] BY GXSoft

    ellow im dev this dll, from GXSoft...im GXSoft owner (NaM4)

    so. to hook it, u can call from your main dll if u want... like

    LoadLibraryA("antihidetoolz.dll");

    or hook it like a glow.dll

    dont need a init name...

    just push and jmp to entry..


    cyao

    PS: ill post a screenshot with this dll working

  8. #8
    Mulegend Server Mulegend is offline
    MemberRank
    May 2006 Join Date
    Montevideo - UruguayLocation
    461Posts

    Re: [AntiHideToolz] BY GXSoft

    dont work for me.. loaded directly of main or in my dll..

  9. #9
    Member REGNAL is offline
    MemberRank
    May 2007 Join Date
    virtualmu.orgLocation
    56Posts

    Re: [AntiHideToolz] BY GXSoft

    works fine...

  10. #10
    Apprentice heroes1412 is offline
    MemberRank
    May 2010 Join Date
    23Posts

    Re: [AntiHideToolz] BY GXSoft

    dont work with XP

  11. #11
    Mulegend Server Mulegend is offline
    MemberRank
    May 2006 Join Date
    Montevideo - UruguayLocation
    461Posts

    Re: [AntiHideToolz] BY GXSoft

    This dont work and is a copy paste from another web... no?..
    lol...

    Code:
    program Project1;
    
    uses
      Windows,
      CommCtrl;
    
    function CheckHideToolz(): Boolean;
    {****************************************
    Must Uses CommCtrl
    By pathletboy
    2008.6.15
    *****************************************}
    var
      ToolBarHnd: Cardinal;
      hProc: HWND;
      dwPID: DWORD;
      lpCommon: Pointer;
      btnInfo: TTBBUTTON;
      dwBytes: DWORD;
      TrayIconCaption: array[0..512] of char;
      i, nBtnCount: Integer;
    begin
    //{$I VMP_BEGIN.INC}
      Result := False;
      ToolBarHnd := FindWindowEx(0, 0, 'Shell_TrayWnd', nil);
      ToolBarHnd := FindWindowEx(ToolBarHnd, 0, 'TrayNotifyWnd', nil);
      ToolBarHnd := FindWindowEx(ToolBarHnd, 0, 'SysPager', nil);
      ToolBarHnd := FindWindowEx(ToolBarHnd, 0, 'ToolbarWindow32', nil);
      if ToolBarHnd = 0 then
      begin
        Result := True;
        Exit;
      end;
      GetWindowThreadProcessId(ToolBarHnd, @dwPID);
      hProc := OpenProcess(PROCESS_VM_OPERATION or
        PROCESS_VM_READ or PROCESS_VM_WRITE, false, dwPID);
      lpCommon := VirtualAllocEx(hProc, nil, 4096,
        MEM_RESERVE or MEM_COMMIT, PAGE_READWRITE);
      nBtnCount := SendMessage(ToolBarHnd, TB_BUTTONCOUNT, 0, 0);
      for i := 0 to nBtnCount do
      begin
        ZeroMemory(@btnInfo, sizeof(btnInfo));
        WriteProcessMemory(hProc, lpCommon, @btnInfo, sizeof(btnInfo), dwBytes);
        SendMessage(ToolBarHnd, TB_GETBUTTON, i, LPARAM(lpCommon));
        ReadProcessMemory(hProc, lpCommon, @btnInfo, sizeof(btnInfo), dwBytes);
        SendMessage(ToolBarHnd, TB_GETBUTTONTEXT, btnInfo.idCommand,
          LPARAM(LPARAM(lpCommon) + sizeof(btnInfo)));
        ReadProcessMemory(hProc, Pointer(LPARAM(lpCommon) + sizeof(btnInfo)),
          @TrayIconCaption, 512, dwBytes);
        OutputDebugString(TrayIconCaption);
        if TrayIconCaption = 'HideToolz' then
        begin
          Result := True;
          Break;
        end;
      end;
      VirtualFreeEx(hProc, lpCommon, 0, MEM_RELEASE);
      CloseHandle(hProc);
    //{$I VMP_END.INC}
    end;
    
    begin
    //{$I VMP_BEGIN.INC}
      if CheckHideToolz then
        MessageBox(0,'HideToolz detected','JODETE',MB_OK);
    //{$I VMP_END.INC}
    end.
    Last edited by Mulegend; 13-08-10 at 02:01 AM.

  12. #12
    Member boboring is offline
    MemberRank
    Aug 2006 Join Date
    MalaysiaLocation
    65Posts

    Re: [AntiHideToolz] BY GXSoft

    any screenshot or guide to hook?

  13. #13
    el chilenito slipkorn13 is offline
    MemberRank
    Oct 2008 Join Date
    CHILELocation
    206Posts

    Re: [AntiHideToolz] BY GXSoft

    Link Offline Reup plss

  14. #14
    Account Upgraded | Title Enabled! buffon is offline
    MemberRank
    Dec 2008 Join Date
    UkraineLocation
    385Posts

    Re: [AntiHideToolz] BY GXSoft


  15. #15
    Proficient Member user_MU is offline
    MemberRank
    Nov 2008 Join Date
    152Posts

    Re: [AntiHideToolz] BY GXSoft

    Approved, thanks.

  16. #16
    Member brunoia is offline
    MemberRank
    May 2006 Join Date
    brasilLocation
    57Posts

    Re: [AntiHideToolz] BY GXSoft

    some preview from our protect sys work fine...

    enjoy

    YouTube - GXProtect - AntiHackTool

    srry but it is in portuguese, but you can see the protect is work perfectly

    cya

    hugs

  17. #17
    Member brunoia is offline
    MemberRank
    May 2006 Join Date
    brasilLocation
    57Posts

    Re: [AntiHideToolz] BY GXSoft

    Quote Originally Posted by Mulegend View Post
    This dont work and is a copy paste from another web... no?..
    lol...

    Code:
    program Project1;
    
    uses
      Windows,
      CommCtrl;
    
    function CheckHideToolz(): Boolean;
    {****************************************
    Must Uses CommCtrl
    By pathletboy
    2008.6.15
    *****************************************}
    var
      ToolBarHnd: Cardinal;
      hProc: HWND;
      dwPID: DWORD;
      lpCommon: Pointer;
      btnInfo: TTBBUTTON;
      dwBytes: DWORD;
      TrayIconCaption: array[0..512] of char;
      i, nBtnCount: Integer;
    begin
    //{$I VMP_BEGIN.INC}
      Result := False;
      ToolBarHnd := FindWindowEx(0, 0, 'Shell_TrayWnd', nil);
      ToolBarHnd := FindWindowEx(ToolBarHnd, 0, 'TrayNotifyWnd', nil);
      ToolBarHnd := FindWindowEx(ToolBarHnd, 0, 'SysPager', nil);
      ToolBarHnd := FindWindowEx(ToolBarHnd, 0, 'ToolbarWindow32', nil);
      if ToolBarHnd = 0 then
      begin
        Result := True;
        Exit;
      end;
      GetWindowThreadProcessId(ToolBarHnd, @dwPID);
      hProc := OpenProcess(PROCESS_VM_OPERATION or
        PROCESS_VM_READ or PROCESS_VM_WRITE, false, dwPID);
      lpCommon := VirtualAllocEx(hProc, nil, 4096,
        MEM_RESERVE or MEM_COMMIT, PAGE_READWRITE);
      nBtnCount := SendMessage(ToolBarHnd, TB_BUTTONCOUNT, 0, 0);
      for i := 0 to nBtnCount do
      begin
        ZeroMemory(@btnInfo, sizeof(btnInfo));
        WriteProcessMemory(hProc, lpCommon, @btnInfo, sizeof(btnInfo), dwBytes);
        SendMessage(ToolBarHnd, TB_GETBUTTON, i, LPARAM(lpCommon));
        ReadProcessMemory(hProc, lpCommon, @btnInfo, sizeof(btnInfo), dwBytes);
        SendMessage(ToolBarHnd, TB_GETBUTTONTEXT, btnInfo.idCommand,
          LPARAM(LPARAM(lpCommon) + sizeof(btnInfo)));
        ReadProcessMemory(hProc, Pointer(LPARAM(lpCommon) + sizeof(btnInfo)),
          @TrayIconCaption, 512, dwBytes);
        OutputDebugString(TrayIconCaption);
        if TrayIconCaption = 'HideToolz' then
        begin
          Result := True;
          Break;
        end;
      end;
      VirtualFreeEx(hProc, lpCommon, 0, MEM_RELEASE);
      CloseHandle(hProc);
    //{$I VMP_END.INC}
    end;
    
    begin
    //{$I VMP_BEGIN.INC}
      if CheckHideToolz then
        MessageBox(0,'HideToolz detected','JODETE',MB_OK);
    //{$I VMP_END.INC}
    end.
    and no... i not copy anybody... and my dll is not programmed with delphi/pascal... but in ASM and C++

    cya

    anyway, this pascal src u put... its easy to tease, coz its find from name of windows ^^ thats no good code =D

    srry for bad eng...
    Last edited by brunoia; 08-09-10 at 07:06 PM.

  18. #18
    Novice ngdungqn is offline
    MemberRank
    Apr 2010 Join Date
    3Posts

    Re: [AntiHideToolz] BY GXSoft

    i need a call load ????

  19. #19
    NN - Nord & Noob mauka is offline
    MemberRank
    Jul 2004 Join Date
    1,735Posts

    Re: [AntiHideToolz] BY GXSoft

    Quote Originally Posted by REGNAL View Post
    very funny post a download link to another forums atachament... and to download i need register
    why not use rapidshare or RZ forums atachaments?

  20. #20
    Member Netzo is offline
    MemberRank
    Jan 2007 Join Date
    United KingdomLocation
    803Posts

    Re: [AntiHideToolz] BY GXSoft

    Quote Originally Posted by brunoia View Post
    ellow im dev this dll, from GXSoft...im GXSoft owner (NaM4)

    so. to hook it, u can call from your main dll if u want... like

    LoadLibraryA("antihidetoolz.dll");

    or hook it like a glow.dll

    dont need a init name...

    just push and jmp to entry..


    cyao

    PS: ill post a screenshot with this dll working
    can you write a source how does you code look like in ollydbg?



Advertisement