Quantcast
Channel: 看雪安全论坛
Viewing all articles
Browse latest Browse all 9556

其他内容 【原创】高仿 XUETR 暴力重启功能

$
0
0
代码:


void ShutDown()
{
        _asm
        {
                mov ax,2001h;
                mov dx,1004h;
                out dx,ax;    //写入 2001h  到端口 1004h    实现暴力关机
        }
}

void Reboot()
{
        _asm
        {
                mov al,0FEh;
                out 64h,al;  //写入 0FEh  到端口 64h  暴力重启
        }
}

想要测试的,可以自己写到驱动里面去试试,我试过了,很暴力.

不知xuetr是怎么实现的.

另外不知道这种关机和重启, 怎么拦截?

Viewing all articles
Browse latest Browse all 9556

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>