LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 713|回复: 1

三个很有挑战性的系统安全问题

[复制链接]
发表于 2005-5-15 01:03:03 | 显示全部楼层 |阅读模式
1. [challenge] Running real mode code in Linux kernel, without vm86 mode
2. [challenge] Identifying VMWare using vmware_tools
3. [challenge] Hide file in JFS, XFS, ReiserFS, UFS

网址:
http://bbs.islab.org/forumdisplay.php?f=33
发表于 2005-5-17 11:56:58 | 显示全部楼层
2. [challenge] Identifying VMWare using vmware_tools


/*
* gcc -Wall -o checkVM checkVM.c
* check linux OS in VMare ?
* by alert7
*
*/

#include <stdio.h>
#include <stdlib.h>

struct idtr {
        unsigned short  limit;
        unsigned int    base;
} __attribute__ ((packed));

unsigned int get_addr_idt() {
        struct idtr idtr;
        asm("sidt %0" : "=m" (idtr));
        return idtr.base;
}
int main(int argc, char ** argv)
{
        unsigned int ptr_idt;

        ptr_idt=get_addr_idt();
        printf("IDT Addr %p \n",ptr_idt);
        if ( (ptr_idt>>24)==0xc0)
                printf("Real Linux\n");
        else printf("Maybe in VMare\n");
        return 0;
}
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表