├── !TestCode ├── 07FirstDialog │ ├── 07FirstDialog.dsp │ ├── 07FirstDialog.dsw │ ├── DialogBoxParam.exe │ ├── FirstDialog.cpp │ ├── dialog.rc │ └── resource.h ├── BlockInput │ ├── BlockInput.exe │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── CM_Enumerate_Classes │ ├── CM_Enumerate_Classes.cpp │ ├── CM_Enumerate_Classes.dsp │ ├── CM_Enumerate_Classes.dsw │ ├── StdAfx.cpp │ └── StdAfx.h ├── CM_Get_DevNode_Registry_Property │ ├── CM_Get_DevNode_Registry_Property.cpp │ ├── CM_Get_DevNode_Registry_Property.dsp │ ├── CM_Get_DevNode_Registry_Property.dsw │ ├── StdAfx.cpp │ └── StdAfx.h ├── COM_ │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── Test.cpp │ ├── Test.dsp │ └── Test.dsw ├── ControlService │ ├── ControlService.cpp │ ├── ControlService.dsp │ ├── ControlService.dsw │ ├── StdAfx.cpp │ └── StdAfx.h ├── CreateProcess │ ├── CreateProcess.cpp │ ├── CreateProcess.dsp │ ├── CreateProcess.dsw │ ├── StdAfx.cpp │ └── StdAfx.h ├── CreateProcessAsUser │ ├── CreateProcessAsUser.cpp │ ├── CreateProcessAsUser.dsp │ ├── CreateProcessAsUser.dsw │ ├── StdAfx.cpp │ └── StdAfx.h ├── CreateWindowEx │ ├── Mini.cpp │ ├── Mini.dsp │ ├── Mini.dsw │ ├── Mini.h │ ├── Mini.ico │ ├── Mini.rc │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── resource.h │ └── small.ico ├── DestroyWindow │ ├── DestroyWindow.exe │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── Detour_Inject_Dll │ ├── Detour_Inject_Dll.cpp │ ├── Detour_Inject_Dll.dsp │ ├── Detour_Inject_Dll.dsw │ ├── Run.bat │ ├── StdAfx.cpp │ └── StdAfx.h ├── DotnetProc │ ├── WindowsFormsApplication1.sln │ ├── WindowsFormsApplication1.suo │ └── WindowsFormsApplication1 │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── WindowsFormsApplication1.csproj ├── EnableWindow │ ├── EnableWindow.exe │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── ExitWindowsEx │ ├── ExitWindowsEx.exe │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── GetModuleFileNameW │ ├── GetModuleFileNameW.cpp │ ├── GetModuleFileNameW.dsp │ ├── GetModuleFileNameW.dsw │ ├── GetModuleFileNameW.exe │ ├── StdAfx.cpp │ └── StdAfx.h ├── HandlerFile │ ├── HandlerFile.exe │ ├── Hfile.cpp │ ├── Hfile.h │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── HandlerIP │ ├── Adapter.sln │ └── Adapter │ │ ├── Adapter.cpp │ │ ├── Adapter.h │ │ ├── Adapter.rc │ │ ├── Adapter.v9.vcproj │ │ ├── Adapter.vcproj │ │ ├── AdapterDlg.cpp │ │ ├── AdapterDlg.h │ │ ├── NetworkAdapter.cpp │ │ ├── NetworkAdapter.h │ │ ├── res │ │ ├── Adapter.ico │ │ ├── Adapter.ico_ │ │ └── Adapter.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── HandlerReg │ ├── HandlerReg.exe │ ├── Reg.cpp │ ├── Reg.h │ ├── Test.cpp │ ├── Test.h │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── ImageNotifyDll │ ├── 1.rc │ ├── Common.c │ ├── Common.h │ ├── DLL │ │ ├── Hook.cpp │ │ ├── Hook.def │ │ ├── Hook.dsp │ │ ├── Hook.dsw │ │ ├── Hook.h │ │ └── rootkit.h │ ├── DllData.h │ ├── DoWork.c │ ├── DoWork.h │ ├── ImageNotifyDll.c │ ├── ImageNotifyDll.dsp │ ├── ImageNotifyDll.dsw │ ├── ImageNotifyDll.h │ ├── ImageNotifyDll.sln │ ├── ImageNotifyDll.vcproj │ ├── InjectDll.c │ ├── InjectDll.h │ ├── bin │ │ └── i386 │ │ │ └── ImageNotifyDll.sys │ ├── ddkbuild.bat │ ├── makefile │ ├── resource.h │ ├── sources │ ├── struct.h │ └── sudami.dll ├── LdrLoadDll │ ├── LdrLoadDll.cpp │ ├── LdrLoadDll.dsp │ ├── LdrLoadDll.dsw │ ├── LdrLoadDll.exe │ ├── StdAfx.cpp │ └── StdAfx.h ├── OpenSection │ ├── 1.cpp │ ├── OpenSection.dsp │ ├── OpenSection.dsw │ └── OpenSection.exe ├── PostThreadMesage │ ├── PostThreadMessage.exe │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── RegLoadKey │ ├── !RegLoadKey.exe │ ├── RegLoadKey.cpp │ ├── RegLoadKey.dsp │ ├── RegLoadKey.dsw │ ├── StdAfx.cpp │ └── StdAfx.h ├── SendInput │ ├── SendInput.exe │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── SendMessage │ ├── SendMessage.exe │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── SetParent │ ├── SetParent.exe │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── SetWinEventHook │ ├── SetWinEventHook.dll │ ├── SetWinEventHook.exe │ ├── hook │ │ ├── Hook.cpp │ │ ├── Hook.def │ │ ├── Hook.dsp │ │ ├── Hook.dsw │ │ └── Hook.h │ └── main1 │ │ ├── main1.cpp │ │ ├── main1.dsp │ │ └── main1.dsw ├── SetWindowsHookEx │ ├── SetWindowsHookEx.dll │ ├── SetWindowsHookEx.exe │ ├── hook │ │ ├── Hook.cpp │ │ ├── Hook.def │ │ ├── Hook.dsp │ │ ├── Hook.dsw │ │ └── Hook.h │ └── main1 │ │ ├── main1.cpp │ │ ├── main1.dsp │ │ └── main1.dsw ├── ShellExecuteW │ ├── ShellExecute.exe │ ├── main1.cpp │ ├── main1.dsp │ └── main1.dsw ├── TestCrypt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TestCrypt.cpp │ ├── TestCrypt.dsp │ └── TestCrypt.dsw └── WildcardsPatternMatch │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── WildcardsPatternMatch.cpp │ ├── WildcardsPatternMatch.dsp │ └── WildcardsPatternMatch.dsw ├── Project ├── Base │ ├── Ioctl.h │ └── mhoolib │ │ ├── disasm-lib │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── disasm.c │ │ ├── disasm.h │ │ ├── disasm_x86.c │ │ ├── disasm_x86.h │ │ ├── disasm_x86_tables.h │ │ ├── misc.c │ │ └── misc.h │ │ ├── mhook.cpp │ │ └── mhook.h ├── Demo │ ├── 1.bat │ ├── PBDcomLaunch.exe │ ├── PBRpcSs.exe │ ├── PBSrv.exe │ ├── PBStart.exe │ ├── ProteinBox.ini │ ├── ProteinBoxDLL.dll │ ├── Proteinbox_config.reg │ ├── Reload.bat │ ├── Templates.ini │ ├── TestIoctlM.exe │ └── Unload.bat ├── PBDcomLaunch │ ├── HookHelper.cpp │ ├── HookHelper.h │ ├── Outputdebug.cpp │ ├── Outputdebug.h │ ├── PBDcomLaunch.cpp │ ├── PBDcomLaunch.dsp │ ├── PBDcomLaunch.dsw │ ├── PBDcomLaunch.sln │ ├── PBDcomLaunch.vcproj │ ├── PBDcomSrv.cpp │ ├── PBDcomSrv.h │ ├── PBDcomToken.cpp │ ├── PBDcomToken.h │ ├── StdAfx.cpp │ └── StdAfx.h ├── PBRpcSs │ ├── HookHelper.cpp │ ├── HookHelper.h │ ├── Outputdebug.cpp │ ├── Outputdebug.h │ ├── PBRpcSrv.cpp │ ├── PBRpcSrv.h │ ├── PBRpcSs.cpp │ ├── PBRpcSs.dsp │ ├── PBRpcSs.dsw │ ├── PBRpcSs.sln │ ├── PBRpcSs.vcproj │ ├── PBRpcToken.cpp │ ├── PBRpcToken.h │ ├── PBRpcWinsock.cpp │ ├── PBRpcWinsock.h │ ├── StdAfx.cpp │ └── StdAfx.h ├── PBSrv │ ├── CLoadDriver_2.cpp │ ├── CLoadDriver_2.h │ ├── Common.cpp │ ├── Common.h │ ├── Global.cpp │ ├── Global.h │ ├── MemoryManager.cpp │ ├── MemoryManager.h │ ├── Outputdebug.cpp │ ├── Outputdebug.h │ ├── RPCHandler.cpp │ ├── RPCHandler.h │ ├── RpcApiNum0x1700_0x1900.cpp │ ├── RpcApiNum0x1700_0x1900.h │ ├── RpcCM.cpp │ ├── RpcCM.h │ ├── RpcCOM.cpp │ ├── RpcCOM.h │ ├── RpcCrypt.cpp │ ├── RpcCrypt.h │ ├── RpcFile.cpp │ ├── RpcFile.h │ ├── RpcPStore.cpp │ ├── RpcPStore.h │ ├── RpcProcess.cpp │ ├── RpcProcess.h │ ├── RpcService.cpp │ ├── RpcService.h │ ├── Service.cpp │ ├── WinService.dsp │ ├── WinService.dsw │ ├── WinService.sln │ ├── WinService.vcproj │ ├── stdafx.cpp │ └── stdafx.h ├── PBStart │ ├── PBStart.sln │ └── PBStart │ │ ├── CLoadDriver_2.cpp │ │ ├── CLoadDriver_2.h │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── Config.cpp │ │ ├── Config.h │ │ ├── PBStart.cpp │ │ ├── PBStart.h │ │ ├── PBStart.vcproj │ │ ├── ParseCMD.cpp │ │ ├── ParseCMD.h │ │ ├── outputdebug.cpp │ │ ├── outputdebug.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── ProteinBoxDLL │ ├── Common.cpp │ ├── Config.cpp │ ├── Config.h │ ├── ExportFunc.cpp │ ├── ExportFuncData.cpp │ ├── ExportFuncData.h │ ├── Exportfunc.h │ ├── HookHelper.cpp │ ├── HookHelper.h │ ├── HookHelperData.cpp │ ├── HookHelperData.h │ ├── MemoryManager.cpp │ ├── MemoryManager.h │ ├── Outputdebug.cpp │ ├── Outputdebug.h │ ├── PBAdvapi32dll │ │ ├── PBAdvapi32dll.cpp │ │ ├── PBAdvapi32dll.h │ │ ├── PBAdvapi32dllData.cpp │ │ └── PBAdvapi32dllData.h │ ├── PBAlpc.cpp │ ├── PBAlpc.h │ ├── PBAlpcData.cpp │ ├── PBAlpcData.h │ ├── PBComData.cpp │ ├── PBComData.h │ ├── PBCreateProcess.cpp │ ├── PBCreateProcess.h │ ├── PBDynamicData.cpp │ ├── PBDynamicData.h │ ├── PBFiles.cpp │ ├── PBFiles.h │ ├── PBFilesData.cpp │ ├── PBFilesData.h │ ├── PBIPStore.cpp │ ├── PBIPStore.h │ ├── PBLoad.cpp │ ├── PBLoad.h │ ├── PBLoadData.cpp │ ├── PBLoadData.h │ ├── PBMsidll │ │ ├── PBMsidll.cpp │ │ └── PBMsidll.h │ ├── PBOle32dll │ │ ├── PBOle32dll.cpp │ │ ├── PBOle32dll.h │ │ ├── PBOle32dllData.cpp │ │ └── PBOle32dllData.h │ ├── PBRegs.cpp │ ├── PBRegs.h │ ├── PBRegsData.cpp │ ├── PBRegsData.h │ ├── PBServices.cpp │ ├── PBServices.h │ ├── PBServicesData.cpp │ ├── PBServicesData.h │ ├── PBSetupapidll │ │ ├── PBSetupapidll.cpp │ │ ├── PBSetupapidll.h │ │ ├── PBSetupapidllData.cpp │ │ └── PBSetupapidllData.h │ ├── PBShell32dll │ │ ├── PBShell32dll.cpp │ │ └── PBShell32dll.h │ ├── PBToken.cpp │ ├── PBToken.h │ ├── PBTokenData.cpp │ ├── PBTokenData.h │ ├── PBUser32dll │ │ ├── PBUser32dll.cpp │ │ ├── PBUser32dll.h │ │ ├── PBUser32dllData.cpp │ │ ├── PBUser32dllData.h │ │ ├── PBUser32dllFunctions.cpp │ │ └── PBUser32dllFunctions.h │ ├── PBWtsapi32dll │ │ ├── PBWtsapi32dll.cpp │ │ └── PBWtsapi32dll.h │ ├── ProteinBoxDLL.cpp │ ├── ProteinBoxDLL.dsp │ ├── ProteinBoxDLL.dsw │ ├── ProteinBoxDLL.h │ ├── ProteinBoxDLL.sln │ ├── ProteinBoxDLL.vcproj │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── common.h │ └── mhooklib.lib ├── ProteinBoxDrv │ ├── 1.rc │ ├── Common.c │ ├── Common.h │ ├── Config.c │ ├── Config.h │ ├── ConfigData.c │ ├── ConfigData.h │ ├── ConfigThread.c │ ├── ConfigThread.h │ ├── CreateDirOrLink.c │ ├── CreateDirOrLink.h │ ├── DisableForceProcess.c │ ├── DisableForceProcess.h │ ├── DispatchIoctl.c │ ├── DispatchIoctl.h │ ├── DoWork.c │ ├── DoWork.h │ ├── DuplicateObject.c │ ├── DuplicateObject.h │ ├── EnumBoxs.c │ ├── EnumBoxs.h │ ├── ForceRunList.c │ ├── ForceRunList.h │ ├── GetFileName.c │ ├── GetFileName.h │ ├── GetInjectSaveArea.c │ ├── GetInjectSaveArea.h │ ├── GetVersion.c │ ├── GetVersion.h │ ├── GrayList.c │ ├── GrayList.h │ ├── HookEngine.h │ ├── ImageNotify.c │ ├── ImageNotify.h │ ├── InjectDll.c │ ├── InjectDll.h │ ├── InlineEngine.lib │ ├── LDasm.h │ ├── Memory.c │ ├── Memory.h │ ├── Notify.c │ ├── Notify.h │ ├── ObjectData.c │ ├── ObjectData.h │ ├── ObjectHook.c │ ├── ObjectHook.h │ ├── ObjectProc.c │ ├── ObjectProc.h │ ├── ProcessData.c │ ├── ProcessData.h │ ├── ProcessNofity.c │ ├── ProcessNofity.h │ ├── ProteinBoxDrv.c │ ├── ProteinBoxDrv.dsp │ ├── ProteinBoxDrv.dsw │ ├── ProteinBoxDrv.h │ ├── ProteinBoxDrv.idc │ ├── ProteinBoxDrv.sln │ ├── ProteinBoxDrv.vcproj │ ├── RegHiveData.c │ ├── RegHiveData.h │ ├── SSDT.c │ ├── SSDT.h │ ├── SandboxsList.c │ ├── SandboxsList.h │ ├── SdtData.c │ ├── SdtData.h │ ├── Security.c │ ├── Security.h │ ├── SecurityData.c │ ├── SecurityData.h │ ├── ShadowSSDT.c │ ├── ShadowSSDT.h │ ├── ShadowSSDTProc.c │ ├── ShadowSSDTProc.h │ ├── StartProcess.c │ ├── StartProcess.h │ ├── Version.c │ ├── Version.h │ ├── WhiteOrBlack.c │ ├── WhiteOrBlack.h │ ├── asm_xde.h │ ├── bin │ │ └── i386 │ │ │ └── ProteinBoxDrv.sys │ ├── ddkbuild.bat │ ├── ldasm.c │ ├── makefile │ ├── resource.h │ ├── sources │ └── struct.h └── TestIoctlM │ ├── CLoadDriver_2.cpp │ ├── CLoadDriver_2.h │ ├── Config.cpp │ ├── Config.h │ ├── Ioctl.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TestIoctlM.clw │ ├── TestIoctlM.cpp │ ├── TestIoctlM.dsp │ ├── TestIoctlM.dsw │ ├── TestIoctlM.h │ ├── TestIoctlM.rc │ ├── TestIoctlM.sln │ ├── TestIoctlM.vcproj │ ├── TestIoctlMDlg.cpp │ ├── TestIoctlMDlg.h │ ├── Work.cpp │ ├── Work.h │ ├── outputdebug.cpp │ ├── outputdebug.h │ ├── res │ ├── TestIoctlM.ico │ └── TestIoctlM.rc2 │ ├── resource.h │ └── xp.manifest └── README.md /!TestCode/07FirstDialog/07FirstDialog.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/07FirstDialog/07FirstDialog.dsp -------------------------------------------------------------------------------- /!TestCode/07FirstDialog/07FirstDialog.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/07FirstDialog/07FirstDialog.dsw -------------------------------------------------------------------------------- /!TestCode/07FirstDialog/DialogBoxParam.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/07FirstDialog/DialogBoxParam.exe -------------------------------------------------------------------------------- /!TestCode/07FirstDialog/FirstDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/07FirstDialog/FirstDialog.cpp -------------------------------------------------------------------------------- /!TestCode/07FirstDialog/dialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/07FirstDialog/dialog.rc -------------------------------------------------------------------------------- /!TestCode/07FirstDialog/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/07FirstDialog/resource.h -------------------------------------------------------------------------------- /!TestCode/BlockInput/BlockInput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/BlockInput/BlockInput.exe -------------------------------------------------------------------------------- /!TestCode/BlockInput/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/BlockInput/main1.cpp -------------------------------------------------------------------------------- /!TestCode/BlockInput/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/BlockInput/main1.dsp -------------------------------------------------------------------------------- /!TestCode/BlockInput/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/BlockInput/main1.dsw -------------------------------------------------------------------------------- /!TestCode/CM_Enumerate_Classes/CM_Enumerate_Classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CM_Enumerate_Classes/CM_Enumerate_Classes.cpp -------------------------------------------------------------------------------- /!TestCode/CM_Enumerate_Classes/CM_Enumerate_Classes.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CM_Enumerate_Classes/CM_Enumerate_Classes.dsp -------------------------------------------------------------------------------- /!TestCode/CM_Enumerate_Classes/CM_Enumerate_Classes.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CM_Enumerate_Classes/CM_Enumerate_Classes.dsw -------------------------------------------------------------------------------- /!TestCode/CM_Enumerate_Classes/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CM_Enumerate_Classes/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/CM_Enumerate_Classes/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CM_Enumerate_Classes/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/CM_Get_DevNode_Registry_Property/CM_Get_DevNode_Registry_Property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CM_Get_DevNode_Registry_Property/CM_Get_DevNode_Registry_Property.cpp -------------------------------------------------------------------------------- /!TestCode/CM_Get_DevNode_Registry_Property/CM_Get_DevNode_Registry_Property.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CM_Get_DevNode_Registry_Property/CM_Get_DevNode_Registry_Property.dsp -------------------------------------------------------------------------------- /!TestCode/CM_Get_DevNode_Registry_Property/CM_Get_DevNode_Registry_Property.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CM_Get_DevNode_Registry_Property/CM_Get_DevNode_Registry_Property.dsw -------------------------------------------------------------------------------- /!TestCode/CM_Get_DevNode_Registry_Property/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CM_Get_DevNode_Registry_Property/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/CM_Get_DevNode_Registry_Property/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CM_Get_DevNode_Registry_Property/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/COM_/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/COM_/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/COM_/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/COM_/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/COM_/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/COM_/Test.cpp -------------------------------------------------------------------------------- /!TestCode/COM_/Test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/COM_/Test.dsp -------------------------------------------------------------------------------- /!TestCode/COM_/Test.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/COM_/Test.dsw -------------------------------------------------------------------------------- /!TestCode/ControlService/ControlService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ControlService/ControlService.cpp -------------------------------------------------------------------------------- /!TestCode/ControlService/ControlService.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ControlService/ControlService.dsp -------------------------------------------------------------------------------- /!TestCode/ControlService/ControlService.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ControlService/ControlService.dsw -------------------------------------------------------------------------------- /!TestCode/ControlService/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ControlService/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/ControlService/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ControlService/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/CreateProcess/CreateProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateProcess/CreateProcess.cpp -------------------------------------------------------------------------------- /!TestCode/CreateProcess/CreateProcess.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateProcess/CreateProcess.dsp -------------------------------------------------------------------------------- /!TestCode/CreateProcess/CreateProcess.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateProcess/CreateProcess.dsw -------------------------------------------------------------------------------- /!TestCode/CreateProcess/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateProcess/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/CreateProcess/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateProcess/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/CreateProcessAsUser/CreateProcessAsUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateProcessAsUser/CreateProcessAsUser.cpp -------------------------------------------------------------------------------- /!TestCode/CreateProcessAsUser/CreateProcessAsUser.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateProcessAsUser/CreateProcessAsUser.dsp -------------------------------------------------------------------------------- /!TestCode/CreateProcessAsUser/CreateProcessAsUser.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateProcessAsUser/CreateProcessAsUser.dsw -------------------------------------------------------------------------------- /!TestCode/CreateProcessAsUser/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateProcessAsUser/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/CreateProcessAsUser/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateProcessAsUser/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/CreateWindowEx/Mini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateWindowEx/Mini.cpp -------------------------------------------------------------------------------- /!TestCode/CreateWindowEx/Mini.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateWindowEx/Mini.dsp -------------------------------------------------------------------------------- /!TestCode/CreateWindowEx/Mini.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateWindowEx/Mini.dsw -------------------------------------------------------------------------------- /!TestCode/CreateWindowEx/Mini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateWindowEx/Mini.h -------------------------------------------------------------------------------- /!TestCode/CreateWindowEx/Mini.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateWindowEx/Mini.ico -------------------------------------------------------------------------------- /!TestCode/CreateWindowEx/Mini.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateWindowEx/Mini.rc -------------------------------------------------------------------------------- /!TestCode/CreateWindowEx/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateWindowEx/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/CreateWindowEx/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateWindowEx/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/CreateWindowEx/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateWindowEx/resource.h -------------------------------------------------------------------------------- /!TestCode/CreateWindowEx/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/CreateWindowEx/small.ico -------------------------------------------------------------------------------- /!TestCode/DestroyWindow/DestroyWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DestroyWindow/DestroyWindow.exe -------------------------------------------------------------------------------- /!TestCode/DestroyWindow/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DestroyWindow/main1.cpp -------------------------------------------------------------------------------- /!TestCode/DestroyWindow/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DestroyWindow/main1.dsp -------------------------------------------------------------------------------- /!TestCode/DestroyWindow/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DestroyWindow/main1.dsw -------------------------------------------------------------------------------- /!TestCode/Detour_Inject_Dll/Detour_Inject_Dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/Detour_Inject_Dll/Detour_Inject_Dll.cpp -------------------------------------------------------------------------------- /!TestCode/Detour_Inject_Dll/Detour_Inject_Dll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/Detour_Inject_Dll/Detour_Inject_Dll.dsp -------------------------------------------------------------------------------- /!TestCode/Detour_Inject_Dll/Detour_Inject_Dll.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/Detour_Inject_Dll/Detour_Inject_Dll.dsw -------------------------------------------------------------------------------- /!TestCode/Detour_Inject_Dll/Run.bat: -------------------------------------------------------------------------------- 1 | Detour_Inject_Dll.exe /d:1.dll -------------------------------------------------------------------------------- /!TestCode/Detour_Inject_Dll/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/Detour_Inject_Dll/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/Detour_Inject_Dll/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/Detour_Inject_Dll/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1.sln -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1.suo -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1/Form1.Designer.cs -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1/Form1.cs -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1/Form1.resx -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1/Program.cs -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1/Properties/Resources.resx -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1/Properties/Settings.settings -------------------------------------------------------------------------------- /!TestCode/DotnetProc/WindowsFormsApplication1/WindowsFormsApplication1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/DotnetProc/WindowsFormsApplication1/WindowsFormsApplication1.csproj -------------------------------------------------------------------------------- /!TestCode/EnableWindow/EnableWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/EnableWindow/EnableWindow.exe -------------------------------------------------------------------------------- /!TestCode/EnableWindow/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/EnableWindow/main1.cpp -------------------------------------------------------------------------------- /!TestCode/EnableWindow/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/EnableWindow/main1.dsp -------------------------------------------------------------------------------- /!TestCode/EnableWindow/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/EnableWindow/main1.dsw -------------------------------------------------------------------------------- /!TestCode/ExitWindowsEx/ExitWindowsEx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ExitWindowsEx/ExitWindowsEx.exe -------------------------------------------------------------------------------- /!TestCode/ExitWindowsEx/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ExitWindowsEx/main1.cpp -------------------------------------------------------------------------------- /!TestCode/ExitWindowsEx/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ExitWindowsEx/main1.dsp -------------------------------------------------------------------------------- /!TestCode/ExitWindowsEx/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ExitWindowsEx/main1.dsw -------------------------------------------------------------------------------- /!TestCode/GetModuleFileNameW/GetModuleFileNameW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/GetModuleFileNameW/GetModuleFileNameW.cpp -------------------------------------------------------------------------------- /!TestCode/GetModuleFileNameW/GetModuleFileNameW.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/GetModuleFileNameW/GetModuleFileNameW.dsp -------------------------------------------------------------------------------- /!TestCode/GetModuleFileNameW/GetModuleFileNameW.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/GetModuleFileNameW/GetModuleFileNameW.dsw -------------------------------------------------------------------------------- /!TestCode/GetModuleFileNameW/GetModuleFileNameW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/GetModuleFileNameW/GetModuleFileNameW.exe -------------------------------------------------------------------------------- /!TestCode/GetModuleFileNameW/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/GetModuleFileNameW/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/GetModuleFileNameW/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/GetModuleFileNameW/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/HandlerFile/HandlerFile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerFile/HandlerFile.exe -------------------------------------------------------------------------------- /!TestCode/HandlerFile/Hfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerFile/Hfile.cpp -------------------------------------------------------------------------------- /!TestCode/HandlerFile/Hfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerFile/Hfile.h -------------------------------------------------------------------------------- /!TestCode/HandlerFile/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerFile/main1.cpp -------------------------------------------------------------------------------- /!TestCode/HandlerFile/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerFile/main1.dsp -------------------------------------------------------------------------------- /!TestCode/HandlerFile/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerFile/main1.dsw -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter.sln -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/Adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/Adapter.cpp -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/Adapter.h -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/Adapter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/Adapter.rc -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/Adapter.v9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/Adapter.v9.vcproj -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/Adapter.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/Adapter.vcproj -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/AdapterDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/AdapterDlg.cpp -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/AdapterDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/AdapterDlg.h -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/NetworkAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/NetworkAdapter.cpp -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/NetworkAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/NetworkAdapter.h -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/res/Adapter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/res/Adapter.ico -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/res/Adapter.ico_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/res/Adapter.ico_ -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/res/Adapter.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/res/Adapter.rc2 -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/resource.h -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/stdafx.cpp -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/stdafx.h -------------------------------------------------------------------------------- /!TestCode/HandlerIP/Adapter/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerIP/Adapter/targetver.h -------------------------------------------------------------------------------- /!TestCode/HandlerReg/HandlerReg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerReg/HandlerReg.exe -------------------------------------------------------------------------------- /!TestCode/HandlerReg/Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerReg/Reg.cpp -------------------------------------------------------------------------------- /!TestCode/HandlerReg/Reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerReg/Reg.h -------------------------------------------------------------------------------- /!TestCode/HandlerReg/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerReg/Test.cpp -------------------------------------------------------------------------------- /!TestCode/HandlerReg/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerReg/Test.h -------------------------------------------------------------------------------- /!TestCode/HandlerReg/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerReg/main1.cpp -------------------------------------------------------------------------------- /!TestCode/HandlerReg/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerReg/main1.dsp -------------------------------------------------------------------------------- /!TestCode/HandlerReg/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/HandlerReg/main1.dsw -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/1.rc -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/Common.c -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/Common.h -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/DLL/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/DLL/Hook.cpp -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/DLL/Hook.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/DLL/Hook.def -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/DLL/Hook.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/DLL/Hook.dsp -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/DLL/Hook.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/DLL/Hook.dsw -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/DLL/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/DLL/Hook.h -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/DLL/rootkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/DLL/rootkit.h -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/DllData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/DllData.h -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/DoWork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/DoWork.c -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/DoWork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/DoWork.h -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/ImageNotifyDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/ImageNotifyDll.c -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/ImageNotifyDll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/ImageNotifyDll.dsp -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/ImageNotifyDll.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/ImageNotifyDll.dsw -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/ImageNotifyDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/ImageNotifyDll.h -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/ImageNotifyDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/ImageNotifyDll.sln -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/ImageNotifyDll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/ImageNotifyDll.vcproj -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/InjectDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/InjectDll.c -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/InjectDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/InjectDll.h -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/bin/i386/ImageNotifyDll.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/bin/i386/ImageNotifyDll.sys -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/ddkbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/ddkbuild.bat -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/makefile -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/resource.h -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/sources -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/struct.h -------------------------------------------------------------------------------- /!TestCode/ImageNotifyDll/sudami.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ImageNotifyDll/sudami.dll -------------------------------------------------------------------------------- /!TestCode/LdrLoadDll/LdrLoadDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/LdrLoadDll/LdrLoadDll.cpp -------------------------------------------------------------------------------- /!TestCode/LdrLoadDll/LdrLoadDll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/LdrLoadDll/LdrLoadDll.dsp -------------------------------------------------------------------------------- /!TestCode/LdrLoadDll/LdrLoadDll.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/LdrLoadDll/LdrLoadDll.dsw -------------------------------------------------------------------------------- /!TestCode/LdrLoadDll/LdrLoadDll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/LdrLoadDll/LdrLoadDll.exe -------------------------------------------------------------------------------- /!TestCode/LdrLoadDll/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/LdrLoadDll/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/LdrLoadDll/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/LdrLoadDll/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/OpenSection/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/OpenSection/1.cpp -------------------------------------------------------------------------------- /!TestCode/OpenSection/OpenSection.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/OpenSection/OpenSection.dsp -------------------------------------------------------------------------------- /!TestCode/OpenSection/OpenSection.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/OpenSection/OpenSection.dsw -------------------------------------------------------------------------------- /!TestCode/OpenSection/OpenSection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/OpenSection/OpenSection.exe -------------------------------------------------------------------------------- /!TestCode/PostThreadMesage/PostThreadMessage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/PostThreadMesage/PostThreadMessage.exe -------------------------------------------------------------------------------- /!TestCode/PostThreadMesage/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/PostThreadMesage/main1.cpp -------------------------------------------------------------------------------- /!TestCode/PostThreadMesage/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/PostThreadMesage/main1.dsp -------------------------------------------------------------------------------- /!TestCode/PostThreadMesage/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/PostThreadMesage/main1.dsw -------------------------------------------------------------------------------- /!TestCode/RegLoadKey/!RegLoadKey.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/RegLoadKey/!RegLoadKey.exe -------------------------------------------------------------------------------- /!TestCode/RegLoadKey/RegLoadKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/RegLoadKey/RegLoadKey.cpp -------------------------------------------------------------------------------- /!TestCode/RegLoadKey/RegLoadKey.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/RegLoadKey/RegLoadKey.dsp -------------------------------------------------------------------------------- /!TestCode/RegLoadKey/RegLoadKey.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/RegLoadKey/RegLoadKey.dsw -------------------------------------------------------------------------------- /!TestCode/RegLoadKey/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/RegLoadKey/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/RegLoadKey/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/RegLoadKey/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/SendInput/SendInput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SendInput/SendInput.exe -------------------------------------------------------------------------------- /!TestCode/SendInput/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SendInput/main1.cpp -------------------------------------------------------------------------------- /!TestCode/SendInput/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SendInput/main1.dsp -------------------------------------------------------------------------------- /!TestCode/SendInput/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SendInput/main1.dsw -------------------------------------------------------------------------------- /!TestCode/SendMessage/SendMessage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SendMessage/SendMessage.exe -------------------------------------------------------------------------------- /!TestCode/SendMessage/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SendMessage/main1.cpp -------------------------------------------------------------------------------- /!TestCode/SendMessage/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SendMessage/main1.dsp -------------------------------------------------------------------------------- /!TestCode/SendMessage/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SendMessage/main1.dsw -------------------------------------------------------------------------------- /!TestCode/SetParent/SetParent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetParent/SetParent.exe -------------------------------------------------------------------------------- /!TestCode/SetParent/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetParent/main1.cpp -------------------------------------------------------------------------------- /!TestCode/SetParent/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetParent/main1.dsp -------------------------------------------------------------------------------- /!TestCode/SetParent/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetParent/main1.dsw -------------------------------------------------------------------------------- /!TestCode/SetWinEventHook/SetWinEventHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWinEventHook/SetWinEventHook.dll -------------------------------------------------------------------------------- /!TestCode/SetWinEventHook/SetWinEventHook.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWinEventHook/SetWinEventHook.exe -------------------------------------------------------------------------------- /!TestCode/SetWinEventHook/hook/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWinEventHook/hook/Hook.cpp -------------------------------------------------------------------------------- /!TestCode/SetWinEventHook/hook/Hook.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWinEventHook/hook/Hook.def -------------------------------------------------------------------------------- /!TestCode/SetWinEventHook/hook/Hook.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWinEventHook/hook/Hook.dsp -------------------------------------------------------------------------------- /!TestCode/SetWinEventHook/hook/Hook.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWinEventHook/hook/Hook.dsw -------------------------------------------------------------------------------- /!TestCode/SetWinEventHook/hook/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWinEventHook/hook/Hook.h -------------------------------------------------------------------------------- /!TestCode/SetWinEventHook/main1/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWinEventHook/main1/main1.cpp -------------------------------------------------------------------------------- /!TestCode/SetWinEventHook/main1/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWinEventHook/main1/main1.dsp -------------------------------------------------------------------------------- /!TestCode/SetWinEventHook/main1/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWinEventHook/main1/main1.dsw -------------------------------------------------------------------------------- /!TestCode/SetWindowsHookEx/SetWindowsHookEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWindowsHookEx/SetWindowsHookEx.dll -------------------------------------------------------------------------------- /!TestCode/SetWindowsHookEx/SetWindowsHookEx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWindowsHookEx/SetWindowsHookEx.exe -------------------------------------------------------------------------------- /!TestCode/SetWindowsHookEx/hook/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWindowsHookEx/hook/Hook.cpp -------------------------------------------------------------------------------- /!TestCode/SetWindowsHookEx/hook/Hook.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWindowsHookEx/hook/Hook.def -------------------------------------------------------------------------------- /!TestCode/SetWindowsHookEx/hook/Hook.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWindowsHookEx/hook/Hook.dsp -------------------------------------------------------------------------------- /!TestCode/SetWindowsHookEx/hook/Hook.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWindowsHookEx/hook/Hook.dsw -------------------------------------------------------------------------------- /!TestCode/SetWindowsHookEx/hook/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWindowsHookEx/hook/Hook.h -------------------------------------------------------------------------------- /!TestCode/SetWindowsHookEx/main1/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWindowsHookEx/main1/main1.cpp -------------------------------------------------------------------------------- /!TestCode/SetWindowsHookEx/main1/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWindowsHookEx/main1/main1.dsp -------------------------------------------------------------------------------- /!TestCode/SetWindowsHookEx/main1/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/SetWindowsHookEx/main1/main1.dsw -------------------------------------------------------------------------------- /!TestCode/ShellExecuteW/ShellExecute.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ShellExecuteW/ShellExecute.exe -------------------------------------------------------------------------------- /!TestCode/ShellExecuteW/main1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ShellExecuteW/main1.cpp -------------------------------------------------------------------------------- /!TestCode/ShellExecuteW/main1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ShellExecuteW/main1.dsp -------------------------------------------------------------------------------- /!TestCode/ShellExecuteW/main1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/ShellExecuteW/main1.dsw -------------------------------------------------------------------------------- /!TestCode/TestCrypt/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/TestCrypt/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/TestCrypt/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/TestCrypt/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/TestCrypt/TestCrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/TestCrypt/TestCrypt.cpp -------------------------------------------------------------------------------- /!TestCode/TestCrypt/TestCrypt.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/TestCrypt/TestCrypt.dsp -------------------------------------------------------------------------------- /!TestCode/TestCrypt/TestCrypt.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/TestCrypt/TestCrypt.dsw -------------------------------------------------------------------------------- /!TestCode/WildcardsPatternMatch/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/WildcardsPatternMatch/StdAfx.cpp -------------------------------------------------------------------------------- /!TestCode/WildcardsPatternMatch/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/WildcardsPatternMatch/StdAfx.h -------------------------------------------------------------------------------- /!TestCode/WildcardsPatternMatch/WildcardsPatternMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/WildcardsPatternMatch/WildcardsPatternMatch.cpp -------------------------------------------------------------------------------- /!TestCode/WildcardsPatternMatch/WildcardsPatternMatch.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/WildcardsPatternMatch/WildcardsPatternMatch.dsp -------------------------------------------------------------------------------- /!TestCode/WildcardsPatternMatch/WildcardsPatternMatch.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/!TestCode/WildcardsPatternMatch/WildcardsPatternMatch.dsw -------------------------------------------------------------------------------- /Project/Base/Ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/Ioctl.h -------------------------------------------------------------------------------- /Project/Base/mhoolib/disasm-lib/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/disasm-lib/cpu.c -------------------------------------------------------------------------------- /Project/Base/mhoolib/disasm-lib/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/disasm-lib/cpu.h -------------------------------------------------------------------------------- /Project/Base/mhoolib/disasm-lib/disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/disasm-lib/disasm.c -------------------------------------------------------------------------------- /Project/Base/mhoolib/disasm-lib/disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/disasm-lib/disasm.h -------------------------------------------------------------------------------- /Project/Base/mhoolib/disasm-lib/disasm_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/disasm-lib/disasm_x86.c -------------------------------------------------------------------------------- /Project/Base/mhoolib/disasm-lib/disasm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/disasm-lib/disasm_x86.h -------------------------------------------------------------------------------- /Project/Base/mhoolib/disasm-lib/disasm_x86_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/disasm-lib/disasm_x86_tables.h -------------------------------------------------------------------------------- /Project/Base/mhoolib/disasm-lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/disasm-lib/misc.c -------------------------------------------------------------------------------- /Project/Base/mhoolib/disasm-lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/disasm-lib/misc.h -------------------------------------------------------------------------------- /Project/Base/mhoolib/mhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/mhook.cpp -------------------------------------------------------------------------------- /Project/Base/mhoolib/mhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Base/mhoolib/mhook.h -------------------------------------------------------------------------------- /Project/Demo/1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Demo/1.bat -------------------------------------------------------------------------------- /Project/Demo/PBDcomLaunch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Demo/PBDcomLaunch.exe -------------------------------------------------------------------------------- /Project/Demo/PBRpcSs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Demo/PBRpcSs.exe -------------------------------------------------------------------------------- /Project/Demo/PBSrv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Demo/PBSrv.exe -------------------------------------------------------------------------------- /Project/Demo/PBStart.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Demo/PBStart.exe -------------------------------------------------------------------------------- /Project/Demo/ProteinBox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Demo/ProteinBox.ini -------------------------------------------------------------------------------- /Project/Demo/ProteinBoxDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Demo/ProteinBoxDLL.dll -------------------------------------------------------------------------------- /Project/Demo/Proteinbox_config.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Demo/Proteinbox_config.reg -------------------------------------------------------------------------------- /Project/Demo/Reload.bat: -------------------------------------------------------------------------------- 1 | "PBStart.exe" /reload -------------------------------------------------------------------------------- /Project/Demo/Templates.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project/Demo/TestIoctlM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/Demo/TestIoctlM.exe -------------------------------------------------------------------------------- /Project/Demo/Unload.bat: -------------------------------------------------------------------------------- 1 | "PBStart.exe" /unload -------------------------------------------------------------------------------- /Project/PBDcomLaunch/HookHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/HookHelper.cpp -------------------------------------------------------------------------------- /Project/PBDcomLaunch/HookHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/HookHelper.h -------------------------------------------------------------------------------- /Project/PBDcomLaunch/Outputdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/Outputdebug.cpp -------------------------------------------------------------------------------- /Project/PBDcomLaunch/Outputdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/Outputdebug.h -------------------------------------------------------------------------------- /Project/PBDcomLaunch/PBDcomLaunch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/PBDcomLaunch.cpp -------------------------------------------------------------------------------- /Project/PBDcomLaunch/PBDcomLaunch.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/PBDcomLaunch.dsp -------------------------------------------------------------------------------- /Project/PBDcomLaunch/PBDcomLaunch.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/PBDcomLaunch.dsw -------------------------------------------------------------------------------- /Project/PBDcomLaunch/PBDcomLaunch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/PBDcomLaunch.sln -------------------------------------------------------------------------------- /Project/PBDcomLaunch/PBDcomLaunch.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/PBDcomLaunch.vcproj -------------------------------------------------------------------------------- /Project/PBDcomLaunch/PBDcomSrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/PBDcomSrv.cpp -------------------------------------------------------------------------------- /Project/PBDcomLaunch/PBDcomSrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/PBDcomSrv.h -------------------------------------------------------------------------------- /Project/PBDcomLaunch/PBDcomToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/PBDcomToken.cpp -------------------------------------------------------------------------------- /Project/PBDcomLaunch/PBDcomToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/PBDcomToken.h -------------------------------------------------------------------------------- /Project/PBDcomLaunch/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/StdAfx.cpp -------------------------------------------------------------------------------- /Project/PBDcomLaunch/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBDcomLaunch/StdAfx.h -------------------------------------------------------------------------------- /Project/PBRpcSs/HookHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/HookHelper.cpp -------------------------------------------------------------------------------- /Project/PBRpcSs/HookHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/HookHelper.h -------------------------------------------------------------------------------- /Project/PBRpcSs/Outputdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/Outputdebug.cpp -------------------------------------------------------------------------------- /Project/PBRpcSs/Outputdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/Outputdebug.h -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcSrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcSrv.cpp -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcSrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcSrv.h -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcSs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcSs.cpp -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcSs.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcSs.dsp -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcSs.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcSs.dsw -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcSs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcSs.sln -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcSs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcSs.vcproj -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcToken.cpp -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcToken.h -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcWinsock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcWinsock.cpp -------------------------------------------------------------------------------- /Project/PBRpcSs/PBRpcWinsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/PBRpcWinsock.h -------------------------------------------------------------------------------- /Project/PBRpcSs/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/StdAfx.cpp -------------------------------------------------------------------------------- /Project/PBRpcSs/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBRpcSs/StdAfx.h -------------------------------------------------------------------------------- /Project/PBSrv/CLoadDriver_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/CLoadDriver_2.cpp -------------------------------------------------------------------------------- /Project/PBSrv/CLoadDriver_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/CLoadDriver_2.h -------------------------------------------------------------------------------- /Project/PBSrv/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/Common.cpp -------------------------------------------------------------------------------- /Project/PBSrv/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/Common.h -------------------------------------------------------------------------------- /Project/PBSrv/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/Global.cpp -------------------------------------------------------------------------------- /Project/PBSrv/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/Global.h -------------------------------------------------------------------------------- /Project/PBSrv/MemoryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/MemoryManager.cpp -------------------------------------------------------------------------------- /Project/PBSrv/MemoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/MemoryManager.h -------------------------------------------------------------------------------- /Project/PBSrv/Outputdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/Outputdebug.cpp -------------------------------------------------------------------------------- /Project/PBSrv/Outputdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/Outputdebug.h -------------------------------------------------------------------------------- /Project/PBSrv/RPCHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RPCHandler.cpp -------------------------------------------------------------------------------- /Project/PBSrv/RPCHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RPCHandler.h -------------------------------------------------------------------------------- /Project/PBSrv/RpcApiNum0x1700_0x1900.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcApiNum0x1700_0x1900.cpp -------------------------------------------------------------------------------- /Project/PBSrv/RpcApiNum0x1700_0x1900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcApiNum0x1700_0x1900.h -------------------------------------------------------------------------------- /Project/PBSrv/RpcCM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcCM.cpp -------------------------------------------------------------------------------- /Project/PBSrv/RpcCM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcCM.h -------------------------------------------------------------------------------- /Project/PBSrv/RpcCOM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcCOM.cpp -------------------------------------------------------------------------------- /Project/PBSrv/RpcCOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcCOM.h -------------------------------------------------------------------------------- /Project/PBSrv/RpcCrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcCrypt.cpp -------------------------------------------------------------------------------- /Project/PBSrv/RpcCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcCrypt.h -------------------------------------------------------------------------------- /Project/PBSrv/RpcFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcFile.cpp -------------------------------------------------------------------------------- /Project/PBSrv/RpcFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcFile.h -------------------------------------------------------------------------------- /Project/PBSrv/RpcPStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcPStore.cpp -------------------------------------------------------------------------------- /Project/PBSrv/RpcPStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcPStore.h -------------------------------------------------------------------------------- /Project/PBSrv/RpcProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcProcess.cpp -------------------------------------------------------------------------------- /Project/PBSrv/RpcProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcProcess.h -------------------------------------------------------------------------------- /Project/PBSrv/RpcService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcService.cpp -------------------------------------------------------------------------------- /Project/PBSrv/RpcService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/RpcService.h -------------------------------------------------------------------------------- /Project/PBSrv/Service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/Service.cpp -------------------------------------------------------------------------------- /Project/PBSrv/WinService.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/WinService.dsp -------------------------------------------------------------------------------- /Project/PBSrv/WinService.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/WinService.dsw -------------------------------------------------------------------------------- /Project/PBSrv/WinService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/WinService.sln -------------------------------------------------------------------------------- /Project/PBSrv/WinService.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/WinService.vcproj -------------------------------------------------------------------------------- /Project/PBSrv/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/stdafx.cpp -------------------------------------------------------------------------------- /Project/PBSrv/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBSrv/stdafx.h -------------------------------------------------------------------------------- /Project/PBStart/PBStart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart.sln -------------------------------------------------------------------------------- /Project/PBStart/PBStart/CLoadDriver_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/CLoadDriver_2.cpp -------------------------------------------------------------------------------- /Project/PBStart/PBStart/CLoadDriver_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/CLoadDriver_2.h -------------------------------------------------------------------------------- /Project/PBStart/PBStart/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/Common.cpp -------------------------------------------------------------------------------- /Project/PBStart/PBStart/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/Common.h -------------------------------------------------------------------------------- /Project/PBStart/PBStart/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/Config.cpp -------------------------------------------------------------------------------- /Project/PBStart/PBStart/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/Config.h -------------------------------------------------------------------------------- /Project/PBStart/PBStart/PBStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/PBStart.cpp -------------------------------------------------------------------------------- /Project/PBStart/PBStart/PBStart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/PBStart.h -------------------------------------------------------------------------------- /Project/PBStart/PBStart/PBStart.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/PBStart.vcproj -------------------------------------------------------------------------------- /Project/PBStart/PBStart/ParseCMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/ParseCMD.cpp -------------------------------------------------------------------------------- /Project/PBStart/PBStart/ParseCMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/ParseCMD.h -------------------------------------------------------------------------------- /Project/PBStart/PBStart/outputdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/outputdebug.cpp -------------------------------------------------------------------------------- /Project/PBStart/PBStart/outputdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/outputdebug.h -------------------------------------------------------------------------------- /Project/PBStart/PBStart/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/stdafx.cpp -------------------------------------------------------------------------------- /Project/PBStart/PBStart/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/stdafx.h -------------------------------------------------------------------------------- /Project/PBStart/PBStart/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/PBStart/PBStart/targetver.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/Common.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/Config.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/Config.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/ExportFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/ExportFunc.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/ExportFuncData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/ExportFuncData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/ExportFuncData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/ExportFuncData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/Exportfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/Exportfunc.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/HookHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/HookHelper.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/HookHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/HookHelper.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/HookHelperData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/HookHelperData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/HookHelperData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/HookHelperData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/MemoryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/MemoryManager.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/MemoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/MemoryManager.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/Outputdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/Outputdebug.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/Outputdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/Outputdebug.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBAdvapi32dll/PBAdvapi32dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBAdvapi32dll/PBAdvapi32dll.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBAdvapi32dll/PBAdvapi32dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBAdvapi32dll/PBAdvapi32dll.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBAdvapi32dll/PBAdvapi32dllData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBAdvapi32dll/PBAdvapi32dllData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBAdvapi32dll/PBAdvapi32dllData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBAdvapi32dll/PBAdvapi32dllData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBAlpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBAlpc.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBAlpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBAlpc.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBAlpcData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBAlpcData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBAlpcData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBAlpcData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBComData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBComData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBComData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBComData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBCreateProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBCreateProcess.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBCreateProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBCreateProcess.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBDynamicData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBDynamicData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBDynamicData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBDynamicData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBFiles.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBFiles.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBFilesData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBFilesData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBFilesData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBFilesData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBIPStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBIPStore.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBIPStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBIPStore.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBLoad.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBLoad.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBLoadData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBLoadData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBLoadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBLoadData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBMsidll/PBMsidll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBMsidll/PBMsidll.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBMsidll/PBMsidll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBMsidll/PBMsidll.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBOle32dll/PBOle32dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBOle32dll/PBOle32dll.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBOle32dll/PBOle32dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBOle32dll/PBOle32dll.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBOle32dll/PBOle32dllData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBOle32dll/PBOle32dllData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBOle32dll/PBOle32dllData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBOle32dll/PBOle32dllData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBRegs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBRegs.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBRegs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBRegs.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBRegsData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBRegsData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBRegsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBRegsData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBServices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBServices.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBServices.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBServicesData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBServicesData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBServicesData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBServicesData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBSetupapidll/PBSetupapidll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBSetupapidll/PBSetupapidll.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBSetupapidll/PBSetupapidll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBSetupapidll/PBSetupapidll.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBSetupapidll/PBSetupapidllData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBSetupapidll/PBSetupapidllData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBSetupapidll/PBSetupapidllData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBSetupapidll/PBSetupapidllData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBShell32dll/PBShell32dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBShell32dll/PBShell32dll.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBShell32dll/PBShell32dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBShell32dll/PBShell32dll.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBToken.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBToken.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBTokenData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBTokenData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBTokenData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBTokenData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBUser32dll/PBUser32dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBUser32dll/PBUser32dll.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBUser32dll/PBUser32dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBUser32dll/PBUser32dll.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBUser32dll/PBUser32dllData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBUser32dll/PBUser32dllData.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBUser32dll/PBUser32dllData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBUser32dll/PBUser32dllData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBUser32dll/PBUser32dllFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBUser32dll/PBUser32dllFunctions.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBUser32dll/PBUser32dllFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBUser32dll/PBUser32dllFunctions.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBWtsapi32dll/PBWtsapi32dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBWtsapi32dll/PBWtsapi32dll.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/PBWtsapi32dll/PBWtsapi32dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/PBWtsapi32dll/PBWtsapi32dll.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/ProteinBoxDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/ProteinBoxDLL.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/ProteinBoxDLL.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/ProteinBoxDLL.dsp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/ProteinBoxDLL.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/ProteinBoxDLL.dsw -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/ProteinBoxDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/ProteinBoxDLL.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/ProteinBoxDLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/ProteinBoxDLL.sln -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/ProteinBoxDLL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/ProteinBoxDLL.vcproj -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/StdAfx.cpp -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/StdAfx.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/common.h -------------------------------------------------------------------------------- /Project/ProteinBoxDLL/mhooklib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDLL/mhooklib.lib -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/1.rc -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Common.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Common.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Config.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Config.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ConfigData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ConfigData.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ConfigData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ConfigData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ConfigThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ConfigThread.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ConfigThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ConfigThread.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/CreateDirOrLink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/CreateDirOrLink.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/CreateDirOrLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/CreateDirOrLink.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/DisableForceProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/DisableForceProcess.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/DisableForceProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/DisableForceProcess.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/DispatchIoctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/DispatchIoctl.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/DispatchIoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/DispatchIoctl.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/DoWork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/DoWork.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/DoWork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/DoWork.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/DuplicateObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/DuplicateObject.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/DuplicateObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/DuplicateObject.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/EnumBoxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/EnumBoxs.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/EnumBoxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/EnumBoxs.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ForceRunList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ForceRunList.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ForceRunList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ForceRunList.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/GetFileName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/GetFileName.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/GetFileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/GetFileName.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/GetInjectSaveArea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/GetInjectSaveArea.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/GetInjectSaveArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/GetInjectSaveArea.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/GetVersion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/GetVersion.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/GetVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/GetVersion.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/GrayList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/GrayList.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/GrayList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/GrayList.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/HookEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/HookEngine.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ImageNotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ImageNotify.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ImageNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ImageNotify.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/InjectDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/InjectDll.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/InjectDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/InjectDll.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/InlineEngine.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/InlineEngine.lib -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/LDasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/LDasm.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Memory.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Memory.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Notify.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Notify.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ObjectData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ObjectData.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ObjectData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ObjectData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ObjectHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ObjectHook.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ObjectHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ObjectHook.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ObjectProc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ObjectProc.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ObjectProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ObjectProc.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProcessData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProcessData.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProcessData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProcessData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProcessNofity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProcessNofity.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProcessNofity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProcessNofity.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProteinBoxDrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProteinBoxDrv.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProteinBoxDrv.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProteinBoxDrv.dsp -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProteinBoxDrv.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProteinBoxDrv.dsw -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProteinBoxDrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProteinBoxDrv.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProteinBoxDrv.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProteinBoxDrv.idc -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProteinBoxDrv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProteinBoxDrv.sln -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ProteinBoxDrv.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ProteinBoxDrv.vcproj -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/RegHiveData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/RegHiveData.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/RegHiveData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/RegHiveData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/SSDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/SSDT.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/SSDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/SSDT.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/SandboxsList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/SandboxsList.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/SandboxsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/SandboxsList.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/SdtData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/SdtData.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/SdtData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/SdtData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Security.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Security.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/SecurityData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/SecurityData.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/SecurityData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/SecurityData.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ShadowSSDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ShadowSSDT.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ShadowSSDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ShadowSSDT.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ShadowSSDTProc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ShadowSSDTProc.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ShadowSSDTProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ShadowSSDTProc.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/StartProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/StartProcess.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/StartProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/StartProcess.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Version.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/Version.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/WhiteOrBlack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/WhiteOrBlack.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/WhiteOrBlack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/WhiteOrBlack.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/asm_xde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/asm_xde.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/bin/i386/ProteinBoxDrv.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/bin/i386/ProteinBoxDrv.sys -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ddkbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ddkbuild.bat -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/ldasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/ldasm.c -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/makefile -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/resource.h -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/sources -------------------------------------------------------------------------------- /Project/ProteinBoxDrv/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/ProteinBoxDrv/struct.h -------------------------------------------------------------------------------- /Project/TestIoctlM/CLoadDriver_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/CLoadDriver_2.cpp -------------------------------------------------------------------------------- /Project/TestIoctlM/CLoadDriver_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/CLoadDriver_2.h -------------------------------------------------------------------------------- /Project/TestIoctlM/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/Config.cpp -------------------------------------------------------------------------------- /Project/TestIoctlM/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/Config.h -------------------------------------------------------------------------------- /Project/TestIoctlM/Ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/Ioctl.h -------------------------------------------------------------------------------- /Project/TestIoctlM/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/StdAfx.cpp -------------------------------------------------------------------------------- /Project/TestIoctlM/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/StdAfx.h -------------------------------------------------------------------------------- /Project/TestIoctlM/TestIoctlM.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/TestIoctlM.clw -------------------------------------------------------------------------------- /Project/TestIoctlM/TestIoctlM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/TestIoctlM.cpp -------------------------------------------------------------------------------- /Project/TestIoctlM/TestIoctlM.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/TestIoctlM.dsp -------------------------------------------------------------------------------- /Project/TestIoctlM/TestIoctlM.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/TestIoctlM.dsw -------------------------------------------------------------------------------- /Project/TestIoctlM/TestIoctlM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/TestIoctlM.h -------------------------------------------------------------------------------- /Project/TestIoctlM/TestIoctlM.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/TestIoctlM.rc -------------------------------------------------------------------------------- /Project/TestIoctlM/TestIoctlM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/TestIoctlM.sln -------------------------------------------------------------------------------- /Project/TestIoctlM/TestIoctlM.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/TestIoctlM.vcproj -------------------------------------------------------------------------------- /Project/TestIoctlM/TestIoctlMDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/TestIoctlMDlg.cpp -------------------------------------------------------------------------------- /Project/TestIoctlM/TestIoctlMDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/TestIoctlMDlg.h -------------------------------------------------------------------------------- /Project/TestIoctlM/Work.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/Work.cpp -------------------------------------------------------------------------------- /Project/TestIoctlM/Work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/Work.h -------------------------------------------------------------------------------- /Project/TestIoctlM/outputdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/outputdebug.cpp -------------------------------------------------------------------------------- /Project/TestIoctlM/outputdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/outputdebug.h -------------------------------------------------------------------------------- /Project/TestIoctlM/res/TestIoctlM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/res/TestIoctlM.ico -------------------------------------------------------------------------------- /Project/TestIoctlM/res/TestIoctlM.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/res/TestIoctlM.rc2 -------------------------------------------------------------------------------- /Project/TestIoctlM/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/resource.h -------------------------------------------------------------------------------- /Project/TestIoctlM/xp.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclon/Proteibox/HEAD/Project/TestIoctlM/xp.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Proteibox 2 | a sandbox project by sudami 3 | --------------------------------------------------------------------------------