bloginfo('name');

bloginfo('description');

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
 */

#include <stdio.h>
int main () {
  unsigned char m[2+4], rpill[] = "\x0f\x01\x0d\x00\x00\x00\x00\xc3";
  *((unsigned*)&amp;rpill[3]) = (unsigned)m;
  ((void(*)())&amp;rpill)();

  printf ("idt base: %#x\n", *((unsigned*)&amp;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 No Comments »

Leave a Comment

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.