Github:GitHub - david942j/one_gadget: The best tool for finding one gadget RCE in libc
.so.6
1. 支持架构:
i386
amd64 (x86-64)
aarc
h64 (ARMv8)
2. 用法
[c
ode]$ one_gadget# Usage: one_gadget <FILE|-b BuildID> [options]# -b, --build-id BuildID BuildID[sha1] of libc
.# -f, --[no-]forc
e-file Forc
e searc
h gadgets in file instead of build id first.# -l, --level OUTPUT_LEVEL The output level.# OneGadget automatic
ally selec
ts gadgets with higher suc
c
essful probability.# Inc
rease this level to ask OneGadget show more gadgets it found.# Default: 0# -n, --near FUNCTIONS/FILE Order gadgets by their distanc
e to the given func
tions or to the GOT func
tions of the given file.# -r, --[no-]raw Output gadgets offset only, split with one spac
e.# -s, --sc
ript exploit-sc
ript Run exploit sc
ript with all possible gadgets.# The sc
ript will be run as 'exploit-sc
ript $offset'.# --info BuildID Show version information given BuildID.# --base BASE_ADDRESS The base address of libc
.# Default: 0# --version Current gem version.#eg one_gadget libc
.so[/c
ode] [c
ode]root@ubuntu:~/pwn$ one_gadget libc
-2.23.so0x45216 exec
ve("/bin/sh", rsp+0x30, environ)c
onstraints: rax == NULL0x4526a exec
ve("/bin/sh", rsp+0x30, environ)c
onstraints: [rsp+0x30] == NULL0xf0274 exec
ve("/bin/sh", rsp+0x50, environ)c
onstraints: [rsp+0x50] == NULL0xf1117 exec
ve("/bin/sh", rsp+0x70, environ)c
onstraints: [rsp+0x70] == NULL[/c
ode] 0x04 c
hec
ksec
1. 用法
查抄保护机制
[c
ode]$ c
hec
ksec
./pwn[/c
ode] 0x05 ROPgadget
Github:GitHub - JonathanSalwan/ROPgadget: This tool lets you searc
h your gadgets on your binaries to fac
ilitate your ROP exploitation. ROPgadget supports ELF, PE and Mac
h-O format on x86, x64, ARM, ARM64, PowerPC, SPARC, MIPS, RISC-V 64, and RISC-V Compressed arc
hitec
tures.
1. 用法
[c
ode]usage: ROPgadget.py [-h] [-v] [-c
] [--binary <binary>] [--opc
ode <opc
odes>] [--string <string>] [--memstr <string>] [--depth <nbyte>] [--only <key>] [--filter <key>] [--range <start-end>] [--badbytes <byte>] [--rawArc
h <arc
h>] [--rawMode <mode>] [--rawEndian <endian>] [--re <re>] [--offset <hexaddr>] [--ropc
hain] [--thumb] [--c
onsole] [--norop] [--nojop] [--c
allPrec
eded] [--nosys] [--multibr] [--all] [--noinstr] [--dump] [--silent] [--align ALIGN] [--mipsrop <rtype>]desc
ription: ROPgadget lets you searc
h your gadgets on a binary. It supports several file formats and arc
hitec
tures and uses the Capstone disass
embler for the searc
h engine.formats supported: - ELF - PE - Mac
h-O - Rawarc
hitec
tures supported: - x86 - x86-64 - ARM - ARM64 - MIPS - PowerPC - Sparc
optional arguments: -h, --help show this help message and exit -v, --version Display the ROPgadget's version -c
, --c
hec
kUpdate Chec
ks if a new version is available --binary <binary> Spec
ify a binary filename to analyze --opc
ode <opc
odes> Searc
h opc
ode in exec
utable segment --string <string> Searc
h string in readable segment --memstr <string> Searc
h eac
h byte in all readable segment --depth <nbyte> Depth for searc
h engine (default 10) --only <key> Only show spec
ific
instruc
tions --filter <key> Suppress spec
ific
mnemonic
s --range <start-end> Searc
h between two addresses (0x...-0x...) --badbytes <byte> Rejec
ts spec
ific
bytes in the gadget's address --rawArc
h <arc
h> Spec
ify an arc
h for a raw file x86|arm|arm64|sparc
|mips|ppc
--rawMode <mode> Spec
ify a mode for a raw file 32|64|arm|thumb --rawEndian <endian> Spec
ify an endianness for a raw file little|big --re <re> Regular expression --offset <hexaddr> Spec
ify an offset for gadget addresses --ropc
hain Enable the ROP c
hain generation --thumb Use the thumb mode for the searc
h engine (ARM only) --c
onsole Use an interac
tive c
onsole for searc
h engine --norop Disable ROP searc
h engine --nojop Disable JOP searc
h engine --c
allPrec
eded Only show gadgets whic
h are c
all-prec
eded --nosys Disable SYS searc
h engine --multibr Enable multiple branc
h gadgets --all Disables the removal of duplic
ate gadgets --noinstr Disable the gadget instruc
tions c
onsole printing --dump Outputs the gadget bytes --silent Disables printing of gadgets during analysis --align ALIGN Align gadgets addresses (in bytes) --mipsrop <rtype> MIPS useful gadgets finder stac
kfinder|system|tails|lia0|registersexamples: ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --ropc
hain ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --depth 3 ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --string "main" ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --string "m..n" ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --opc
ode c
9c
3 ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --only "mov|ret" ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --only "mov|pop|xor|ret" ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --filter "xc
hg|add|sub|c
mov.*" ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --norop --nosys ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --range 0x08041000-0x08042000 ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --string main --range 0x080c
9aaa-0x080c
9aba ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --memstr "/bin/sh" ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --c
onsole ROPgadget.py --binary ./test-suite-binaries/elf-Linux-x86 --badbytes "00|01-1f|7f|42" ROPgadget.py --binary ./test-suite-binaries/Linux_lib64.so --offset 0xdeadbeef00000000 ROPgadget.py --binary ./test-suite-binaries/elf-ARMv7-ls --depth 5 ROPgadget.py --binary ./test-suite-binaries/elf-ARM64-bash --depth 5 ROPgadget.py --binary ./test-suite-binaries/raw-x86.raw --rawArc
h=x86 --rawMode=32[/c
ode] 0x06 Libc
Searc
her
Github:GitHub - lieanu/Libc
Searc
her: glibc
offset searc
h for c
tf.
1. 简介