├── .gitattributes ├── .gitignore ├── 01_bufferoverflow ├── CheckPass2 ├── CheckPass2.c ├── CheckPass2.exe ├── CheckPass2.ilk ├── CheckPass2.obj ├── CheckPass2.pdb ├── Exploit_CheckPass2.py ├── LoopTest.py ├── Test_CheckPass2.py ├── exploit.bin ├── makefile └── vc90.pdb ├── 02_bufferoverflow ├── Exploit2_FileDump.py ├── Exploit_FileDump.py ├── FileDump.c ├── FileDump.exe ├── FileDump.obj ├── FileDump.pdb ├── Test_FileDump.py ├── a.exe ├── buffer.txt ├── exploit.bin ├── makefile └── vc90.pdb ├── 03_webserver ├── Exploit_SimpleServer.py ├── SimpleServer.c ├── SimpleServer.exe ├── SimpleServer.o ├── SimpleServer.obj ├── SimpleServer.pdb ├── Test_SimpleServer.py ├── a.exe ├── exploit.bin ├── vc90.pdb └── windowlibのlinux版.JPG ├── 04_UAF ├── a.exe ├── uaf_test.cpp └── uaf_test.o ├── 05_heapspray ├── test.html ├── test02.html └── test02_クラッシュ結果.txt ├── 10_shellcode ├── calc_exec ├── keylogger ├── not0020_calc_exec ├── readMe.txt ├── shell_bind_tcp ├── shellcodeTester.c ├── shellcodeTester_x64.c ├── x64.exe ├── x64_calc_exe.bin ├── x64_shellcode │ ├── hexdump_C.png │ ├── x64_calc_exe.bin │ └── x64_not00_calc_exe.bin ├── x86.exe └── x86_shellcode │ ├── Shell_Bind_Tcp_4444 │ ├── ecx_alphamixed_shell_bind_tcp │ ├── not0020_shell_bind_tcp │ ├── not00_shell_bind_tcp │ └── shell_bind_tcp │ ├── キーロガー │ ├── %temp%log.binに保存される.txt │ ├── keylogger │ └── keylogger.s │ └── 電卓起動 │ ├── calc_exec │ ├── ecx_alphamixed_calc_exec │ ├── not0020_calc_exec │ ├── not00_calc_exec │ └── not0a1a_calc_exec.bin ├── 11_tools ├── JIT無効設定 │ ├── 無効WinDbg.reg │ ├── 無効WinDbg_Wow64.reg │ └── 異常時即座にプログラム終了.reg ├── JIT設定_windows10 │ ├── WinDbg.reg │ ├── WinDbg_Wow64.reg │ └── 異常時解決検索.reg ├── NtTrace-x86 │ └── NtTrace │ │ ├── Gdi32Trace.cfg │ │ ├── NtTrace.cfg │ │ ├── NtTrace.exe │ │ ├── NtTrace.ico │ │ ├── NtTrace.mak │ │ ├── NtTrace.rc │ │ ├── Readme.txt │ │ ├── User32Trace.cfg │ │ ├── dbgCopy.dll │ │ ├── dbgCopy.lib │ │ ├── include │ │ ├── AdjustPriv.h │ │ ├── BasicType.h │ │ ├── DbgHelper.h │ │ ├── DbgHelper.inl │ │ ├── DebugDriver.h │ │ ├── DebugPriv.h │ │ ├── EntryPoint.h │ │ ├── Enumerations.h │ │ ├── GetFileNameFromHandle.h │ │ ├── GetModuleBase.h │ │ ├── MsvcExceptions.h │ │ ├── NtDllStruct.h │ │ ├── Options.h │ │ ├── Options.inl │ │ ├── ProcessHelper.h │ │ ├── ReadInt.h │ │ ├── ReadPartialMemory.h │ │ ├── ShowData.h │ │ ├── SimpleTokenizer.h │ │ ├── StrFromWchar.h │ │ ├── SymTagEnum.h │ │ ├── SymbolEngine.h │ │ ├── TrapNtOpcodes.h │ │ ├── buildVersion.h │ │ ├── displayError.h │ │ └── displayError.inl │ │ ├── log.txt │ │ ├── src │ │ ├── DebugDriver.cpp │ │ ├── EntryPoint.cpp │ │ ├── Enumerations.cpp │ │ ├── GetFileNameFromHandle.cpp │ │ ├── GetModuleBase.cpp │ │ ├── NtTrace.cpp │ │ ├── ShowData.cpp │ │ └── SymbolEngine.cpp │ │ └── version.rc ├── PEフォーマット_nx_aslr有無の違い.JPG ├── geany(appdata_roaming) │ ├── filedefs │ │ ├── filetypes.README │ │ ├── filetypes.c │ │ ├── filetypes.common │ │ └── filetypes.python │ ├── geany.conf │ ├── keybindings.conf │ └── templates │ │ └── templates.README ├── mona │ ├── mona-py-the-manual.pdf │ ├── mona_compare │ │ ├── mona_compare.txt │ │ └── シェルコード比較.JPG │ └── mona保存先設定 │ │ ├── mona保存先設定_管理者権限が必要.txt │ │ └── mona設定ファイル.JPG ├── nc111nt │ ├── doexec.c │ ├── generic.h │ ├── getopt.c │ ├── getopt.h │ ├── hobbit.txt │ ├── license.txt │ ├── makefile │ ├── nc.exe │ ├── netcat.c │ └── readme.txt ├── python │ ├── assemble.py │ ├── assemble │ │ ├── temp │ │ └── temp.s │ ├── badchar.py │ ├── bin2str.bat │ ├── bin2str.py │ ├── disassemble.py │ ├── python_コマンドプロンプト.JPG │ ├── pythonパイプ.png │ └── str2sjis.py ├── stracent-x86 │ ├── info.txt │ ├── stFilter.txt │ ├── stracent.exe │ └── straceui.exe └── windbg_pykd │ ├── 01_load_pykd_pyd.png │ ├── 02_pykd_iat_py.png │ ├── SampleBreakPoint.py │ ├── expOneShotBreak.py │ ├── export.py │ ├── iat.py │ ├── iatOneShotBreak.py │ ├── printHeap.py │ ├── python2.7.11は使用不可.txt │ ├── setBP.py │ ├── setFuncBP.py │ ├── winext │ ├── LogManifest.lgm │ ├── Logexts.ini │ ├── bthkd.dll │ ├── dbgeng.dll │ ├── dbghelp.dll │ ├── ext.dll │ ├── gpiokd.dll │ ├── hidkd.dll │ ├── jscript9diagdump.dll │ ├── kext.dll │ ├── logexts.dll │ ├── msdia120.dll │ ├── pykd.pyd │ ├── rcdrkd.dll │ ├── srcsrv.dll │ ├── storagekd.dll │ ├── symsrv.dll │ ├── uext.dll │ ├── usb3kd.dll │ ├── usbkd.dll │ ├── wdfkd.dll │ └── 本ファイルの配置場所.png │ └── ブレークポイント例.txt ├── 12_syscall └── printf_syscall_x64 │ ├── 01_NtWriteFile_x64_sysenter.png │ └── 02_NtWriteFile_x64_sysenter.png ├── 13_MinGw_リンカオプション └── mingw_gcc_コンパイル_リンク.png └── 14_VC_リンカオプション ├── TinyWebコンパイルオプション.JPG └── TinyWebリンカオプション.JPG /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/.gitignore -------------------------------------------------------------------------------- /01_bufferoverflow/CheckPass2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/CheckPass2 -------------------------------------------------------------------------------- /01_bufferoverflow/CheckPass2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/CheckPass2.c -------------------------------------------------------------------------------- /01_bufferoverflow/CheckPass2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/CheckPass2.exe -------------------------------------------------------------------------------- /01_bufferoverflow/CheckPass2.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/CheckPass2.ilk -------------------------------------------------------------------------------- /01_bufferoverflow/CheckPass2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/CheckPass2.obj -------------------------------------------------------------------------------- /01_bufferoverflow/CheckPass2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/CheckPass2.pdb -------------------------------------------------------------------------------- /01_bufferoverflow/Exploit_CheckPass2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/Exploit_CheckPass2.py -------------------------------------------------------------------------------- /01_bufferoverflow/LoopTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/LoopTest.py -------------------------------------------------------------------------------- /01_bufferoverflow/Test_CheckPass2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/Test_CheckPass2.py -------------------------------------------------------------------------------- /01_bufferoverflow/exploit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/exploit.bin -------------------------------------------------------------------------------- /01_bufferoverflow/makefile: -------------------------------------------------------------------------------- 1 | all: 2 | cl /Zi /Od /GS- CheckPass2.c /link /nxcompat:no /dynamicbase:no 3 | -------------------------------------------------------------------------------- /01_bufferoverflow/vc90.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/01_bufferoverflow/vc90.pdb -------------------------------------------------------------------------------- /02_bufferoverflow/Exploit2_FileDump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/Exploit2_FileDump.py -------------------------------------------------------------------------------- /02_bufferoverflow/Exploit_FileDump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/Exploit_FileDump.py -------------------------------------------------------------------------------- /02_bufferoverflow/FileDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/FileDump.c -------------------------------------------------------------------------------- /02_bufferoverflow/FileDump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/FileDump.exe -------------------------------------------------------------------------------- /02_bufferoverflow/FileDump.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/FileDump.obj -------------------------------------------------------------------------------- /02_bufferoverflow/FileDump.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/FileDump.pdb -------------------------------------------------------------------------------- /02_bufferoverflow/Test_FileDump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/Test_FileDump.py -------------------------------------------------------------------------------- /02_bufferoverflow/a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/a.exe -------------------------------------------------------------------------------- /02_bufferoverflow/buffer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/buffer.txt -------------------------------------------------------------------------------- /02_bufferoverflow/exploit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/exploit.bin -------------------------------------------------------------------------------- /02_bufferoverflow/makefile: -------------------------------------------------------------------------------- 1 | all: 2 | cl /Zi /Od /GS- FileDump.c /link /nxcompat:no /dynamicbase:no 3 | -------------------------------------------------------------------------------- /02_bufferoverflow/vc90.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/02_bufferoverflow/vc90.pdb -------------------------------------------------------------------------------- /03_webserver/Exploit_SimpleServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/Exploit_SimpleServer.py -------------------------------------------------------------------------------- /03_webserver/SimpleServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/SimpleServer.c -------------------------------------------------------------------------------- /03_webserver/SimpleServer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/SimpleServer.exe -------------------------------------------------------------------------------- /03_webserver/SimpleServer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/SimpleServer.o -------------------------------------------------------------------------------- /03_webserver/SimpleServer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/SimpleServer.obj -------------------------------------------------------------------------------- /03_webserver/SimpleServer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/SimpleServer.pdb -------------------------------------------------------------------------------- /03_webserver/Test_SimpleServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/Test_SimpleServer.py -------------------------------------------------------------------------------- /03_webserver/a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/a.exe -------------------------------------------------------------------------------- /03_webserver/exploit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/exploit.bin -------------------------------------------------------------------------------- /03_webserver/vc90.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/vc90.pdb -------------------------------------------------------------------------------- /03_webserver/windowlibのlinux版.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/03_webserver/windowlibのlinux版.JPG -------------------------------------------------------------------------------- /04_UAF/a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/04_UAF/a.exe -------------------------------------------------------------------------------- /04_UAF/uaf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/04_UAF/uaf_test.cpp -------------------------------------------------------------------------------- /04_UAF/uaf_test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/04_UAF/uaf_test.o -------------------------------------------------------------------------------- /05_heapspray/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/05_heapspray/test.html -------------------------------------------------------------------------------- /05_heapspray/test02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/05_heapspray/test02.html -------------------------------------------------------------------------------- /05_heapspray/test02_クラッシュ結果.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/05_heapspray/test02_クラッシュ結果.txt -------------------------------------------------------------------------------- /10_shellcode/calc_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/calc_exec -------------------------------------------------------------------------------- /10_shellcode/keylogger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/keylogger -------------------------------------------------------------------------------- /10_shellcode/not0020_calc_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/not0020_calc_exec -------------------------------------------------------------------------------- /10_shellcode/readMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/readMe.txt -------------------------------------------------------------------------------- /10_shellcode/shell_bind_tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/shell_bind_tcp -------------------------------------------------------------------------------- /10_shellcode/shellcodeTester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/shellcodeTester.c -------------------------------------------------------------------------------- /10_shellcode/shellcodeTester_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/shellcodeTester_x64.c -------------------------------------------------------------------------------- /10_shellcode/x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x64.exe -------------------------------------------------------------------------------- /10_shellcode/x64_calc_exe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x64_calc_exe.bin -------------------------------------------------------------------------------- /10_shellcode/x64_shellcode/hexdump_C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x64_shellcode/hexdump_C.png -------------------------------------------------------------------------------- /10_shellcode/x64_shellcode/x64_calc_exe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x64_shellcode/x64_calc_exe.bin -------------------------------------------------------------------------------- /10_shellcode/x64_shellcode/x64_not00_calc_exe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x64_shellcode/x64_not00_calc_exe.bin -------------------------------------------------------------------------------- /10_shellcode/x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86.exe -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/Shell_Bind_Tcp_4444/ecx_alphamixed_shell_bind_tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/Shell_Bind_Tcp_4444/ecx_alphamixed_shell_bind_tcp -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/Shell_Bind_Tcp_4444/not0020_shell_bind_tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/Shell_Bind_Tcp_4444/not0020_shell_bind_tcp -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/Shell_Bind_Tcp_4444/not00_shell_bind_tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/Shell_Bind_Tcp_4444/not00_shell_bind_tcp -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/Shell_Bind_Tcp_4444/shell_bind_tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/Shell_Bind_Tcp_4444/shell_bind_tcp -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/キーロガー/%temp%log.binに保存される.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/キーロガー/keylogger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/キーロガー/keylogger -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/キーロガー/keylogger.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/キーロガー/keylogger.s -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/電卓起動/calc_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/電卓起動/calc_exec -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/電卓起動/ecx_alphamixed_calc_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/電卓起動/ecx_alphamixed_calc_exec -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/電卓起動/not0020_calc_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/電卓起動/not0020_calc_exec -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/電卓起動/not00_calc_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/電卓起動/not00_calc_exec -------------------------------------------------------------------------------- /10_shellcode/x86_shellcode/電卓起動/not0a1a_calc_exec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/10_shellcode/x86_shellcode/電卓起動/not0a1a_calc_exec.bin -------------------------------------------------------------------------------- /11_tools/JIT無効設定/無効WinDbg.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/JIT無効設定/無効WinDbg.reg -------------------------------------------------------------------------------- /11_tools/JIT無効設定/無効WinDbg_Wow64.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/JIT無効設定/無効WinDbg_Wow64.reg -------------------------------------------------------------------------------- /11_tools/JIT無効設定/異常時即座にプログラム終了.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/JIT無効設定/異常時即座にプログラム終了.reg -------------------------------------------------------------------------------- /11_tools/JIT設定_windows10/WinDbg.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/JIT設定_windows10/WinDbg.reg -------------------------------------------------------------------------------- /11_tools/JIT設定_windows10/WinDbg_Wow64.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/JIT設定_windows10/WinDbg_Wow64.reg -------------------------------------------------------------------------------- /11_tools/JIT設定_windows10/異常時解決検索.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/JIT設定_windows10/異常時解決検索.reg -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/Gdi32Trace.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/Gdi32Trace.cfg -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/NtTrace.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/NtTrace.cfg -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/NtTrace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/NtTrace.exe -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/NtTrace.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/NtTrace.ico -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/NtTrace.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/NtTrace.mak -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/NtTrace.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/NtTrace.rc -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/Readme.txt -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/User32Trace.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/User32Trace.cfg -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/dbgCopy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/dbgCopy.dll -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/dbgCopy.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/dbgCopy.lib -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/AdjustPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/AdjustPriv.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/BasicType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/BasicType.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/DbgHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/DbgHelper.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/DbgHelper.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/DbgHelper.inl -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/DebugDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/DebugDriver.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/DebugPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/DebugPriv.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/EntryPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/EntryPoint.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/Enumerations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/Enumerations.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/GetFileNameFromHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/GetFileNameFromHandle.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/GetModuleBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/GetModuleBase.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/MsvcExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/MsvcExceptions.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/NtDllStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/NtDllStruct.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/Options.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/Options.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/Options.inl -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/ProcessHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/ProcessHelper.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/ReadInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/ReadInt.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/ReadPartialMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/ReadPartialMemory.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/ShowData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/ShowData.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/SimpleTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/SimpleTokenizer.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/StrFromWchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/StrFromWchar.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/SymTagEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/SymTagEnum.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/SymbolEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/SymbolEngine.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/TrapNtOpcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/TrapNtOpcodes.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/buildVersion.h: -------------------------------------------------------------------------------- 1 | #define BUILD_VERSION 42 2 | -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/displayError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/displayError.h -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/include/displayError.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/include/displayError.inl -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/log.txt -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/src/DebugDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/src/DebugDriver.cpp -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/src/EntryPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/src/EntryPoint.cpp -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/src/Enumerations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/src/Enumerations.cpp -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/src/GetFileNameFromHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/src/GetFileNameFromHandle.cpp -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/src/GetModuleBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/src/GetModuleBase.cpp -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/src/NtTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/src/NtTrace.cpp -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/src/ShowData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/src/ShowData.cpp -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/src/SymbolEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/src/SymbolEngine.cpp -------------------------------------------------------------------------------- /11_tools/NtTrace-x86/NtTrace/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/NtTrace-x86/NtTrace/version.rc -------------------------------------------------------------------------------- /11_tools/PEフォーマット_nx_aslr有無の違い.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/PEフォーマット_nx_aslr有無の違い.JPG -------------------------------------------------------------------------------- /11_tools/geany(appdata_roaming)/filedefs/filetypes.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/geany(appdata_roaming)/filedefs/filetypes.README -------------------------------------------------------------------------------- /11_tools/geany(appdata_roaming)/filedefs/filetypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/geany(appdata_roaming)/filedefs/filetypes.c -------------------------------------------------------------------------------- /11_tools/geany(appdata_roaming)/filedefs/filetypes.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/geany(appdata_roaming)/filedefs/filetypes.common -------------------------------------------------------------------------------- /11_tools/geany(appdata_roaming)/filedefs/filetypes.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/geany(appdata_roaming)/filedefs/filetypes.python -------------------------------------------------------------------------------- /11_tools/geany(appdata_roaming)/geany.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/geany(appdata_roaming)/geany.conf -------------------------------------------------------------------------------- /11_tools/geany(appdata_roaming)/keybindings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/geany(appdata_roaming)/keybindings.conf -------------------------------------------------------------------------------- /11_tools/geany(appdata_roaming)/templates/templates.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/geany(appdata_roaming)/templates/templates.README -------------------------------------------------------------------------------- /11_tools/mona/mona-py-the-manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/mona/mona-py-the-manual.pdf -------------------------------------------------------------------------------- /11_tools/mona/mona_compare/mona_compare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/mona/mona_compare/mona_compare.txt -------------------------------------------------------------------------------- /11_tools/mona/mona_compare/シェルコード比較.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/mona/mona_compare/シェルコード比較.JPG -------------------------------------------------------------------------------- /11_tools/mona/mona保存先設定/mona保存先設定_管理者権限が必要.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/mona/mona保存先設定/mona保存先設定_管理者権限が必要.txt -------------------------------------------------------------------------------- /11_tools/mona/mona保存先設定/mona設定ファイル.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/mona/mona保存先設定/mona設定ファイル.JPG -------------------------------------------------------------------------------- /11_tools/nc111nt/doexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/nc111nt/doexec.c -------------------------------------------------------------------------------- /11_tools/nc111nt/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/nc111nt/generic.h -------------------------------------------------------------------------------- /11_tools/nc111nt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/nc111nt/getopt.c -------------------------------------------------------------------------------- /11_tools/nc111nt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/nc111nt/getopt.h -------------------------------------------------------------------------------- /11_tools/nc111nt/hobbit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/nc111nt/hobbit.txt -------------------------------------------------------------------------------- /11_tools/nc111nt/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/nc111nt/license.txt -------------------------------------------------------------------------------- /11_tools/nc111nt/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/nc111nt/makefile -------------------------------------------------------------------------------- /11_tools/nc111nt/nc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/nc111nt/nc.exe -------------------------------------------------------------------------------- /11_tools/nc111nt/netcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/nc111nt/netcat.c -------------------------------------------------------------------------------- /11_tools/nc111nt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/nc111nt/readme.txt -------------------------------------------------------------------------------- /11_tools/python/assemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/python/assemble.py -------------------------------------------------------------------------------- /11_tools/python/assemble/temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/python/assemble/temp -------------------------------------------------------------------------------- /11_tools/python/assemble/temp.s: -------------------------------------------------------------------------------- 1 | BITS 32 2 | 3 | 4 | _start: 5 | jmp esp 6 | -------------------------------------------------------------------------------- /11_tools/python/badchar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/python/badchar.py -------------------------------------------------------------------------------- /11_tools/python/bin2str.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/python/bin2str.bat -------------------------------------------------------------------------------- /11_tools/python/bin2str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/python/bin2str.py -------------------------------------------------------------------------------- /11_tools/python/disassemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/python/disassemble.py -------------------------------------------------------------------------------- /11_tools/python/python_コマンドプロンプト.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/python/python_コマンドプロンプト.JPG -------------------------------------------------------------------------------- /11_tools/python/pythonパイプ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/python/pythonパイプ.png -------------------------------------------------------------------------------- /11_tools/python/str2sjis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/python/str2sjis.py -------------------------------------------------------------------------------- /11_tools/stracent-x86/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/stracent-x86/info.txt -------------------------------------------------------------------------------- /11_tools/stracent-x86/stFilter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/stracent-x86/stFilter.txt -------------------------------------------------------------------------------- /11_tools/stracent-x86/stracent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/stracent-x86/stracent.exe -------------------------------------------------------------------------------- /11_tools/stracent-x86/straceui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/stracent-x86/straceui.exe -------------------------------------------------------------------------------- /11_tools/windbg_pykd/01_load_pykd_pyd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/01_load_pykd_pyd.png -------------------------------------------------------------------------------- /11_tools/windbg_pykd/02_pykd_iat_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/02_pykd_iat_py.png -------------------------------------------------------------------------------- /11_tools/windbg_pykd/SampleBreakPoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/SampleBreakPoint.py -------------------------------------------------------------------------------- /11_tools/windbg_pykd/expOneShotBreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/expOneShotBreak.py -------------------------------------------------------------------------------- /11_tools/windbg_pykd/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/export.py -------------------------------------------------------------------------------- /11_tools/windbg_pykd/iat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/iat.py -------------------------------------------------------------------------------- /11_tools/windbg_pykd/iatOneShotBreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/iatOneShotBreak.py -------------------------------------------------------------------------------- /11_tools/windbg_pykd/printHeap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/printHeap.py -------------------------------------------------------------------------------- /11_tools/windbg_pykd/python2.7.11は使用不可.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11_tools/windbg_pykd/setBP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/setBP.py -------------------------------------------------------------------------------- /11_tools/windbg_pykd/setFuncBP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/setFuncBP.py -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/LogManifest.lgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/LogManifest.lgm -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/Logexts.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/Logexts.ini -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/bthkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/bthkd.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/dbgeng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/dbgeng.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/dbghelp.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/ext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/ext.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/gpiokd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/gpiokd.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/hidkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/hidkd.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/jscript9diagdump.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/jscript9diagdump.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/kext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/kext.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/logexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/logexts.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/msdia120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/msdia120.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/pykd.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/pykd.pyd -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/rcdrkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/rcdrkd.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/srcsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/srcsrv.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/storagekd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/storagekd.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/symsrv.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/uext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/uext.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/usb3kd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/usb3kd.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/usbkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/usbkd.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/wdfkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/wdfkd.dll -------------------------------------------------------------------------------- /11_tools/windbg_pykd/winext/本ファイルの配置場所.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/winext/本ファイルの配置場所.png -------------------------------------------------------------------------------- /11_tools/windbg_pykd/ブレークポイント例.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/11_tools/windbg_pykd/ブレークポイント例.txt -------------------------------------------------------------------------------- /12_syscall/printf_syscall_x64/01_NtWriteFile_x64_sysenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/12_syscall/printf_syscall_x64/01_NtWriteFile_x64_sysenter.png -------------------------------------------------------------------------------- /12_syscall/printf_syscall_x64/02_NtWriteFile_x64_sysenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/12_syscall/printf_syscall_x64/02_NtWriteFile_x64_sysenter.png -------------------------------------------------------------------------------- /13_MinGw_リンカオプション/mingw_gcc_コンパイル_リンク.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/13_MinGw_リンカオプション/mingw_gcc_コンパイル_リンク.png -------------------------------------------------------------------------------- /14_VC_リンカオプション/TinyWebコンパイルオプション.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/14_VC_リンカオプション/TinyWebコンパイルオプション.JPG -------------------------------------------------------------------------------- /14_VC_リンカオプション/TinyWebリンカオプション.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungage53/windows-exploit-development/HEAD/14_VC_リンカオプション/TinyWebリンカオプション.JPG --------------------------------------------------------------------------------