Search:

Type: Posts; User: BobS0327

Search: Search took 0.02 seconds.

  1. Rootkits are not inherently bad. It's just a...

    Rootkits are not inherently bad. It's just a technology. Honest or dishonest (good or bad) is determined by the end users. For example, law enforcement may use a rootkit installed on a target...
  2. It's a common technique used by rootkit writers....

    It's a common technique used by rootkit writers. The FindNextfile function calls NtQueryDirectoryFile from ntdll.dll. So, if the user hooks NtQueryDirectoryFile, the rootkit's code can execute in...
  3. #include #include ...

    #include <windows.h>
    #include <stdio.h>

    typedef LONG NTSTATUS;
    typedef NTSTATUS *PNTSTATUS;
    typedef DWORD ULONG_PTR;

    #define STATUS_SUCCESS (NTSTATUS)0x00000000L
    #define NT_SUCCESS(Status)...
Results 1 to 3 of 3