1 Star 2 Fork 3

Glacier/Python渗透测试工具包

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 520 Bytes
一键复制 编辑 原始数据 按行查看 历史
Patrik Cyvoct 提交于 2018-03-02 19:38 +08:00 . change workidr for nmap log path
# Use Python 2.7 Slim
FROM python:2.7-slim
# Update Repos
RUN apt-get update \
&& apt-get install -qq -y --no-install-recommends build-essential sudo git wget curl nmap ruby \
&& apt-get clean
# Install Python dependecies
RUN pip install requests
# Install fsociety
RUN git clone https://github.com/Manisso/fsociety.git \
&& cd fsociety \
&& chmod +x install.sh \
&& ./install.sh
# Change workdir
WORKDIR /root/.fsociety/
# Hack to keep the container running
CMD python -c "import signal; signal.pause()"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Glacier1043/Study-fsociety.git
[email protected]:Glacier1043/Study-fsociety.git
Glacier1043
Study-fsociety
Python渗透测试工具包
master

搜索帮助