Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
320 views

What is the Dragon Book for Rootkits on Linux?

I recently came across this book called The Rootkit Aresenal by Bill Blunden that gives a detailed (I mean it!) description of the basics underlying rootkits and also goes about on how to design them ...
5
votes
2answers
2k views

Windows 7: Taking advantage of auto-elevation to elevate my own process?

From a July 2009 Technet article entitled Inside Windows 7 User Account Control, Mark Russinovish describes that it's possible for an application running as standard user to silently elevate and gain ...
3
votes
3answers
900 views

Detect And Remove Rootkit [closed]

What is the best (hopefully free or cheap) way to detect and then, if necessary, remove a rootkit found on your machine?
0
votes
0answers
19 views

How to read clipboard data through the handle returned by NtUserGetClipboard in a kernel driver?

I managed to use NtUserGetClipboardData to get the handle. In usermode, it is easy to be dealt with GlobalLock, but in kernel mode it seems don't work. The first thought of this was by using ...
0
votes
1answer
352 views

set_memory_* functions in Linux Kernel >=2.6.25

I'm doing research about rootkits and I have received a lot of warnings like` "BUG: unable to handle kernel paging request at [addr]" when I tried to attach my own function to ...