feat(binana): improve documentation, add a way to import information into IDA

This commit is contained in:
phaneron 2024-08-03 00:45:27 -04:00
parent 063790577d
commit 061609ed2c
19 changed files with 8072 additions and 20 deletions

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
all: generate
compile-symbols:
./script/compile-symbols 3.3.5a
ida-gen:
./bin/binana ida-gen --game 3.3.5a
x64dbg-gen:
./bin/binana x64dbg-gen --game 3.3.5a --base-address=00400000 --module-name=wow.exe
generate: compile-symbols x64dbg-gen ida-gen
dependencies:
mkdir -p bin
go build -v -o bin/binana github.com/thunderbrewhq/binana/go/cmd/binana