├── .gitignore ├── AwdPwnPatcher.py ├── README.md ├── Tutorial.md └── example ├── arm ├── patch.py ├── vuln.c ├── vuln32_nopie ├── vuln32_pie └── vuln64 ├── fmt ├── fmt.c ├── fmt32_nopie ├── fmt32_pie └── fmt64 ├── mips ├── patch.py ├── vuln.c ├── vuln32_nopie ├── vuln32_pie └── vuln64 ├── overflow ├── .gdb_history ├── overflow.c ├── overflow32 └── overflow64 ├── uaf ├── .gdb_history ├── uaf.c ├── uaf32 └── uaf64 └── x86 ├── patch.py ├── vuln.c └── vuln64 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | *.pyc 4 | -------------------------------------------------------------------------------- /AwdPwnPatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/AwdPwnPatcher.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/Tutorial.md -------------------------------------------------------------------------------- /example/arm/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/arm/patch.py -------------------------------------------------------------------------------- /example/arm/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/arm/vuln.c -------------------------------------------------------------------------------- /example/arm/vuln32_nopie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/arm/vuln32_nopie -------------------------------------------------------------------------------- /example/arm/vuln32_pie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/arm/vuln32_pie -------------------------------------------------------------------------------- /example/arm/vuln64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/arm/vuln64 -------------------------------------------------------------------------------- /example/fmt/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/fmt/fmt.c -------------------------------------------------------------------------------- /example/fmt/fmt32_nopie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/fmt/fmt32_nopie -------------------------------------------------------------------------------- /example/fmt/fmt32_pie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/fmt/fmt32_pie -------------------------------------------------------------------------------- /example/fmt/fmt64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/fmt/fmt64 -------------------------------------------------------------------------------- /example/mips/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/mips/patch.py -------------------------------------------------------------------------------- /example/mips/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/mips/vuln.c -------------------------------------------------------------------------------- /example/mips/vuln32_nopie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/mips/vuln32_nopie -------------------------------------------------------------------------------- /example/mips/vuln32_pie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/mips/vuln32_pie -------------------------------------------------------------------------------- /example/mips/vuln64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/mips/vuln64 -------------------------------------------------------------------------------- /example/overflow/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/overflow/.gdb_history -------------------------------------------------------------------------------- /example/overflow/overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/overflow/overflow.c -------------------------------------------------------------------------------- /example/overflow/overflow32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/overflow/overflow32 -------------------------------------------------------------------------------- /example/overflow/overflow64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/overflow/overflow64 -------------------------------------------------------------------------------- /example/uaf/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/uaf/.gdb_history -------------------------------------------------------------------------------- /example/uaf/uaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/uaf/uaf.c -------------------------------------------------------------------------------- /example/uaf/uaf32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/uaf/uaf32 -------------------------------------------------------------------------------- /example/uaf/uaf64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/uaf/uaf64 -------------------------------------------------------------------------------- /example/x86/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/x86/patch.py -------------------------------------------------------------------------------- /example/x86/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/x86/vuln.c -------------------------------------------------------------------------------- /example/x86/vuln64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aftern00n/AwdPwnPatcher/HEAD/example/x86/vuln64 --------------------------------------------------------------------------------