讓 Radare2 支援 Capstone 6
Radare2 目前仍只支援 Capstone 5,但 Capstone git 已進階到 Capstone 6 了,索性動手修改,讓 Radare2 也能吃 Capston 6。
configure - 加入 --with-capstone6 選項和相關邏輯
config-user.mk.acr - 加入 USE_CS6 變 …
Radare2 目前仍只支援 Capstone 5,但 Capstone git 已進階到 Capstone 6 了,索性動手修改,讓 Radare2 也能吃 Capston 6。
configure - 加入 --with-capstone6 選項和相關邏輯
config-user.mk.acr - 加入 USE_CS6 變 …CFLAGS+=$(shell pkg-config --cflags r_socket) -I/home/ols3/MYBUILD/RADARE2/radare2/subprojects/sdb/include
LDFLAGS+=$(shell pkg-config --libs r_socket)
TESTS=test-pipe test-pipe2 test-spawn
all: $(TESTS)
test-pipe:
$(CC) -o test-pipe test-pipe.c $(CFLAGS) $(LDFLAGS)
r2 -q -c '#!pipe ./test-pipe' /bin/ls
test …Radare2 是一個免費/自由的工具鏈,可簡化一些低階組譯任務,例如取證、軟體逆向工程、探採、偵錯…
它由函式庫(透過外掛來擴展)和 …