├── ChangeLog ├── HACKING ├── LICENSE ├── README.md ├── TODO ├── common ├── common.h ├── debug.cpp ├── debug.h ├── utils.cpp └── yara.h ├── create_release.bat ├── images ├── icon.ico └── taskbar.ico ├── installer ├── create_installer.bat ├── dllLoad32.cfg ├── installer.wxs ├── rules.yar └── setVersion.py ├── libs ├── Win32 │ └── libyara.lib └── x64 │ └── libyara.lib ├── ohips_cpp.sln ├── ohips_cs.sln ├── ohipsfs ├── dllmain.cpp ├── firststage.rc └── ohipsfs.vcxproj ├── ohipsp ├── dllmain.cpp ├── getSettings.cpp ├── monitorMemUsage.cpp ├── ohipsp.vcxproj ├── protectMemory.cpp ├── protector.h ├── protector.rc ├── scanMemory.cpp └── ui.cpp ├── ohipssvc ├── OhipsMonitor.cs ├── Properties │ └── AssemblyInfo.cs ├── WindowsService.cs └── ohipssvc.csproj ├── ohipsui ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── TrayIcon.cs ├── TrayIcon.resx └── ohipsui.csproj └── test ├── Adobe_Flash_CVE-2009-1869_v1_080309 ├── Exploit.swf ├── TriggerFunc.swf ├── TriggerVuln.swf └── exploit.htm ├── README.txt ├── SwfSpray.hx ├── SwfSpray.swf ├── generate.sh ├── miniPDF.py ├── spray-inline_image.py ├── spray-js.py ├── spray-swf.py └── swfspray_support.txt /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ChangeLog -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | Figure out why firefox unloads my dll's -------------------------------------------------------------------------------- /common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/common/common.h -------------------------------------------------------------------------------- /common/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/common/debug.cpp -------------------------------------------------------------------------------- /common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/common/debug.h -------------------------------------------------------------------------------- /common/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/common/utils.cpp -------------------------------------------------------------------------------- /common/yara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/common/yara.h -------------------------------------------------------------------------------- /create_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/create_release.bat -------------------------------------------------------------------------------- /images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/images/icon.ico -------------------------------------------------------------------------------- /images/taskbar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/images/taskbar.ico -------------------------------------------------------------------------------- /installer/create_installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/installer/create_installer.bat -------------------------------------------------------------------------------- /installer/dllLoad32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/installer/dllLoad32.cfg -------------------------------------------------------------------------------- /installer/installer.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/installer/installer.wxs -------------------------------------------------------------------------------- /installer/rules.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/installer/rules.yar -------------------------------------------------------------------------------- /installer/setVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/installer/setVersion.py -------------------------------------------------------------------------------- /libs/Win32/libyara.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/libs/Win32/libyara.lib -------------------------------------------------------------------------------- /libs/x64/libyara.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/libs/x64/libyara.lib -------------------------------------------------------------------------------- /ohips_cpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohips_cpp.sln -------------------------------------------------------------------------------- /ohips_cs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohips_cs.sln -------------------------------------------------------------------------------- /ohipsfs/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsfs/dllmain.cpp -------------------------------------------------------------------------------- /ohipsfs/firststage.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsfs/firststage.rc -------------------------------------------------------------------------------- /ohipsfs/ohipsfs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsfs/ohipsfs.vcxproj -------------------------------------------------------------------------------- /ohipsp/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsp/dllmain.cpp -------------------------------------------------------------------------------- /ohipsp/getSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsp/getSettings.cpp -------------------------------------------------------------------------------- /ohipsp/monitorMemUsage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsp/monitorMemUsage.cpp -------------------------------------------------------------------------------- /ohipsp/ohipsp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsp/ohipsp.vcxproj -------------------------------------------------------------------------------- /ohipsp/protectMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsp/protectMemory.cpp -------------------------------------------------------------------------------- /ohipsp/protector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsp/protector.h -------------------------------------------------------------------------------- /ohipsp/protector.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsp/protector.rc -------------------------------------------------------------------------------- /ohipsp/scanMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsp/scanMemory.cpp -------------------------------------------------------------------------------- /ohipsp/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsp/ui.cpp -------------------------------------------------------------------------------- /ohipssvc/OhipsMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipssvc/OhipsMonitor.cs -------------------------------------------------------------------------------- /ohipssvc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipssvc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ohipssvc/WindowsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipssvc/WindowsService.cs -------------------------------------------------------------------------------- /ohipssvc/ohipssvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipssvc/ohipssvc.csproj -------------------------------------------------------------------------------- /ohipsui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsui/Program.cs -------------------------------------------------------------------------------- /ohipsui/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsui/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ohipsui/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsui/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ohipsui/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsui/Properties/Resources.resx -------------------------------------------------------------------------------- /ohipsui/TrayIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsui/TrayIcon.cs -------------------------------------------------------------------------------- /ohipsui/TrayIcon.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsui/TrayIcon.resx -------------------------------------------------------------------------------- /ohipsui/ohipsui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/ohipsui/ohipsui.csproj -------------------------------------------------------------------------------- /test/Adobe_Flash_CVE-2009-1869_v1_080309/Exploit.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/Adobe_Flash_CVE-2009-1869_v1_080309/Exploit.swf -------------------------------------------------------------------------------- /test/Adobe_Flash_CVE-2009-1869_v1_080309/TriggerFunc.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/Adobe_Flash_CVE-2009-1869_v1_080309/TriggerFunc.swf -------------------------------------------------------------------------------- /test/Adobe_Flash_CVE-2009-1869_v1_080309/TriggerVuln.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/Adobe_Flash_CVE-2009-1869_v1_080309/TriggerVuln.swf -------------------------------------------------------------------------------- /test/Adobe_Flash_CVE-2009-1869_v1_080309/exploit.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/Adobe_Flash_CVE-2009-1869_v1_080309/exploit.htm -------------------------------------------------------------------------------- /test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/README.txt -------------------------------------------------------------------------------- /test/SwfSpray.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/SwfSpray.hx -------------------------------------------------------------------------------- /test/SwfSpray.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/SwfSpray.swf -------------------------------------------------------------------------------- /test/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/generate.sh -------------------------------------------------------------------------------- /test/miniPDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/miniPDF.py -------------------------------------------------------------------------------- /test/spray-inline_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/spray-inline_image.py -------------------------------------------------------------------------------- /test/spray-js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/spray-js.py -------------------------------------------------------------------------------- /test/spray-swf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdabbad00/OpenHIPS/HEAD/test/spray-swf.py -------------------------------------------------------------------------------- /test/swfspray_support.txt: -------------------------------------------------------------------------------- 1 | "N=300&minichunk=<<<>>>" --------------------------------------------------------------------------------