File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ RUN apt-get update -y
5
5
RUN apt-get install -y apt-transport-https
6
6
7
7
RUN 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 \
9
10
procps python3 python3-pip python3-dev file binutils sudo locales
10
11
11
12
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
@@ -14,7 +15,12 @@ ENV LC_ALL en_US.UTF-8
14
15
ENV LANG en_US.UTF-8
15
16
ENV LANGUAGE en_US:en
16
17
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
+
17
22
RUN useradd --create-home --groups sudo --shell /bin/zsh wolvsec
23
+ RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
18
24
WORKDIR /home/wolvsec
19
25
USER wolvsec
20
26
You can’t perform that action at this time.
0 commit comments