Down the rabbit hole: redpill code
August 19th, 2008 by Blu:RayNe
Someone should really print this on a T-Shirt. You know Disney, “New” Viacom, TimeWarner, News Corporation, Bertelsmann AG, and General Electric together own more than 90% of the media holdings in the United States. I have no numbers for the world here, but just do a little research
/* VMM detector, based on SIDT trick
* written by joanna at invisiblethings.org
*
* should compile and run on any Intel based OS
*
* http://invisiblethings.org
*/
* written by joanna at invisiblethings.org
*
* should compile and run on any Intel based OS
*
* http://invisiblethings.org
*/
#include <stdio.h>
int main () {
unsigned char m[2+4], rpill[] = "\x0f\x01\x0d\x00\x00\x00\x00\xc3";
*((unsigned*)&rpill[3]) = (unsigned)m;
((void(*)())&rpill)();
printf ("idt base: %#x\n", *((unsigned*)&m[2]));
if (m[5]>0xd0) printf ("Inside Matrix!\n", m[5]);
else printf ("Not in Matrix.\n");
return 0;
}
Sources
Filed under Netzwelt having