Sign inSign up

iyzyi/ctf

By iyzyi

Updated over 6 years ago

Image
0

917

iyzyi/ctf repository overview

RUN

docker run --name ctf -v /root/ctf-docker-file:/root/file iyzyi/ctf:200301 /bin/bash

Dockerfile

FROM pwntools/pwntools
USER root
WORKDIR /root

#安装python3和两个pip(pwntools镜像中自带python2)
RUN apt-get update && \
    apt-get -y install python-pip && \
    apt-get -y install python3 && \
    apt-get -y install python3-pip

# python3安装pwntools
RUN pip3 install --upgrade git+https://github.com/arthaud/python3-pwntools.git

# python3安装z3-solver
RUN pip3 install z3-solver

#一些基本的服务
RUN apt-get -y install vim && \
    apt-get -y install git && \
    apt-get -y install unzip && \
    apt-get -y install wget && \
    apt-get -y install curl && \
    apt-get -y install netcat

#编译环境
RUN apt-get -y install clang && \
    apt-get -y install cmake && \
    apt-get -y install make

Tag summary

Content type

Image

Digest

Size

504.1 MB

Last updated

over 6 years ago

docker pull iyzyi/ctf