├── Common ├── AntiDbg.c ├── xVirusCrypto.c └── xVirusSupport.c ├── EvilKernel ├── EvilKernel.c ├── EvilKernel.h ├── EvilKernel.vcxproj ├── EvilKernel.vcxproj.filters ├── EvilKernel.vcxproj.user ├── EvilPlugin.h ├── RefixTlsPrivate.c └── winternl.h ├── README.md ├── TestDll ├── ReadMe.txt ├── TestDll.cpp ├── TestDll.def ├── TestDll.h ├── TestDll.vcxproj ├── TestDll.vcxproj.filters ├── TestDll.vcxproj.user ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── xVirus.sln ├── xVirus ├── resource.h ├── xVirus.aps ├── xVirus.c ├── xVirus.rc ├── xVirus.vcxproj ├── xVirus.vcxproj.filters ├── xVirus.vcxproj.user ├── xVirusIcon.ico └── xVirusSupport.c ├── xVirusAttach ├── dllmain.c ├── resource.h ├── xVirusAttach.aps ├── xVirusAttach.c ├── xVirusAttach.def ├── xVirusAttach.h ├── xVirusAttach.rc ├── xVirusAttach.vcxproj ├── xVirusAttach.vcxproj.filters ├── xVirusAttach.vcxproj.user └── 保留的代码 │ └── MakeCert.c ├── xVirusDll ├── resource.h ├── xVirusDll.aps ├── xVirusDll.c ├── xVirusDll.def ├── xVirusDll.h ├── xVirusDll.rc ├── xVirusDll.vcxproj ├── xVirusDll.vcxproj.filters └── xVirusDll.vcxproj.user └── xVirusManagerConsole ├── EvilKernelLog.txt ├── xVirusManagerConsole.c ├── xVirusManagerConsole.vcxproj ├── xVirusManagerConsole.vcxproj.filters └── xVirusManagerConsole.vcxproj.user /Common/AntiDbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/Common/AntiDbg.c -------------------------------------------------------------------------------- /Common/xVirusCrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/Common/xVirusCrypto.c -------------------------------------------------------------------------------- /Common/xVirusSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/Common/xVirusSupport.c -------------------------------------------------------------------------------- /EvilKernel/EvilKernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/EvilKernel/EvilKernel.c -------------------------------------------------------------------------------- /EvilKernel/EvilKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/EvilKernel/EvilKernel.h -------------------------------------------------------------------------------- /EvilKernel/EvilKernel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/EvilKernel/EvilKernel.vcxproj -------------------------------------------------------------------------------- /EvilKernel/EvilKernel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/EvilKernel/EvilKernel.vcxproj.filters -------------------------------------------------------------------------------- /EvilKernel/EvilKernel.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/EvilKernel/EvilKernel.vcxproj.user -------------------------------------------------------------------------------- /EvilKernel/EvilPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/EvilKernel/EvilPlugin.h -------------------------------------------------------------------------------- /EvilKernel/RefixTlsPrivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/EvilKernel/RefixTlsPrivate.c -------------------------------------------------------------------------------- /EvilKernel/winternl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/EvilKernel/winternl.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | xvirus 2 | ====== 3 | 4 | 一个早期的抗启发式查杀的WIN32免杀壳 5 | -------------------------------------------------------------------------------- /TestDll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/TestDll/ReadMe.txt -------------------------------------------------------------------------------- /TestDll/TestDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/TestDll/TestDll.cpp -------------------------------------------------------------------------------- /TestDll/TestDll.def: -------------------------------------------------------------------------------- 1 | LIBRARY "TestDll" 2 | EXPORTS 3 | 4 | FuckTest -------------------------------------------------------------------------------- /TestDll/TestDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/TestDll/TestDll.h -------------------------------------------------------------------------------- /TestDll/TestDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/TestDll/TestDll.vcxproj -------------------------------------------------------------------------------- /TestDll/TestDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/TestDll/TestDll.vcxproj.filters -------------------------------------------------------------------------------- /TestDll/TestDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/TestDll/TestDll.vcxproj.user -------------------------------------------------------------------------------- /TestDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/TestDll/dllmain.cpp -------------------------------------------------------------------------------- /TestDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/TestDll/stdafx.cpp -------------------------------------------------------------------------------- /TestDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/TestDll/stdafx.h -------------------------------------------------------------------------------- /TestDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/TestDll/targetver.h -------------------------------------------------------------------------------- /xVirus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirus.sln -------------------------------------------------------------------------------- /xVirus/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirus/resource.h -------------------------------------------------------------------------------- /xVirus/xVirus.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirus/xVirus.aps -------------------------------------------------------------------------------- /xVirus/xVirus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirus/xVirus.c -------------------------------------------------------------------------------- /xVirus/xVirus.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirus/xVirus.rc -------------------------------------------------------------------------------- /xVirus/xVirus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirus/xVirus.vcxproj -------------------------------------------------------------------------------- /xVirus/xVirus.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirus/xVirus.vcxproj.filters -------------------------------------------------------------------------------- /xVirus/xVirus.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirus/xVirus.vcxproj.user -------------------------------------------------------------------------------- /xVirus/xVirusIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirus/xVirusIcon.ico -------------------------------------------------------------------------------- /xVirus/xVirusSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirus/xVirusSupport.c -------------------------------------------------------------------------------- /xVirusAttach/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/dllmain.c -------------------------------------------------------------------------------- /xVirusAttach/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/resource.h -------------------------------------------------------------------------------- /xVirusAttach/xVirusAttach.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/xVirusAttach.aps -------------------------------------------------------------------------------- /xVirusAttach/xVirusAttach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/xVirusAttach.c -------------------------------------------------------------------------------- /xVirusAttach/xVirusAttach.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/xVirusAttach.def -------------------------------------------------------------------------------- /xVirusAttach/xVirusAttach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/xVirusAttach.h -------------------------------------------------------------------------------- /xVirusAttach/xVirusAttach.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/xVirusAttach.rc -------------------------------------------------------------------------------- /xVirusAttach/xVirusAttach.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/xVirusAttach.vcxproj -------------------------------------------------------------------------------- /xVirusAttach/xVirusAttach.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/xVirusAttach.vcxproj.filters -------------------------------------------------------------------------------- /xVirusAttach/xVirusAttach.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/xVirusAttach.vcxproj.user -------------------------------------------------------------------------------- /xVirusAttach/保留的代码/MakeCert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusAttach/保留的代码/MakeCert.c -------------------------------------------------------------------------------- /xVirusDll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusDll/resource.h -------------------------------------------------------------------------------- /xVirusDll/xVirusDll.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusDll/xVirusDll.aps -------------------------------------------------------------------------------- /xVirusDll/xVirusDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusDll/xVirusDll.c -------------------------------------------------------------------------------- /xVirusDll/xVirusDll.def: -------------------------------------------------------------------------------- 1 | LIBRARY "xVirusDll" 2 | EXPORTS 3 | 4 | g_ofOrigEntryAddressRva 5 | DllStartup -------------------------------------------------------------------------------- /xVirusDll/xVirusDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusDll/xVirusDll.h -------------------------------------------------------------------------------- /xVirusDll/xVirusDll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusDll/xVirusDll.rc -------------------------------------------------------------------------------- /xVirusDll/xVirusDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusDll/xVirusDll.vcxproj -------------------------------------------------------------------------------- /xVirusDll/xVirusDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusDll/xVirusDll.vcxproj.filters -------------------------------------------------------------------------------- /xVirusDll/xVirusDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusDll/xVirusDll.vcxproj.user -------------------------------------------------------------------------------- /xVirusManagerConsole/EvilKernelLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusManagerConsole/EvilKernelLog.txt -------------------------------------------------------------------------------- /xVirusManagerConsole/xVirusManagerConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusManagerConsole/xVirusManagerConsole.c -------------------------------------------------------------------------------- /xVirusManagerConsole/xVirusManagerConsole.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusManagerConsole/xVirusManagerConsole.vcxproj -------------------------------------------------------------------------------- /xVirusManagerConsole/xVirusManagerConsole.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusManagerConsole/xVirusManagerConsole.vcxproj.filters -------------------------------------------------------------------------------- /xVirusManagerConsole/xVirusManagerConsole.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilogic/xvirus/HEAD/xVirusManagerConsole/xVirusManagerConsole.vcxproj.user --------------------------------------------------------------------------------