From 0ea37acce814b4bc0504dc4e427eb79a2d724d4a Mon Sep 17 00:00:00 2001 From: Chris Humphries Date: Fri, 14 Aug 2020 08:56:00 -0400 Subject: [PATCH] building radare2 doesn't work via Dockerfile for some reason, so will need to build run sys/install.sh manually --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 39125bd..36e5923 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,8 +21,10 @@ pip install capstone requests pwntools r2pipe && \ pip3 install pwntools keystone-engine unicorn capstone ropper && \ mkdir tools && cd tools && \ git clone https://github.com/JonathanSalwan/ROPgadget && \ -git clone https://github.com/radare/radare2 && cd radare2 && sys/install.sh && \ +git clone https://github.com/radare/radare2 && \ cd .. && git clone https://github.com/pwndbg/pwndbg && cd pwndbg && git checkout stable && ./setup.sh && \ cd .. && git clone https://github.com/niklasb/libc-database && \ gem install one_gadget + +# radare2 -> cd radare2 && sys/install.sh \ No newline at end of file