├── LoadDriverDebugProcess ├── Apps │ ├── ImmunityDebugger │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── ImmunityDebugger.aps │ │ ├── ImmunityDebugger.cpp │ │ ├── ImmunityDebugger.h │ │ ├── ImmunityDebugger.rc │ │ ├── ImmunityDebugger.vcproj │ │ ├── ImmunityDebugger.vcproj.Pablo-PC.Pablo.user │ │ ├── ImmunityDebuggerDoc.cpp │ │ ├── ImmunityDebuggerDoc.h │ │ ├── ImmunityDebuggerView.cpp │ │ ├── ImmunityDebuggerView.h │ │ ├── LeftView.cpp │ │ ├── LeftView.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── NewView.cpp │ │ ├── NewView.h │ │ ├── ReadMe.txt │ │ ├── Resource.h │ │ ├── res │ │ │ ├── ImmunityDebugger.ico │ │ │ ├── ImmunityDebugger.rc2 │ │ │ ├── ImmunityDebuggerDoc.ico │ │ │ └── Toolbar.bmp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── OLLYDBG │ │ ├── OLLYDBG.APS │ │ ├── OLLYDBG.cpp │ │ ├── OLLYDBG.h │ │ ├── OLLYDBG.ico │ │ ├── OLLYDBG.rc │ │ ├── OLLYDBG.vcproj │ │ ├── OLLYDBG.vcproj.Pablo-PC.Pablo.user │ │ ├── ReadMe.txt │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Procmon │ │ ├── Procmon.aps │ │ ├── Procmon.cpp │ │ ├── Procmon.h │ │ ├── Procmon.ico │ │ ├── Procmon.rc │ │ ├── Procmon.vcproj │ │ ├── Procmon.vcproj.Pablo-PC.Pablo.user │ │ ├── ReadMe.txt │ │ ├── Resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Wireshark │ │ ├── ReadMe.txt │ │ ├── Resource.h │ │ ├── Wireshark.aps │ │ ├── Wireshark.cpp │ │ ├── Wireshark.h │ │ ├── Wireshark.ico │ │ ├── Wireshark.rc │ │ ├── Wireshark.vcproj │ │ ├── Wireshark.vcproj.Pablo-PC.Pablo.user │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── idag │ │ ├── ReadMe.txt │ │ ├── Resource.h │ │ ├── idag.aps │ │ ├── idag.cpp │ │ ├── idag.h │ │ ├── idag.ico │ │ ├── idag.rc │ │ ├── idag.vcproj │ │ ├── idag.vcproj.Pablo-PC.Pablo.user │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── procexp │ │ ├── ReadMe.txt │ │ ├── Resource.h │ │ ├── procexp.aps │ │ ├── procexp.cpp │ │ ├── procexp.h │ │ ├── procexp.ico │ │ ├── procexp.rc │ │ ├── procexp.vcproj │ │ ├── procexp.vcproj.Pablo-PC.Pablo.user │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── vboxtray │ │ ├── ReadMe.txt │ │ ├── Resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── vboxtray.aps │ │ ├── vboxtray.cpp │ │ ├── vboxtray.h │ │ ├── vboxtray.ico │ │ ├── vboxtray.rc │ │ ├── vboxtray.vcproj │ │ └── vboxtray.vcproj.Pablo-PC.Pablo.user │ └── windbg │ │ ├── ReadMe.txt │ │ ├── Resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── windbg.aps │ │ ├── windbg.cpp │ │ ├── windbg.h │ │ ├── windbg.ico │ │ ├── windbg.rc │ │ ├── windbg.vcproj │ │ └── windbg.vcproj.Pablo-PC.Pablo.user ├── ConsoleTestDebug │ ├── ConsoleTestDebug.cpp │ ├── ConsoleTestDebug.vcproj │ ├── ConsoleTestDebug.vcproj.Pablo-PC.Pablo.user │ ├── ReadMe.txt │ ├── pafish.log │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Dlls │ ├── SbieDll.bochs │ │ ├── SbieDll.bochs.vcproj │ │ └── SbieDll.bochs.vcproj.Pablo-PC.Pablo.user │ ├── SbieDll.qemu │ │ ├── SbieDll.qemu.vcproj │ │ └── SbieDll.qemu.vcproj.Pablo-PC.Pablo.user │ ├── SbieDll.vbox │ │ ├── SbieDll.vbox.vcproj │ │ └── SbieDll.vbox.vcproj.Pablo-PC.Pablo.user │ ├── SbieDll.vmware │ │ ├── SbieDll.vmware.vcproj │ │ └── SbieDll.vmware.vcproj.Pablo-PC.Pablo.user │ ├── SbieDll.wine │ │ ├── SbieDll.wine.vcproj │ │ └── SbieDll.wine.vcproj.Pablo-PC.Pablo.user │ └── SbieDll │ │ ├── IAThijack.cpp │ │ ├── IAThijack.h │ │ ├── SbieDll.vcproj │ │ ├── SbieDll.vcproj.Pablo-PC.Pablo.user │ │ ├── dllmain.cpp │ │ ├── dllmain.h │ │ └── testIAT.h ├── LaunchAll │ ├── LaunchAll.aps │ ├── LaunchAll.cpp │ ├── LaunchAll.h │ ├── LaunchAll.ico │ ├── LaunchAll.rc │ ├── LaunchAll.vcproj │ ├── LaunchAll.vcproj.Pablo-PC.Pablo.user │ ├── ReadMe.txt │ ├── Resource.h │ ├── small.ico │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── LoadDriver.sln ├── LoadDriver.suo ├── LoadDriver │ ├── LoadDriver.cpp │ ├── LoadDriver.vcproj │ ├── LoadDriver.vcproj.Pablo-PC.Pablo.user │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── PREPROCESADO.txt └── Release │ ├── ConsoleTestDebug.exe │ ├── Empty.exe │ ├── ImmunityDebugger.exe │ ├── LaunchAll.exe │ ├── LoadDriver.exe │ ├── OLLYDBG.exe │ ├── Procmon.exe │ ├── SbieDll.bochs.dll │ ├── SbieDll.dll │ ├── SbieDll.qemu.dll │ ├── SbieDll.vbox.dll │ ├── SbieDll.vmware.dll │ ├── SbieDll.wine.dll │ ├── Wireshark.exe │ ├── idag.exe │ ├── procexp.exe │ ├── vboxtray.exe │ └── windbg.exe ├── ProcWatcherDebugDriver ├── PEStruct.h ├── ProcDebugger.c ├── makefile.def └── sources ├── README.md └── bin └── i386 ├── ProcDebugger.pdb └── ProcDebugger.sys /LoadDriverDebugProcess/Apps/ImmunityDebugger/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ChildFrm.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ChildFrm.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.aps -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.rc -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebugger.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebuggerDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebuggerDoc.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebuggerDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebuggerDoc.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebuggerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebuggerView.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebuggerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ImmunityDebuggerView.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/LeftView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/LeftView.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/LeftView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/LeftView.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/MainFrm.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/MainFrm.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/NewView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/NewView.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/NewView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/NewView.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/Resource.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/res/ImmunityDebugger.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/res/ImmunityDebugger.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/res/ImmunityDebugger.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/res/ImmunityDebugger.rc2 -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/res/ImmunityDebuggerDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/res/ImmunityDebuggerDoc.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/res/Toolbar.bmp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/ImmunityDebugger/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/ImmunityDebugger/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.APS -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.rc -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/OLLYDBG.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/resource.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/small.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/OLLYDBG/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/OLLYDBG/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/Procmon.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/Procmon.aps -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/Procmon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/Procmon.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/Procmon.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/Procmon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/Procmon.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/Procmon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/Procmon.rc -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/Procmon.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/Procmon.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/Procmon.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/Procmon.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/Resource.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/small.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Procmon/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Procmon/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/Resource.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/Wireshark.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/Wireshark.aps -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/Wireshark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/Wireshark.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/Wireshark.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/Wireshark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/Wireshark.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/Wireshark.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/Wireshark.rc -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/Wireshark.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/Wireshark.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/Wireshark.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/Wireshark.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/small.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/Wireshark/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/Wireshark/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/Resource.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/idag.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/idag.aps -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/idag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/idag.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/idag.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/idag.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/idag.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/idag.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/idag.rc -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/idag.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/idag.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/idag.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/idag.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/small.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/idag/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/idag/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/Resource.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/procexp.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/procexp.aps -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/procexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/procexp.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/procexp.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/procexp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/procexp.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/procexp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/procexp.rc -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/procexp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/procexp.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/procexp.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/procexp.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/small.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/procexp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/procexp/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/Resource.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/small.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/vboxtray.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/vboxtray.aps -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/vboxtray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/vboxtray.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/vboxtray.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/vboxtray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/vboxtray.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/vboxtray.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/vboxtray.rc -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/vboxtray.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/vboxtray.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/vboxtray/vboxtray.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/vboxtray/vboxtray.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/Resource.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/small.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/windbg.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/windbg.aps -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/windbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/windbg.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/windbg.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/windbg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/windbg.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/windbg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/windbg.rc -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/windbg.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/windbg.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Apps/windbg/windbg.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Apps/windbg/windbg.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/ConsoleTestDebug/ConsoleTestDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/ConsoleTestDebug/ConsoleTestDebug.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/ConsoleTestDebug/ConsoleTestDebug.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/ConsoleTestDebug/ConsoleTestDebug.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/ConsoleTestDebug/ConsoleTestDebug.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/ConsoleTestDebug/ConsoleTestDebug.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/ConsoleTestDebug/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/ConsoleTestDebug/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/ConsoleTestDebug/pafish.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/ConsoleTestDebug/pafish.log -------------------------------------------------------------------------------- /LoadDriverDebugProcess/ConsoleTestDebug/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/ConsoleTestDebug/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/ConsoleTestDebug/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/ConsoleTestDebug/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/ConsoleTestDebug/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/ConsoleTestDebug/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll.bochs/SbieDll.bochs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll.bochs/SbieDll.bochs.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll.bochs/SbieDll.bochs.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll.bochs/SbieDll.bochs.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll.qemu/SbieDll.qemu.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll.qemu/SbieDll.qemu.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll.qemu/SbieDll.qemu.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll.qemu/SbieDll.qemu.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll.vbox/SbieDll.vbox.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll.vbox/SbieDll.vbox.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll.vbox/SbieDll.vbox.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll.vbox/SbieDll.vbox.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll.vmware/SbieDll.vmware.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll.vmware/SbieDll.vmware.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll.vmware/SbieDll.vmware.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll.vmware/SbieDll.vmware.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll.wine/SbieDll.wine.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll.wine/SbieDll.wine.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll.wine/SbieDll.wine.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll.wine/SbieDll.wine.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll/IAThijack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll/IAThijack.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll/IAThijack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll/IAThijack.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll/SbieDll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll/SbieDll.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll/SbieDll.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll/SbieDll.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll/dllmain.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll/dllmain.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Dlls/SbieDll/testIAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Dlls/SbieDll/testIAT.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/LaunchAll.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/LaunchAll.aps -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/LaunchAll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/LaunchAll.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/LaunchAll.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/LaunchAll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/LaunchAll.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/LaunchAll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/LaunchAll.rc -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/LaunchAll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/LaunchAll.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/LaunchAll.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/LaunchAll.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/Resource.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/small.ico -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LaunchAll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LaunchAll/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LoadDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LoadDriver.sln -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LoadDriver.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LoadDriver.suo -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LoadDriver/LoadDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LoadDriver/LoadDriver.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LoadDriver/LoadDriver.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LoadDriver/LoadDriver.vcproj -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LoadDriver/LoadDriver.vcproj.Pablo-PC.Pablo.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LoadDriver/LoadDriver.vcproj.Pablo-PC.Pablo.user -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LoadDriver/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LoadDriver/ReadMe.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LoadDriver/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LoadDriver/stdafx.cpp -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LoadDriver/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LoadDriver/stdafx.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/LoadDriver/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/LoadDriver/targetver.h -------------------------------------------------------------------------------- /LoadDriverDebugProcess/PREPROCESADO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/PREPROCESADO.txt -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/ConsoleTestDebug.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/ConsoleTestDebug.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/Empty.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/Empty.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/ImmunityDebugger.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/ImmunityDebugger.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/LaunchAll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/LaunchAll.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/LoadDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/LoadDriver.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/OLLYDBG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/OLLYDBG.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/Procmon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/Procmon.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/SbieDll.bochs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/SbieDll.bochs.dll -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/SbieDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/SbieDll.dll -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/SbieDll.qemu.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/SbieDll.qemu.dll -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/SbieDll.vbox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/SbieDll.vbox.dll -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/SbieDll.vmware.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/SbieDll.vmware.dll -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/SbieDll.wine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/SbieDll.wine.dll -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/Wireshark.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/Wireshark.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/idag.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/idag.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/procexp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/procexp.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/vboxtray.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/vboxtray.exe -------------------------------------------------------------------------------- /LoadDriverDebugProcess/Release/windbg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/LoadDriverDebugProcess/Release/windbg.exe -------------------------------------------------------------------------------- /ProcWatcherDebugDriver/PEStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/ProcWatcherDebugDriver/PEStruct.h -------------------------------------------------------------------------------- /ProcWatcherDebugDriver/ProcDebugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/ProcWatcherDebugDriver/ProcDebugger.c -------------------------------------------------------------------------------- /ProcWatcherDebugDriver/makefile.def: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def -------------------------------------------------------------------------------- /ProcWatcherDebugDriver/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/ProcWatcherDebugDriver/sources -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Kung-Fu-Malware -------------------------------------------------------------------------------- /bin/i386/ProcDebugger.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/bin/i386/ProcDebugger.pdb -------------------------------------------------------------------------------- /bin/i386/ProcDebugger.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psaneme/Kung-Fu-Malware/HEAD/bin/i386/ProcDebugger.sys --------------------------------------------------------------------------------