├── README.md ├── android ├── kernel_waiter_exploit │ ├── check.c │ ├── selinux4_check.c │ └── selinux4_exploit.c ├── local2root │ ├── expl_check.c │ ├── exploit.c │ ├── exploit_list.c │ ├── kallsyms.c │ ├── kallsyms_in_memory.c │ ├── local_exploit.c │ └── runner.c └── put_user_exploit │ ├── check_put_user_exploit.c │ ├── lib_put_user.c │ └── put_user_exploit.c └── vector-exploit ├── .gitignore ├── CHANGELOG ├── VERSION ├── build.rb ├── ht-2012-002-FakeOSX ├── fakedoc.rb ├── info.yaml └── resources │ ├── jpeg.icns │ ├── jpg.icns │ ├── pdf.icns │ └── rtf.icns ├── ht-2012-007-Cydia ├── bin │ ├── ar.exe │ ├── cygiconv-2.dll │ ├── cygintl-8.dll │ └── cygwin1.dll ├── cydia.rb ├── info.yaml └── resources │ ├── Packages │ ├── Release │ ├── control.tar.gz │ ├── control │ ├── control │ ├── postinst │ ├── postrm │ ├── preinst │ └── prerm │ └── debian-binary ├── ht-2013-002-Word ├── exploit.py ├── info-fake.yaml ├── info-good.yaml ├── info.yaml ├── pylzma.egg │ ├── EGG-INFO │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── native_libs.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt │ ├── py7zlib.py │ ├── py7zlib.pyc │ ├── pylzma.py │ ├── pylzma.pyc │ └── pylzma.pyd └── resources │ ├── activeX │ ├── _rels │ │ └── activeX1.xml.rels │ ├── activeX1.bin │ └── activeX1.xml │ ├── exploit.swf │ ├── media │ └── image1000.wmf │ ├── shellcode │ ├── shellcode64 │ ├── shellcode_demo │ └── zip.exe ├── ht-2013-003-Powerpoint ├── exploit.py ├── info-fake.yaml ├── info-good.yaml ├── info.yaml ├── pylzma.egg │ ├── EGG-INFO │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── native_libs.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt │ ├── py7zlib.py │ ├── py7zlib.pyc │ ├── pylzma.py │ ├── pylzma.pyc │ └── pylzma.pyd └── resources │ ├── activeX │ ├── _rels │ │ └── activeX1.xml.rels │ ├── activeX1.binx │ └── activeX1.xml │ ├── drawings │ ├── _rels │ │ └── vmlDrawing1003.vml.rels │ └── vmlDrawing1003.vml │ ├── exploit.swf │ ├── media │ └── image1000.wmf │ ├── shellcode │ ├── shellcode64 │ └── zip.exe ├── ht-2013-004-IE ├── exploit.py ├── info-fake.yaml ├── info.yaml ├── pylzma.egg │ ├── EGG-INFO │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── native_libs.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt │ ├── py7zlib.py │ ├── py7zlib.pyc │ ├── pylzma.py │ ├── pylzma.pyc │ └── pylzma.pyd └── resources │ ├── PMIEFuck-Java.dll │ ├── PMIEFuck-WinWord.dll │ ├── Shellcode-Stage2-IE.exe │ ├── ajax-loader.gif │ ├── exploit.swf │ ├── html.template.txt │ ├── owned.docm │ ├── shellcode │ └── zip.exe ├── ht-2014-002-FakeWin ├── fakedoc.exe ├── info.yaml ├── installer.exe ├── msvcp110.dll ├── msvcr110.dll ├── resources │ ├── avi.ico │ ├── bmp.ico │ ├── doc.ico │ ├── eml.ico │ ├── exe.ico │ ├── gif.ico │ ├── html.ico │ ├── jpg.ico │ ├── mp3.ico │ ├── pdf.ico │ ├── png.ico │ ├── ppt.ico │ ├── rar.ico │ ├── rtf.ico │ ├── txt.ico │ ├── vsd.ico │ ├── xls.ico │ └── zip.ico └── sample.txt ├── ht-2014-003-ExeSelfDelete ├── fakedoc.exe ├── info.yaml ├── installer.exe ├── msvcp110.dll ├── msvcr110.dll └── resources │ ├── avi.ico │ ├── bmp.ico │ ├── doc.ico │ ├── eml.ico │ ├── exe.ico │ ├── gif.ico │ ├── html.ico │ ├── jpg.ico │ ├── mp3.ico │ ├── pdf.ico │ ├── png.ico │ ├── ppt.ico │ ├── rar.ico │ ├── rtf.ico │ ├── txt.ico │ ├── vsd.ico │ ├── xls.ico │ └── zip.ico └── src ├── PMIEFuck-Java ├── Debug │ ├── PMIEFuck-Java.exe │ ├── PMIEFuck-Java.ilk │ └── PMIEFuck-Java.pdb ├── PMIEFuck-Java.sln ├── PMIEFuck-Java.v11.suo ├── PMIEFuck-Java │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── PMIEFuck-Java.Build.CppClean.log │ │ ├── PMIEFuck-Java.exe.intermediate.manifest │ │ ├── PMIEFuck-Java.lastbuildstate │ │ ├── PMIEFuck-Java.log │ │ ├── Source.obj │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ ├── vc100.idb │ │ └── vc100.pdb │ ├── PMIEFuck-Java.vcxproj │ ├── PMIEFuck-Java.vcxproj.filters │ ├── PMIEFuck-Java.vcxproj.user │ ├── Release-EXE │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── PMIEFuck-Java.Build.CppClean.log │ │ ├── PMIEFuck-Java.lastbuildstate │ │ ├── PMIEFuck-Java.log │ │ ├── PMIEFuck-Java.unsuccessfulbuild │ │ ├── cl.command.1.tlog │ │ └── vc100.pdb │ ├── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── PMIEFuck-Java.Build.CppClean.log │ │ ├── PMIEFuck-Java.lastbuildstate │ │ ├── PMIEFuck-Java.log │ │ ├── PMIEFuck-Java.write.1.tlog │ │ ├── Source.obj │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ └── vc110.pdb │ └── Source.cpp └── Release │ ├── PMIEFuck-Java.dll │ ├── PMIEFuck-Java.exp │ └── PMIEFuck-Java.lib ├── PMIEFuck-WinWord ├── Debug │ ├── PMIEFuck-WinWord.exe │ ├── PMIEFuck-WinWord.exp │ ├── PMIEFuck-WinWord.ilk │ ├── PMIEFuck-WinWord.lib │ └── PMIEFuck-WinWord.pdb ├── Doc1.docm ├── PMIEFuck-WinWord.sln ├── PMIEFuck-WinWord.v11.suo ├── PMIEFuck-WinWord │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── PMIEFuck-WinWord.Build.CppClean.log │ │ ├── PMIEFuck-WinWord.lastbuildstate │ │ ├── PMIEFuck-WinWord.log │ │ ├── PMIEFuck-WinWord.write.1.tlog │ │ ├── Source.obj │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mso.tlh │ │ ├── mso.tli │ │ ├── msword.tlh │ │ ├── msword.tli │ │ ├── vbe6ext.tlh │ │ ├── vbe6ext.tli │ │ ├── vc110.idb │ │ └── vc110.pdb │ ├── PMIEFuck-WinWord.vcxproj │ ├── PMIEFuck-WinWord.vcxproj.filters │ ├── PMIEFuck-WinWord.vcxproj.user │ ├── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── PMIEFuck-WinWord.Build.CppClean.log │ │ ├── PMIEFuck-WinWord.lastbuildstate │ │ ├── PMIEFuck-WinWord.log │ │ ├── PMIEFuck-WinWord.write.1.tlog │ │ ├── Source.obj │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mso.tlh │ │ ├── mso.tli │ │ ├── msword.tlh │ │ ├── msword.tli │ │ ├── vbe6ext.tlh │ │ ├── vbe6ext.tli │ │ └── vc110.pdb │ ├── ReleaseDLL │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── PMIEFuck-WinWord.Build.CppClean.log │ │ ├── PMIEFuck-WinWord.dll.intermediate.manifest │ │ ├── PMIEFuck-WinWord.lastbuildstate │ │ ├── PMIEFuck-WinWord.log │ │ ├── PMIEFuck-WinWord.write.1.tlog │ │ ├── Source.obj │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mso.tlh │ │ ├── mso.tli │ │ ├── msword.tlh │ │ ├── msword.tli │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ ├── vbe6ext.tlh │ │ ├── vbe6ext.tli │ │ └── vc100.pdb │ ├── ReleaseOK │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── PMIEFuck-WinWord.Build.CppClean.log │ │ ├── PMIEFuck-WinWord.lastbuildstate │ │ ├── PMIEFuck-WinWord.log │ │ ├── PMIEFuck-WinWord.unsuccessfulbuild │ │ ├── PMIEFuck-WinWord.write.1.tlog │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mso.tlh │ │ ├── mso.tli │ │ ├── msword.tlh │ │ ├── msword.tli │ │ ├── vbe6ext.tlh │ │ ├── vbe6ext.tli │ │ ├── vc110.idb │ │ └── vc110.pdb │ └── Source.cpp ├── Release │ ├── PMIEFuck-WinWord.exe │ ├── PMIEFuck-WinWord.exp │ ├── PMIEFuck-WinWord.lib │ └── PMIEFuck-WinWord.pdb ├── ReleaseDLL │ ├── PMIEFuck-WinWord.dll │ ├── PMIEFuck-WinWord.exp │ └── PMIEFuck-WinWord.lib └── ReleaseOK │ ├── PMIEFuck-WinWord.exe │ ├── PMIEFuck-WinWord.exp │ ├── PMIEFuck-WinWord.lib │ └── PMIEFuck-WinWord.pdb ├── Shellcode-Stage1 ├── Debug │ ├── Loader.exe │ ├── Loader.ilk │ └── Loader.pdb ├── Loader.sln ├── Loader.v11.suo ├── Loader │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Loader.Build.CppClean.log │ │ ├── Loader.lastbuildstate │ │ ├── Loader.log │ │ ├── Loader.obj │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── vc110.idb │ │ └── vc110.pdb │ ├── Loader.cpp │ ├── Loader.vcxproj │ ├── Loader.vcxproj.filters │ ├── Loader.vcxproj.user │ ├── ORDER.txt │ ├── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Loader.Build.CppClean.log │ │ ├── Loader.lastbuildstate │ │ ├── Loader.log │ │ ├── Loader.obj │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ └── vc110.pdb │ ├── loader.h │ └── winapi.h └── Release │ ├── Loader.exe │ └── Loader.pdb ├── Shellcode-Stage2-IE ├── Debug │ ├── Shellcode-Stage2-IE.exe │ ├── Shellcode-Stage2-IE.ilk │ └── Shellcode-Stage2-IE.pdb ├── Release │ └── Shellcode-Stage2-IE.exe ├── Shellcode-Stage2-IE.sln ├── Shellcode-Stage2-IE.v11.suo └── Shellcode-Stage2-IE │ ├── BinPatchedVars.h │ ├── Debug │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Shellcode-Stage2-IE.Build.CppClean.log │ ├── Shellcode-Stage2-IE.exe.intermediate.manifest │ ├── Shellcode-Stage2-IE.lastbuildstate │ ├── Shellcode-Stage2-IE.log │ ├── Source.obj │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ ├── vc100.idb │ └── vc100.pdb │ ├── Release │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Shellcode-Stage2-IE.Build.CppClean.log │ ├── Shellcode-Stage2-IE.exe.intermediate.manifest │ ├── Shellcode-Stage2-IE.lastbuildstate │ ├── Shellcode-Stage2-IE.log │ ├── Source.obj │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ └── vc100.pdb │ ├── Shellcode-Stage2-IE.vcxproj │ ├── Shellcode-Stage2-IE.vcxproj.filters │ ├── Shellcode-Stage2-IE.vcxproj.user │ ├── Source.cpp │ └── Source.h ├── edn2 ├── 2013-002-Word-TLS │ ├── build │ └── resources │ │ ├── activeX │ │ ├── _rels │ │ │ └── activeX1.xml.rels │ │ ├── activeX1.bin │ │ └── activeX1.xml │ │ ├── empty.swf │ │ ├── exploit.swf │ │ ├── media │ │ └── image1000.wmf │ │ ├── shellcode │ │ ├── shellcode64 │ │ └── xp_filter.py ├── 2013-003-PowerPoint-TLS │ ├── build │ └── resources │ │ ├── activeX │ │ ├── _rels │ │ │ └── activeX1.xml.rels │ │ ├── activeX1.binx │ │ └── activeX1.xml │ │ ├── drawings │ │ ├── _rels │ │ │ └── vmlDrawing1003.vml.rels │ │ └── vmlDrawing1003.vml │ │ ├── empty.swf │ │ ├── exploit.swf │ │ ├── media │ │ └── image1000.wmf │ │ ├── shellcode │ │ ├── shellcode64 │ │ └── xp_filter.py ├── 2013-005-IE-TLS │ ├── build │ └── resources │ │ ├── PMIEFuck-Java.dll │ │ ├── PMIEFuck-WinWord.dll │ │ ├── Shellcode-Stage2-IE.exe │ │ ├── Shellcode-Stage2-IE.exe-validate-ca │ │ ├── ajax-loader.gif │ │ ├── empty.swf │ │ ├── exploit.swf │ │ ├── exploit.swf-validate-ca │ │ ├── owned.docm │ │ ├── shellcode │ │ ├── shellcode-validate-ca │ │ └── xp_filter.py └── 2014-004-AndroidBrowser │ ├── build │ ├── exploit │ ├── go.html │ ├── module.so │ ├── redir.js │ ├── script.js │ ├── slowaes.py │ ├── stage1_xml.py │ ├── stage4.js │ ├── stage4_js.py │ └── stylesheet.xsl ├── exploit_vps ├── genera_hash_scout │ └── genera_hash_vps_exploit.py └── html │ ├── .htaccess │ ├── admin │ ├── .accounts │ ├── .htaccess │ ├── 2013-002-Word │ │ ├── exploit.py │ │ └── resources │ │ │ ├── activeX │ │ │ ├── _rels │ │ │ │ └── activeX1.xml.rels │ │ │ ├── activeX1.bin │ │ │ └── activeX1.xml │ │ │ ├── exploit.swf │ │ │ ├── exploit.swf.1 │ │ │ ├── media │ │ │ └── image1000.wmf │ │ │ ├── shellcode │ │ │ ├── shellcode.1 │ │ │ ├── shellcode.2 │ │ │ ├── shellcode_demo │ │ │ └── zip.exe │ ├── 2013-003-PowerPoint │ │ ├── exploit.py │ │ └── resources │ │ │ ├── activeX │ │ │ ├── _rels │ │ │ │ └── activeX1.xml.rels │ │ │ ├── activeX1.bin │ │ │ └── activeX1.xml │ │ │ ├── drawings │ │ │ ├── _rels │ │ │ │ └── vmlDrawing1003.vml.rels │ │ │ └── vmlDrawing1003.vml │ │ │ ├── exploit.swf │ │ │ ├── media │ │ │ └── image1000.wmf │ │ │ ├── shellcode │ │ │ └── zip.exe │ ├── index.html │ ├── index.html.old │ ├── index_d3m0.html │ ├── index_ppsx.html │ ├── upload.php │ ├── upload.php.old │ └── upload_ppsx.php │ ├── download.php │ └── files │ └── .htaccess ├── flash-0day-vitaly1 ├── New Project.as3proj ├── bin │ ├── NewProject.swf │ ├── calc.htm │ ├── expressInstall.swf │ ├── index2.html │ ├── js │ │ └── swfobject.js │ └── mongoose-tiny-4.1.exe ├── obj │ ├── NewProjectConfig.old │ └── NewProjectConfig.xml └── src │ ├── Main.as │ ├── MyClass.as │ ├── MyClass1.as │ ├── MyClass2.as │ ├── MyUtils.as │ ├── ShellMac64.as │ ├── ShellWin32.as │ └── ShellWin64.as ├── flash-0day-vitaly2 ├── calc.htm ├── exp1 │ ├── MyClass.as │ ├── MyClass1.as │ ├── MyClass2.as │ ├── MyUtils.as │ ├── ShellMac64.as │ ├── ShellWin32.as │ ├── ShellWin64.as │ ├── exp1.fla │ └── exp1.swf └── read me.txt ├── flash0day ├── FlashDevelop-Project │ ├── Exploit.as3proj │ ├── bin │ │ ├── Exploit - Copy.swf │ │ ├── Exploit.swf │ │ ├── compressed.swf │ │ ├── exploit.dat │ │ ├── index.html │ │ ├── js │ │ │ └── swfobject.js │ │ ├── viewerWrapper.html │ │ └── viewerWrapper.html~ │ ├── comp │ ├── obj │ │ ├── ExploitConfig.old │ │ └── ExploitConfig.xml │ ├── src │ │ ├── MainTimeLine.as │ │ └── Rabbit.as │ └── uncomp ├── cmd.TXT ├── compile_egg.bat ├── egghunt.asm ├── egghunt.exe └── egghunt.obj ├── ht-2012-002-FakeOSX └── TextEdit │ ├── TextEdit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── armored.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── armored.xcuserdatad │ │ └── xcschemes │ │ ├── TextEdit.xcscheme │ │ └── xcschememanagement.plist │ └── TextEdit │ ├── TextEdit-Prefix.pch │ ├── TextEdit.1 │ └── main.m ├── ht-Office-Shellcode-No-Respawn ├── DocX │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Shellcode.Build.CppClean.log │ ├── Shellcode.exe │ ├── Shellcode.exe.intermediate.manifest │ ├── Shellcode.lastbuildstate │ ├── Shellcode.log │ ├── Shellcode.pdb │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── loader.obj │ ├── main.obj │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ └── vc100.pdb ├── FUNC_ORDER.txt ├── PPSX │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Shellcode.Build.CppClean.log │ ├── Shellcode.exe │ ├── Shellcode.exe.intermediate.manifest │ ├── Shellcode.lastbuildstate │ ├── Shellcode.log │ ├── Shellcode.pdb │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── loader.obj │ ├── main.obj │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ └── vc100.pdb ├── README.txt ├── Release │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Shellcode.Build.CppClean.log │ ├── Shellcode.exe │ ├── Shellcode.exe.intermediate.manifest │ ├── Shellcode.lastbuildstate │ ├── Shellcode.log │ ├── Shellcode.pdb │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── loader.obj │ ├── main.obj │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ └── vc100.pdb ├── Shellcode.sln ├── Shellcode.v11.suo ├── Shellcode.vcxproj ├── Shellcode.vcxproj.filters ├── Shellcode.vcxproj.user ├── crt.h ├── loader.cpp ├── loader.h ├── main.cpp ├── main.h ├── winapi.h └── x64 │ └── DocX │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Shellcode.Build.CppClean.log │ ├── Shellcode.exe │ ├── Shellcode.exe.intermediate.manifest │ ├── Shellcode.lastbuildstate │ ├── Shellcode.log │ ├── Shellcode.pdb │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── loader.obj │ ├── main.obj │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ └── vc100.pdb ├── ht-Office-Shellcode ├── DocX │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Shellcode.Build.CppClean.log │ ├── Shellcode.lastbuildstate │ ├── Shellcode.log │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ └── mt.write.1.tlog ├── FUNC_ORDER.txt ├── PPSX │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Shellcode.Build.CppClean.log │ ├── Shellcode.exe │ ├── Shellcode.exe.intermediate.manifest │ ├── Shellcode.lastbuildstate │ ├── Shellcode.log │ ├── Shellcode.pdb │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── loader.obj │ ├── main.obj │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ └── vc100.pdb ├── README.txt ├── Release │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Shellcode.Build.CppClean.log │ ├── Shellcode.exe │ ├── Shellcode.exe.intermediate.manifest │ ├── Shellcode.lastbuildstate │ ├── Shellcode.log │ ├── Shellcode.pdb │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── loader.obj │ ├── main.obj │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ └── vc100.pdb ├── Shellcode.sln ├── Shellcode.v11.suo ├── Shellcode.vcxproj ├── Shellcode.vcxproj.filters ├── Shellcode.vcxproj.user ├── crt.h ├── loader.cpp ├── loader.h ├── main.cpp ├── main.h └── winapi.h ├── ht-android-shellcode ├── 2nd_stage.s ├── 2nd_stage.s~ ├── 2nd_stage_dbg.s ├── 2nd_stage_dbg.s~ ├── 3rd_stage.s ├── 3rd_stage.s~ ├── 3rd_stage_shared_object.s ├── 3rd_stage_shared_object.s~ ├── 3rd_stage_shared_object_cache.s ├── 3rd_stage_shared_object_cache.s~ ├── 3rd_stage_shared_object_cache_debug.s ├── 3rd_stage_shared_object_cache_debug.s~ ├── 803d31218de8113a06af2cabdfcb62b2.txt ├── a.out ├── asdf ├── build_commands.txt ├── example.c ├── example.c~ ├── fail.s ├── fail.s~ ├── giovanni.s ├── giovanni.s~ ├── hello-jni │ ├── AndroidManifest.xml │ ├── default.properties │ ├── jni │ │ ├── Android.mk │ │ └── hello-jni.c │ ├── res │ │ └── values │ │ │ └── strings.xml │ ├── src │ │ └── com │ │ │ └── example │ │ │ └── hellojni │ │ │ └── HelloJni.java │ └── tests │ │ ├── AndroidManifest.xml │ │ ├── default.properties │ │ └── src │ │ └── com │ │ └── example │ │ └── hellojni │ │ └── HelloJniTest.java ├── hello.c ├── hello.c~ ├── hello.o ├── hook_arm.s ├── hook_arm.s~ ├── jni │ ├── Android.mk │ ├── Android.mk~ │ ├── test.c │ ├── test.c~ │ ├── test_lib.c │ ├── test_lib.c~ │ ├── test_lib.h │ └── test_lib.h~ ├── libc.so ├── libs │ └── armeabi │ │ └── test ├── log_howto.txt ├── mylibs │ └── libtest_lib.so ├── obj │ └── local │ │ └── armeabi │ │ ├── libtest_lib.so │ │ ├── objs │ │ ├── test │ │ │ ├── test.o │ │ │ ├── test.o.d │ │ │ ├── test_lib.o │ │ │ └── test_lib.o.d │ │ └── test_lib │ │ │ ├── test_lib.o │ │ │ └── test_lib.o.d │ │ └── test ├── pivot.s ├── pivot.s~ ├── scode2 ├── select │ ├── jni │ │ ├── .swp │ │ ├── Android.mk │ │ ├── Android.mk~ │ │ ├── asdf.c │ │ ├── asdf.c~ │ │ ├── poc.c │ │ └── poc.c~ │ ├── libs │ │ └── armeabi │ │ │ └── poc │ └── obj │ │ └── local │ │ └── armeabi │ │ ├── objs │ │ └── poc │ │ │ ├── poc.o │ │ │ └── poc.o.d │ │ └── poc ├── shared_object_eop │ ├── jni.tar.gz │ ├── jni │ │ ├── #GingerBreak.c# │ │ ├── #exp_gen.c# │ │ ├── #test.c# │ │ ├── Android.mk │ │ ├── Android.mk-exp_gen │ │ ├── Android.mk-install │ │ ├── Android.mk~ │ │ ├── GingerBreak.c │ │ ├── GingerBreak.c~ │ │ ├── asd │ │ ├── asd.c │ │ ├── asd.c~ │ │ ├── asd2.c │ │ ├── asd2.c~ │ │ ├── build.sh │ │ ├── build.sh~ │ │ ├── conn.c │ │ ├── conn.c~ │ │ ├── exp_gen.c │ │ ├── exp_gen.c~ │ │ ├── fingerprint.c │ │ ├── fingerprint.c~ │ │ ├── headers │ │ │ ├── android_filesystem_config.h │ │ │ ├── rcs_connection.h │ │ │ ├── rcs_connection.h~ │ │ │ ├── sockets.h │ │ │ └── sockets.h~ │ │ ├── install.c │ │ ├── install.c~ │ │ ├── install.h │ │ ├── install.h-back │ │ ├── install.h~ │ │ ├── lev_exp.c │ │ ├── lev_exp.c~ │ │ ├── levitator.c │ │ ├── levitator.c~ │ │ ├── libs │ │ │ └── libcutils.so │ │ ├── strace │ │ ├── su │ │ ├── test │ │ ├── test.c │ │ ├── test.c~ │ │ ├── test2 │ │ ├── test2.c │ │ ├── test2.c~ │ │ ├── test4.c │ │ ├── test4.c-back │ │ ├── test4.c~ │ │ ├── test5.c │ │ ├── test5.c~ │ │ ├── test6.c │ │ ├── test7.c │ │ ├── test7.c~ │ │ ├── test8.c │ │ ├── test8.c~ │ │ └── vold │ └── obj │ │ └── local │ │ └── armeabi │ │ ├── libfingerprint.so │ │ └── objs │ │ └── fingerprint │ │ ├── fingerprint.o │ │ └── fingerprint.o.d ├── shellcode.s ├── shellcode.s~ ├── shellcode_bn │ ├── jni │ │ ├── Android.mk │ │ ├── Android.mk~ │ │ ├── poc.c │ │ └── poc.c~ │ ├── libs │ │ └── armeabi │ │ │ └── poc │ └── obj │ │ └── local │ │ └── armeabi │ │ ├── objs │ │ └── poc │ │ │ ├── poc.o │ │ │ └── poc.o.d │ │ └── poc ├── shellcode_dl_exec.s ├── shellcode_dl_exec.s~ ├── shellcode_dl_exec_any_cache.s ├── shellcode_dl_exec_any_cache.s~ ├── shellcode_dl_exec_decypry_2fd.s ├── shellcode_dl_exec_key_param.s ├── shellcode_dl_exec_sdcard.s ├── shellcode_dl_exec_sdcard.s~ ├── shellcode_fingerfist.s ├── shellcode_fingerfist.s~ ├── shellcode_return_to_caller.s ├── shellcode_return_to_caller.s~ ├── shellcode_zergrush.s ├── shellcode_zergrush.s~ ├── skeleton │ ├── jni │ │ ├── Android.mk │ │ ├── Android.mk~ │ │ ├── poc.c │ │ └── poc.c~ │ ├── libs │ │ └── armeabi │ │ │ ├── poc │ │ │ └── test │ └── obj │ │ └── local │ │ └── armeabi │ │ ├── objs │ │ ├── poc │ │ │ ├── poc.o │ │ │ └── poc.o.d │ │ └── test │ │ │ ├── test.o │ │ │ └── test.o.d │ │ ├── poc │ │ └── test ├── start.c ├── start.o ├── system.tar.gz ├── template │ ├── Make │ └── Make~ └── thumb │ ├── example.c │ ├── example.c~ │ ├── hook.s │ ├── hook.s~ │ ├── hook_24.s │ ├── hook_24.s~ │ ├── hook_exp.s │ ├── hook_exp.s~ │ ├── hook_exp_dbg.s │ ├── hook_exp_dbg.s~ │ ├── hook_exp_frozen.s │ ├── hook_exp_frozen.s~ │ ├── hook_exp_test.s │ ├── hook_exp_test.s~ │ ├── hook_thumb_disas.s │ ├── hook_thumb_disas.s~ │ ├── pivot.s~ │ ├── thumb.s │ └── thumb.s~ ├── ht-webkit-Android23 ├── .config ├── .old │ └── 1466125380 │ │ ├── 1466125380_apk │ │ ├── 1466125380_libfingerprint.so │ │ ├── landing.html │ │ ├── redirect.html │ │ └── setup.txt ├── README.txt ├── README.txt~ ├── add_exploit_instance.py ├── cmdline ├── customer_provided_files_demo_single_page │ └── page.html ├── customer_provided_files_demo_two_pages │ ├── demov2.apk │ ├── landing.html │ ├── landing.html~ │ └── redirect.html ├── e72uds ├── exp_server.py ├── exp_server.pyc ├── exploit_dump.html ├── g1ml329py ├── gi21flm ├── le8s98 ├── leak_dump.html ├── libfingerprint.so ├── play │ ├── app-header-stripes.gif │ ├── b_8d5afc09.png │ ├── bg.jpg │ ├── chart.png │ ├── icon.png │ ├── main.html │ ├── main.html~ │ ├── play_css_ltr.css │ ├── play_css_ltr.css~ │ ├── play_logo.png │ └── screenshot_1.png ├── shell.txt ├── shell.txt~ ├── st21k ├── tea_compressed.js ├── test │ ├── demov2.apk │ └── index.html └── webkit_rc3_plus_tea.py └── ht-webkit-Android4-src ├── BUILDING ├── COMPATIBILITY ├── EDN_BUILD ├── SUPPORT_INSTALL ├── TNI └── redir_page.py ├── build.py ├── cc ├── compiler.jar └── xsltprocessor.js ├── docs ├── stage0_cloned_layout.jpg ├── stage0_memory_layout.jpg └── stage1_memory_layout.jpg ├── ext └── slowaes.py ├── installer └── PLACE_EXPLOIT_HERE ├── precompiled ├── debug │ ├── build │ ├── buildc │ ├── debug-tornado.py │ ├── debugserver.py │ ├── exploit │ ├── exploit_old │ ├── go.html │ ├── installer.apk │ ├── module.so │ ├── params.txt │ ├── redir.js │ ├── script.js │ ├── slowaes.py │ ├── stage1_xml.py │ ├── stage4.js │ ├── stage4_js.py │ ├── stylesheet.xsl │ └── tacgnol.log └── release │ ├── build │ ├── exploit │ ├── go.html │ ├── module.so │ ├── redir.js │ ├── script.js │ ├── slowaes.py │ ├── stage1_xml.py │ ├── stage4.js │ ├── stage4_js.py │ └── stylesheet.xsl ├── setup-html.sh ├── setup.sh └── src ├── callstub ├── Makefile ├── callstub.s ├── encode.py └── stub.c ├── debug-tornado.py ├── debugserver.py ├── edn_build.py ├── go.html ├── go.js ├── module └── jni │ ├── Android.mk │ ├── aes256.c │ ├── aes256.h │ └── module.c ├── redir.js ├── script.js ├── stage1_xml.py ├── stage4.js ├── stage4_js.py └── stylesheet.xsl /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/README.md -------------------------------------------------------------------------------- /android/kernel_waiter_exploit/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/kernel_waiter_exploit/check.c -------------------------------------------------------------------------------- /android/kernel_waiter_exploit/selinux4_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/kernel_waiter_exploit/selinux4_check.c -------------------------------------------------------------------------------- /android/kernel_waiter_exploit/selinux4_exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/kernel_waiter_exploit/selinux4_exploit.c -------------------------------------------------------------------------------- /android/local2root/expl_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/local2root/expl_check.c -------------------------------------------------------------------------------- /android/local2root/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/local2root/exploit.c -------------------------------------------------------------------------------- /android/local2root/exploit_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/local2root/exploit_list.c -------------------------------------------------------------------------------- /android/local2root/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/local2root/kallsyms.c -------------------------------------------------------------------------------- /android/local2root/kallsyms_in_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/local2root/kallsyms_in_memory.c -------------------------------------------------------------------------------- /android/local2root/local_exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/local2root/local_exploit.c -------------------------------------------------------------------------------- /android/local2root/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/local2root/runner.c -------------------------------------------------------------------------------- /android/put_user_exploit/check_put_user_exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/put_user_exploit/check_put_user_exploit.c -------------------------------------------------------------------------------- /android/put_user_exploit/lib_put_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/put_user_exploit/lib_put_user.c -------------------------------------------------------------------------------- /android/put_user_exploit/put_user_exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/android/put_user_exploit/put_user_exploit.c -------------------------------------------------------------------------------- /vector-exploit/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.zip 3 | -------------------------------------------------------------------------------- /vector-exploit/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/CHANGELOG -------------------------------------------------------------------------------- /vector-exploit/VERSION: -------------------------------------------------------------------------------- 1 | 2014093001 2 | -------------------------------------------------------------------------------- /vector-exploit/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/build.rb -------------------------------------------------------------------------------- /vector-exploit/ht-2012-002-FakeOSX/fakedoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-002-FakeOSX/fakedoc.rb -------------------------------------------------------------------------------- /vector-exploit/ht-2012-002-FakeOSX/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-002-FakeOSX/info.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2012-002-FakeOSX/resources/jpeg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-002-FakeOSX/resources/jpeg.icns -------------------------------------------------------------------------------- /vector-exploit/ht-2012-002-FakeOSX/resources/jpg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-002-FakeOSX/resources/jpg.icns -------------------------------------------------------------------------------- /vector-exploit/ht-2012-002-FakeOSX/resources/pdf.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-002-FakeOSX/resources/pdf.icns -------------------------------------------------------------------------------- /vector-exploit/ht-2012-002-FakeOSX/resources/rtf.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-002-FakeOSX/resources/rtf.icns -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/bin/ar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/bin/ar.exe -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/bin/cygiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/bin/cygiconv-2.dll -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/bin/cygintl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/bin/cygintl-8.dll -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/bin/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/bin/cygwin1.dll -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/cydia.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/cydia.rb -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/info.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/resources/Packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/resources/Packages -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/resources/Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/resources/Release -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/resources/control.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/resources/control.tar.gz -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/resources/control/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/resources/control/control -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/resources/control/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2012-007-Cydia/resources/control/postinst -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/resources/control/postrm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -rf /tmp/unlock 3 | exit 0 4 | -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/resources/control/preinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mkdir /tmp/unlock 3 | exit 0 4 | -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/resources/control/prerm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /vector-exploit/ht-2012-007-Cydia/resources/debian-binary: -------------------------------------------------------------------------------- 1 | 2.0 2 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/exploit.py -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/info-fake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/info-fake.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/info-good.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/info-good.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/info.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/pylzma.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/pylzma.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/EGG-INFO/native_libs.txt: -------------------------------------------------------------------------------- 1 | pylzma.pyd 2 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/EGG-INFO/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/pylzma.egg/EGG-INFO/requires.txt -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | py7zlib 2 | pylzma 3 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/py7zlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/pylzma.egg/py7zlib.py -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/py7zlib.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/pylzma.egg/py7zlib.pyc -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/pylzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/pylzma.egg/pylzma.py -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/pylzma.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/pylzma.egg/pylzma.pyc -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/pylzma.egg/pylzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/pylzma.egg/pylzma.pyd -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/resources/activeX/_rels/activeX1.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/resources/activeX/_rels/activeX1.xml.rels -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/resources/activeX/activeX1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/resources/activeX/activeX1.bin -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/resources/activeX/activeX1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/resources/activeX/activeX1.xml -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/resources/exploit.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/resources/exploit.swf -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/resources/media/image1000.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/resources/media/image1000.wmf -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/resources/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/resources/shellcode -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/resources/shellcode64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/resources/shellcode64 -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/resources/shellcode_demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/resources/shellcode_demo -------------------------------------------------------------------------------- /vector-exploit/ht-2013-002-Word/resources/zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-002-Word/resources/zip.exe -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/exploit.py -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/info-fake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/info-fake.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/info-good.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/info-good.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/info.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/EGG-INFO/native_libs.txt: -------------------------------------------------------------------------------- 1 | pylzma.pyd 2 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/EGG-INFO/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/EGG-INFO/requires.txt -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | py7zlib 2 | pylzma 3 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/py7zlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/py7zlib.py -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/py7zlib.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/py7zlib.pyc -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/pylzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/pylzma.py -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/pylzma.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/pylzma.pyc -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/pylzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/pylzma.egg/pylzma.pyd -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/resources/activeX/activeX1.binx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/resources/activeX/activeX1.binx -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/resources/activeX/activeX1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/resources/activeX/activeX1.xml -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/resources/exploit.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/resources/exploit.swf -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/resources/media/image1000.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/resources/media/image1000.wmf -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/resources/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/resources/shellcode -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/resources/shellcode64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/resources/shellcode64 -------------------------------------------------------------------------------- /vector-exploit/ht-2013-003-Powerpoint/resources/zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-003-Powerpoint/resources/zip.exe -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/exploit.py -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/info-fake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/info-fake.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/info.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/pylzma.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/pylzma.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/EGG-INFO/native_libs.txt: -------------------------------------------------------------------------------- 1 | pylzma.pyd 2 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/EGG-INFO/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/pylzma.egg/EGG-INFO/requires.txt -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | py7zlib 2 | pylzma 3 | -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/py7zlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/pylzma.egg/py7zlib.py -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/py7zlib.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/pylzma.egg/py7zlib.pyc -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/pylzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/pylzma.egg/pylzma.py -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/pylzma.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/pylzma.egg/pylzma.pyc -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/pylzma.egg/pylzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/pylzma.egg/pylzma.pyd -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/resources/PMIEFuck-Java.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/resources/PMIEFuck-Java.dll -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/resources/PMIEFuck-WinWord.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/resources/PMIEFuck-WinWord.dll -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/resources/Shellcode-Stage2-IE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/resources/Shellcode-Stage2-IE.exe -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/resources/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/resources/ajax-loader.gif -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/resources/exploit.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/resources/exploit.swf -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/resources/html.template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/resources/html.template.txt -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/resources/owned.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/resources/owned.docm -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/resources/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/resources/shellcode -------------------------------------------------------------------------------- /vector-exploit/ht-2013-004-IE/resources/zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2013-004-IE/resources/zip.exe -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/fakedoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/fakedoc.exe -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/info.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/installer.exe -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/msvcp110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/msvcp110.dll -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/msvcr110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/msvcr110.dll -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/avi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/avi.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/bmp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/bmp.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/doc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/doc.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/eml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/eml.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/exe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/exe.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/gif.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/gif.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/html.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/html.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/jpg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/jpg.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/mp3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/mp3.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/pdf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/pdf.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/png.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/png.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/ppt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/ppt.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/rar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/rar.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/rtf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/rtf.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/txt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/txt.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/vsd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/vsd.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/xls.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/xls.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/resources/zip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/resources/zip.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-002-FakeWin/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-002-FakeWin/sample.txt -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/fakedoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/fakedoc.exe -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/info.yaml -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/installer.exe -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/msvcp110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/msvcp110.dll -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/msvcr110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/msvcr110.dll -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/avi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/avi.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/bmp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/bmp.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/doc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/doc.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/eml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/eml.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/exe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/exe.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/gif.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/gif.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/html.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/html.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/jpg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/jpg.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/mp3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/mp3.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/pdf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/pdf.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/png.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/png.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/ppt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/ppt.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/rar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/rar.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/rtf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/rtf.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/txt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/txt.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/vsd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/vsd.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/xls.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/xls.ico -------------------------------------------------------------------------------- /vector-exploit/ht-2014-003-ExeSelfDelete/resources/zip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/ht-2014-003-ExeSelfDelete/resources/zip.ico -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/Debug/PMIEFuck-Java.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/Debug/PMIEFuck-Java.exe -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/Debug/PMIEFuck-Java.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/Debug/PMIEFuck-Java.ilk -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/Debug/PMIEFuck-Java.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/Debug/PMIEFuck-Java.pdb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java.sln -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java.v11.suo -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/PMIEFuck-Java.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|D:\SOURCES\DEV\vector-exploit\src\PMIEFuck-Java\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/PMIEFuck-Java.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/PMIEFuck-Java.log -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/Source.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/Source.obj -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/mt.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/mt.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/mt.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/vc100.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/vc100.idb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Debug/vc100.pdb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/PMIEFuck-Java.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/PMIEFuck-Java.vcxproj -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/PMIEFuck-Java.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/PMIEFuck-Java.vcxproj.user -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release-EXE/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release-EXE/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release-EXE/PMIEFuck-Java.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Release-EXE|Win32|D:\SOURCES\DEV\vector-exploit\src\PMIEFuck-Java\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release-EXE/PMIEFuck-Java.unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release-EXE/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release-EXE/vc100.pdb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/PMIEFuck-Java.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v110:false 2 | Release|Win32|D:\SOURCES\DEV\vector-exploit\src\PMIEFuck-Java\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/PMIEFuck-Java.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/PMIEFuck-Java.log -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/Source.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/Source.obj -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/link.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/link.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Release/vc110.pdb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/PMIEFuck-Java/Source.cpp -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/Release/PMIEFuck-Java.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/Release/PMIEFuck-Java.dll -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/Release/PMIEFuck-Java.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/Release/PMIEFuck-Java.exp -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-Java/Release/PMIEFuck-Java.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-Java/Release/PMIEFuck-Java.lib -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.exe -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.exp -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.ilk -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.lib -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.pdb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/Doc1.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/Doc1.docm -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord.sln -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord.v11.suo -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/PMIEFuck-WinWord.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v110:false 2 | Debug|Win32|d:\SOURCES\PMIEFuck-WinWord\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/Source.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/Source.obj -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/mso.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/mso.tlh -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/mso.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/mso.tli -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/msword.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/msword.tlh -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/msword.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/msword.tli -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/vbe6ext.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/vbe6ext.tlh -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/vbe6ext.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/vbe6ext.tli -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/vc110.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/vc110.idb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Debug/vc110.pdb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/PMIEFuck-WinWord.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v110:false 2 | Release|Win32|d:\SOURCES\PMIEFuck-WinWord\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/Source.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/Source.obj -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/mso.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/mso.tlh -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/mso.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/mso.tli -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/msword.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/msword.tlh -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/msword.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/msword.tli -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/vbe6ext.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/vbe6ext.tlh -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/vbe6ext.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/vbe6ext.tli -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Release/vc110.pdb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseDLL/PMIEFuck-WinWord.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | ReleaseDLL|Win32|D:\SOURCES\DEV\vector-exploit\src\PMIEFuck-WinWord\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseDLL/mso.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseDLL/mso.tlh -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseDLL/mso.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseDLL/mso.tli -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseDLL/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseDLL/vc100.pdb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/PMIEFuck-WinWord.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v110:false 2 | ReleaseOK|Win32|D:\SOURCES\PMIEFuck-WinWord\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/PMIEFuck-WinWord.unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/mso.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/mso.tlh -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/mso.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/mso.tli -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/msword.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/msword.tlh -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/msword.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/msword.tli -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/vc110.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/vc110.idb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/ReleaseOK/vc110.pdb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/PMIEFuck-WinWord/Source.cpp -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/Release/PMIEFuck-WinWord.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/Release/PMIEFuck-WinWord.exe -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/Release/PMIEFuck-WinWord.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/Release/PMIEFuck-WinWord.exp -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/Release/PMIEFuck-WinWord.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/Release/PMIEFuck-WinWord.lib -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/Release/PMIEFuck-WinWord.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/Release/PMIEFuck-WinWord.pdb -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/ReleaseDLL/PMIEFuck-WinWord.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/ReleaseDLL/PMIEFuck-WinWord.dll -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/ReleaseDLL/PMIEFuck-WinWord.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/ReleaseDLL/PMIEFuck-WinWord.exp -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/ReleaseDLL/PMIEFuck-WinWord.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/ReleaseDLL/PMIEFuck-WinWord.lib -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/ReleaseOK/PMIEFuck-WinWord.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/ReleaseOK/PMIEFuck-WinWord.exe -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/ReleaseOK/PMIEFuck-WinWord.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/ReleaseOK/PMIEFuck-WinWord.exp -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/ReleaseOK/PMIEFuck-WinWord.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/ReleaseOK/PMIEFuck-WinWord.lib -------------------------------------------------------------------------------- /vector-exploit/src/PMIEFuck-WinWord/ReleaseOK/PMIEFuck-WinWord.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/PMIEFuck-WinWord/ReleaseOK/PMIEFuck-WinWord.pdb -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Debug/Loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Debug/Loader.exe -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Debug/Loader.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Debug/Loader.ilk -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Debug/Loader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Debug/Loader.pdb -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader.sln -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader.v11.suo -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/Loader.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v110:false 2 | Debug|Win32|D:\SOURCES\DEV\vector-exploit\src\Shellcode-Stage1\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/Loader.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/Loader.log -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/Loader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/Loader.obj -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/link-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/link-rc.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/link-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/link-rc.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/vc110.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/vc110.idb -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Debug/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Debug/vc110.pdb -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Loader.cpp -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Loader.vcxproj -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Loader.vcxproj.filters -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Loader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Loader.vcxproj.user -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/ORDER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/ORDER.txt -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/Loader.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v110:false 2 | Release|Win32|D:\sources\DEV\vector-exploit\src\Shellcode-Stage1\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/Loader.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/Loader.log -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/Loader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/Loader.obj -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/link-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/link-rc.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/link-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/link-rc.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/link.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/link.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/link.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/Release/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/Release/vc110.pdb -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/loader.h -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Loader/winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Loader/winapi.h -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Release/Loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Release/Loader.exe -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage1/Release/Loader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage1/Release/Loader.pdb -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage2-IE/Debug/Shellcode-Stage2-IE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage2-IE/Debug/Shellcode-Stage2-IE.exe -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage2-IE/Debug/Shellcode-Stage2-IE.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage2-IE/Debug/Shellcode-Stage2-IE.ilk -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage2-IE/Debug/Shellcode-Stage2-IE.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage2-IE/Debug/Shellcode-Stage2-IE.pdb -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage2-IE/Release/Shellcode-Stage2-IE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage2-IE/Release/Shellcode-Stage2-IE.exe -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage2-IE/Shellcode-Stage2-IE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage2-IE/Shellcode-Stage2-IE.sln -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage2-IE/Shellcode-Stage2-IE.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage2-IE/Shellcode-Stage2-IE.v11.suo -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage2-IE/Shellcode-Stage2-IE/Debug/Shellcode-Stage2-IE.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|D:\SOURCES\DEV\vector-exploit\src\Shellcode-Stage2-IE\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage2-IE/Shellcode-Stage2-IE/Release/Shellcode-Stage2-IE.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100 2 | Release|Win32|D:\sources\DEV\vector-exploit\src\Shellcode-Stage2-IE\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage2-IE/Shellcode-Stage2-IE/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage2-IE/Shellcode-Stage2-IE/Source.cpp -------------------------------------------------------------------------------- /vector-exploit/src/Shellcode-Stage2-IE/Shellcode-Stage2-IE/Source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/Shellcode-Stage2-IE/Shellcode-Stage2-IE/Source.h -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-002-Word-TLS/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-002-Word-TLS/build -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-002-Word-TLS/resources/activeX/activeX1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-002-Word-TLS/resources/activeX/activeX1.bin -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-002-Word-TLS/resources/activeX/activeX1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-002-Word-TLS/resources/activeX/activeX1.xml -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-002-Word-TLS/resources/empty.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-002-Word-TLS/resources/empty.swf -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-002-Word-TLS/resources/exploit.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-002-Word-TLS/resources/exploit.swf -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-002-Word-TLS/resources/media/image1000.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-002-Word-TLS/resources/media/image1000.wmf -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-002-Word-TLS/resources/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-002-Word-TLS/resources/shellcode -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-002-Word-TLS/resources/shellcode64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-002-Word-TLS/resources/shellcode64 -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-002-Word-TLS/resources/xp_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-002-Word-TLS/resources/xp_filter.py -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-003-PowerPoint-TLS/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-003-PowerPoint-TLS/build -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-003-PowerPoint-TLS/resources/empty.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-003-PowerPoint-TLS/resources/empty.swf -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-003-PowerPoint-TLS/resources/exploit.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-003-PowerPoint-TLS/resources/exploit.swf -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-003-PowerPoint-TLS/resources/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-003-PowerPoint-TLS/resources/shellcode -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-003-PowerPoint-TLS/resources/shellcode64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-003-PowerPoint-TLS/resources/shellcode64 -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-003-PowerPoint-TLS/resources/xp_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-003-PowerPoint-TLS/resources/xp_filter.py -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/build -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/PMIEFuck-Java.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/PMIEFuck-Java.dll -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/PMIEFuck-WinWord.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/PMIEFuck-WinWord.dll -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/Shellcode-Stage2-IE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/Shellcode-Stage2-IE.exe -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/ajax-loader.gif -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/empty.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/empty.swf -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/exploit.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/exploit.swf -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/exploit.swf-validate-ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/exploit.swf-validate-ca -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/owned.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/owned.docm -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/shellcode -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/shellcode-validate-ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/shellcode-validate-ca -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2013-005-IE-TLS/resources/xp_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2013-005-IE-TLS/resources/xp_filter.py -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/build -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/exploit -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/go.html -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/module.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/module.so -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/redir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/redir.js -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/script.js -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/slowaes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/slowaes.py -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/stage1_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/stage1_xml.py -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/stage4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/stage4.js -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/stage4_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/stage4_js.py -------------------------------------------------------------------------------- /vector-exploit/src/edn2/2014-004-AndroidBrowser/stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/edn2/2014-004-AndroidBrowser/stylesheet.xsl -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/.htaccess -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/.accounts: -------------------------------------------------------------------------------- 1 | admin:9gYLAe4Exn6Jc 2 | -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/.htaccess -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/2013-002-Word/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/2013-002-Word/exploit.py -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/2013-002-Word/resources/zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/2013-002-Word/resources/zip.exe -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/2013-003-PowerPoint/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/2013-003-PowerPoint/exploit.py -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/index.html -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/index.html.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/index.html.old -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/index_d3m0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/index_d3m0.html -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/index_ppsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/index_ppsx.html -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/upload.php -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/upload.php.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/upload.php.old -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/admin/upload_ppsx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/admin/upload_ppsx.php -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/download.php -------------------------------------------------------------------------------- /vector-exploit/src/exploit_vps/html/files/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/exploit_vps/html/files/.htaccess -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/New Project.as3proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/New Project.as3proj -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/bin/NewProject.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/bin/NewProject.swf -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/bin/calc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/bin/calc.htm -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/bin/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/bin/expressInstall.swf -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/bin/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/bin/index2.html -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/bin/js/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/bin/js/swfobject.js -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/bin/mongoose-tiny-4.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/bin/mongoose-tiny-4.1.exe -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/obj/NewProjectConfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/obj/NewProjectConfig.old -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/obj/NewProjectConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/obj/NewProjectConfig.xml -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/src/Main.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/src/MyClass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/src/MyClass.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/src/MyClass1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/src/MyClass1.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/src/MyClass2.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/src/MyClass2.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/src/MyUtils.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/src/MyUtils.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/src/ShellMac64.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/src/ShellMac64.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/src/ShellWin32.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/src/ShellWin32.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly1/src/ShellWin64.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly1/src/ShellWin64.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/calc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/calc.htm -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/exp1/MyClass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/exp1/MyClass.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/exp1/MyClass1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/exp1/MyClass1.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/exp1/MyClass2.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/exp1/MyClass2.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/exp1/MyUtils.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/exp1/MyUtils.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/exp1/ShellMac64.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/exp1/ShellMac64.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/exp1/ShellWin32.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/exp1/ShellWin32.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/exp1/ShellWin64.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/exp1/ShellWin64.as -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/exp1/exp1.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/exp1/exp1.fla -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/exp1/exp1.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/exp1/exp1.swf -------------------------------------------------------------------------------- /vector-exploit/src/flash-0day-vitaly2/read me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash-0day-vitaly2/read me.txt -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/Exploit.as3proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/Exploit.as3proj -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/bin/Exploit - Copy.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/bin/Exploit - Copy.swf -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/bin/Exploit.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/bin/Exploit.swf -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/bin/compressed.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/bin/compressed.swf -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/bin/exploit.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/bin/exploit.dat -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/bin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/bin/index.html -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/bin/js/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/bin/js/swfobject.js -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/bin/viewerWrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/bin/viewerWrapper.html -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/comp -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/src/MainTimeLine.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/src/MainTimeLine.as -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/src/Rabbit.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/src/Rabbit.as -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/FlashDevelop-Project/uncomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/FlashDevelop-Project/uncomp -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/cmd.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/cmd.TXT -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/compile_egg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/compile_egg.bat -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/egghunt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/egghunt.asm -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/egghunt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/egghunt.exe -------------------------------------------------------------------------------- /vector-exploit/src/flash0day/egghunt.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/flash0day/egghunt.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-2012-002-FakeOSX/TextEdit/TextEdit/TextEdit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-2012-002-FakeOSX/TextEdit/TextEdit/TextEdit.1 -------------------------------------------------------------------------------- /vector-exploit/src/ht-2012-002-FakeOSX/TextEdit/TextEdit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-2012-002-FakeOSX/TextEdit/TextEdit/main.m -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/CL.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/Shellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/Shellcode.exe -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/Shellcode.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | DocX|Win32|D:\sources\DEV\vector-exploit\src\ht-Office-Shellcode-No-Respawn\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/Shellcode.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/Shellcode.log -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/Shellcode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/Shellcode.pdb -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/loader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/loader.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/main.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/mt.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/mt.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/DocX/vc100.pdb -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/FUNC_ORDER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/FUNC_ORDER.txt -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/CL.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/Shellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/Shellcode.exe -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/Shellcode.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100 2 | PPSX|Win32|D:\sources\DEV\vector-exploit\src\ht-Office-Shellcode\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/Shellcode.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/Shellcode.log -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/Shellcode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/Shellcode.pdb -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/loader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/loader.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/main.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/mt.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/mt.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/PPSX/vc100.pdb -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/Release/loader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/Release/loader.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/Release/main.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/Release/vc100.pdb -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/Shellcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/Shellcode.sln -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/Shellcode.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/Shellcode.v11.suo -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/Shellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/Shellcode.vcxproj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/crt.h -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/loader.cpp -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/loader.h -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/main.cpp -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/main.h -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/winapi.h -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/x64/DocX/Shellcode.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | DocX|x64|D:\sources\DEV\vector-exploit\src\ht-Office-Shellcode-No-Respawn\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/x64/DocX/loader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/x64/DocX/loader.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/x64/DocX/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/x64/DocX/main.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode-No-Respawn/x64/DocX/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode-No-Respawn/x64/DocX/vc100.pdb -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/DocX/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/DocX/CL.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/Shellcode.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100 2 | DocX|Win32|D:\sources\DEV\vector-exploit\src\ht-Office-Shellcode\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/Shellcode.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/DocX/Shellcode.log -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/DocX/cl.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/DocX/link.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/DocX/link.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/DocX/link.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/DocX/mt.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/DocX/mt.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/DocX/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/DocX/mt.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/FUNC_ORDER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/FUNC_ORDER.txt -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/CL.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/Shellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/Shellcode.exe -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/Shellcode.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100 2 | PPSX|Win32|D:\sources\DEV\vector-exploit\src\ht-Office-Shellcode\| 3 | -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/Shellcode.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/Shellcode.log -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/Shellcode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/Shellcode.pdb -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/cl.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/link.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/link.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/link.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/loader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/loader.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/main.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/mt.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/mt.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/mt.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/PPSX/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/PPSX/vc100.pdb -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/Shellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/Shellcode.exe -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/Shellcode.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/Shellcode.log -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/Shellcode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/Shellcode.pdb -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/link.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/link.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/link.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/loader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/loader.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/main.obj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/mt.command.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/mt.read.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/mt.write.1.tlog -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Release/vc100.pdb -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Shellcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Shellcode.sln -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Shellcode.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Shellcode.v11.suo -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Shellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Shellcode.vcxproj -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Shellcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Shellcode.vcxproj.filters -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/Shellcode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/Shellcode.vcxproj.user -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/crt.h -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/loader.cpp -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/loader.h -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/main.cpp -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/main.h -------------------------------------------------------------------------------- /vector-exploit/src/ht-Office-Shellcode/winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-Office-Shellcode/winapi.h -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/2nd_stage.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/2nd_stage.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/2nd_stage.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/2nd_stage.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/2nd_stage_dbg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/2nd_stage_dbg.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/2nd_stage_dbg.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/2nd_stage_dbg.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/3rd_stage.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/3rd_stage.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/3rd_stage.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/3rd_stage.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/3rd_stage_shared_object.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/3rd_stage_shared_object.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/3rd_stage_shared_object.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/3rd_stage_shared_object.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/a.out -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/asdf -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/build_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/build_commands.txt -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/example.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/example.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/example.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/fail.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/fail.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/fail.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/fail.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/giovanni.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/giovanni.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/giovanni.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/giovanni.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/hello-jni/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/hello-jni/AndroidManifest.xml -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/hello-jni/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/hello-jni/default.properties -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/hello-jni/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/hello-jni/jni/Android.mk -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/hello-jni/jni/hello-jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/hello-jni/jni/hello-jni.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/hello.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/hello.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/hello.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/hello.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/hello.o -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/hook_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/hook_arm.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/hook_arm.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/hook_arm.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/jni/Android.mk -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/jni/Android.mk~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/jni/Android.mk~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/jni/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/jni/test.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/jni/test.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/jni/test.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/jni/test_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/jni/test_lib.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/jni/test_lib.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/jni/test_lib.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/jni/test_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/jni/test_lib.h -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/jni/test_lib.h~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/jni/test_lib.h~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/libc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/libc.so -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/libs/armeabi/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/libs/armeabi/test -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/log_howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/log_howto.txt -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/mylibs/libtest_lib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/mylibs/libtest_lib.so -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/obj/local/armeabi/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/obj/local/armeabi/test -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/pivot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/pivot.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/pivot.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/pivot.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/scode2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/scode2 -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/select/jni/.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/select/jni/.swp -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/select/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/select/jni/Android.mk -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/select/jni/Android.mk~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/select/jni/Android.mk~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/select/jni/asdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/select/jni/asdf.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/select/jni/asdf.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/select/jni/asdf.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/select/jni/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/select/jni/poc.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/select/jni/poc.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/select/jni/poc.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/select/libs/armeabi/poc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/select/libs/armeabi/poc -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/select/obj/local/armeabi/poc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/select/obj/local/armeabi/poc -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni.tar.gz -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/#test.c#: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/asd: -------------------------------------------------------------------------------- 1 | asd 2 | -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/asd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/asd.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/asd.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/asd.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/asd2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/asd2.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/asd2.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/asd2.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/build.sh -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/conn.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/conn.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/conn.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/strace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/strace -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/su -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test2 -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test2.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test2.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test2.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test4.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test4.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test4.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test5.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test5.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test5.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test6.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test7.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test7.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test7.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test8.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test8.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/test8.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/vold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shared_object_eop/jni/vold -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_bn/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_bn/jni/Android.mk -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_bn/jni/Android.mk~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_bn/jni/Android.mk~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_bn/jni/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_bn/jni/poc.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_bn/jni/poc.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_bn/jni/poc.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_bn/libs/armeabi/poc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_bn/libs/armeabi/poc -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_dl_exec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_dl_exec.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_dl_exec.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_dl_exec.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_dl_exec_any_cache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_dl_exec_any_cache.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_dl_exec_any_cache.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_dl_exec_any_cache.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_dl_exec_key_param.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_dl_exec_key_param.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_dl_exec_sdcard.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_dl_exec_sdcard.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_dl_exec_sdcard.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_dl_exec_sdcard.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_fingerfist.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_fingerfist.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_fingerfist.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_fingerfist.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_return_to_caller.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_return_to_caller.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_return_to_caller.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_return_to_caller.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_zergrush.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_zergrush.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/shellcode_zergrush.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/shellcode_zergrush.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/skeleton/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/skeleton/jni/Android.mk -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/skeleton/jni/Android.mk~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/skeleton/jni/Android.mk~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/skeleton/jni/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/skeleton/jni/poc.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/skeleton/jni/poc.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/skeleton/jni/poc.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/skeleton/libs/armeabi/poc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/skeleton/libs/armeabi/poc -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/skeleton/libs/armeabi/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/skeleton/libs/armeabi/test -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/skeleton/obj/local/armeabi/poc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/skeleton/obj/local/armeabi/poc -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/start.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/start.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/start.o -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/system.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/system.tar.gz -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/template/Make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/template/Make -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/template/Make~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/template/Make~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/example.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/example.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/example.c~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_24.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_24.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_24.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_24.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_exp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_exp.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_exp.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_exp.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_exp_dbg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_exp_dbg.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_exp_dbg.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_exp_dbg.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_exp_frozen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_exp_frozen.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_exp_frozen.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_exp_frozen.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_exp_test.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_exp_test.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_exp_test.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_exp_test.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_thumb_disas.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_thumb_disas.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/hook_thumb_disas.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/hook_thumb_disas.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/pivot.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/pivot.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/thumb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/thumb.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-android-shellcode/thumb/thumb.s~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-android-shellcode/thumb/thumb.s~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/.old/1466125380/1466125380_apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/.old/1466125380/1466125380_apk -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/.old/1466125380/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/.old/1466125380/landing.html -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/.old/1466125380/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/.old/1466125380/redirect.html -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/.old/1466125380/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/.old/1466125380/setup.txt -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/README.txt -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/README.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/README.txt~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/add_exploit_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/add_exploit_instance.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/cmdline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/cmdline -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/e72uds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/e72uds -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/exp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/exp_server.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/exp_server.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/exp_server.pyc -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/exploit_dump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/exploit_dump.html -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/g1ml329py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/g1ml329py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/gi21flm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/gi21flm -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/le8s98: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/le8s98 -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/leak_dump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/leak_dump.html -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/libfingerprint.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/libfingerprint.so -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/app-header-stripes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/app-header-stripes.gif -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/b_8d5afc09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/b_8d5afc09.png -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/bg.jpg -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/chart.png -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/icon.png -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/main.html -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/main.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/main.html~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/play_css_ltr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/play_css_ltr.css -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/play_css_ltr.css~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/play_css_ltr.css~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/play_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/play_logo.png -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/play/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/play/screenshot_1.png -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/shell.txt -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/shell.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/shell.txt~ -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/st21k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/st21k -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/tea_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/tea_compressed.js -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/test/demov2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/test/demov2.apk -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/test/index.html -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android23/webkit_rc3_plus_tea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android23/webkit_rc3_plus_tea.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/BUILDING -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/COMPATIBILITY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/COMPATIBILITY -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/EDN_BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/EDN_BUILD -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/SUPPORT_INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/SUPPORT_INSTALL -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/TNI/redir_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/TNI/redir_page.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/build.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/cc/compiler.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/cc/compiler.jar -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/cc/xsltprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/cc/xsltprocessor.js -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/ext/slowaes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/ext/slowaes.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/installer/PLACE_EXPLOIT_HERE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/installer/PLACE_EXPLOIT_HERE -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/build -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/buildc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/buildc -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/exploit -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/go.html -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/module.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/module.so -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/params.txt -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/redir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/redir.js -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/script.js -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/slowaes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/slowaes.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/stage4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/debug/stage4.js -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/release/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/release/build -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/release/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/release/exploit -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/release/go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/release/go.html -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/precompiled/release/redir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/precompiled/release/redir.js -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/setup-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/setup-html.sh -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/setup.sh -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/callstub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/callstub/Makefile -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/callstub/callstub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/callstub/callstub.s -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/callstub/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/callstub/encode.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/callstub/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/callstub/stub.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/debug-tornado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/debug-tornado.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/debugserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/debugserver.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/edn_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/edn_build.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/go.html -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/go.js -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/module/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/module/jni/Android.mk -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/module/jni/aes256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/module/jni/aes256.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/module/jni/aes256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/module/jni/aes256.h -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/module/jni/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/module/jni/module.c -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/redir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/redir.js -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/script.js -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/stage1_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/stage1_xml.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/stage4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/stage4.js -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/stage4_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/stage4_js.py -------------------------------------------------------------------------------- /vector-exploit/src/ht-webkit-Android4-src/src/stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdead8ead/hackingteam_exploits/HEAD/vector-exploit/src/ht-webkit-Android4-src/src/stylesheet.xsl --------------------------------------------------------------------------------