File tree Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change 1
1
FROM debian:latest
2
2
3
- RUN apt-get update
3
+ RUN apt-get update -y && apt-get upgrade -y
4
4
5
- RUN apt-get install -y build-essential strace ltrace curl wget gcc
5
+ RUN apt-get install -y \
6
+ build-essential strace ltrace curl wget gcc zsh vim gdb git netcat \
7
+ procps python3 python3-pip python3-dev file binutils sudo locales
6
8
7
- RUN apt-get install -y zsh vim gdb git
9
+ RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
8
10
9
- RUN apt-get install -y netcat
11
+ ENV LC_ALL en_US.UTF-8
12
+ ENV LANG en_US.UTF-8
13
+ ENV LANGUAGE en_US:en
10
14
11
- RUN useradd --create-home --shell /bin/zsh wolvsec
15
+ RUN useradd --create-home --groups sudo -- shell /bin/zsh wolvsec
12
16
WORKDIR /home/wolvsec
17
+ USER wolvsec
18
+
19
+ ENV PATH="${PATH}:/home/wolvsec/.local/bin"
20
+
21
+ RUN pip3 install pwntools numpy ipython
22
+
23
+ RUN bash -c "$(curl -fsSL https://gef.blah.cat/sh)"
24
+
25
+ ENTRYPOINT [ "/bin/zsh" ]
You can’t perform that action at this time.
0 commit comments