This folder is full of test programs for real time detection

dirtybits.c - returns the number of dirty bits for all kernel pages

scanall.c - measures the time it takes to maps and unmap all kernel pages

simple.c - simple rootkit detector which monitors the system call table
	Copies the current system call table to an array
	Switches to a monitoring mode
	Compares the current system call table to this array

simple_realall.c - real time version of the simple.c
	This file maps and unmaps every page

simple_real.c - optimization of above
	Instead of mapping, use a for loop on the page table entries

simplerootkit.c - simple rootkit which modifies the system call table

walk.c - page table walking code

