File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ RUN apt-get update -y
55RUN apt-get install -y apt-transport-https
66
77RUN apt-get install -y \
8- build-essential strace curl wget gcc zsh vim gdb git netcat \
8+ build-essential cmake pkg-config \
9+ strace curl wget gcc zsh vim gdb git netcat \
910 procps python3 python3-pip python3-dev file binutils sudo locales
1011
1112RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
@@ -14,7 +15,12 @@ ENV LC_ALL en_US.UTF-8
1415ENV LANG en_US.UTF-8
1516ENV LANGUAGE en_US:en
1617
18+ RUN git clone https://github.com/unicorn-engine/unicorn.git /opt/unicorn
19+ WORKDIR /opt/unicorn/bindings/python
20+ RUN python3 setup.py install && rm -rf /opt/unicorn
21+
1722RUN useradd --create-home --groups sudo --shell /bin/zsh wolvsec
23+ RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
1824WORKDIR /home/wolvsec
1925USER wolvsec
2026
You can’t perform that action at this time.
0 commit comments