大宝剑了解一下 发表于 2021-06-07 | 更新于 2024-11-24
| 总字数: 523 | 阅读时长: 2分钟 | 浏览量:
About 大宝剑-信息收集和资产梳理工具(红队、蓝队、企业组织架构、子域名、Web资产梳理、Web指纹识别、ICON_Hash资产匹配)
我个人认为这也是一款优秀的溯源工具,绝对是在能让你在客户现场加餐的优秀工具
Install 容器自动 pull 最新版,除非有大变更
1 docker run -it --name dbj -p 5000:5000 xrsec/dbj:latest
InI 1 2 3 admin / admin http://localhost:5000/admin/ https://github.com/wgpsec/DBJ
查看具体输出信息
Debug
穷人家的孩子总喜欢瞎折腾
贫穷限制了我的想象力,但是无法限制我的行动力
Docker dbj.sh 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #!/bin/sh clear echo "\n\033[1;34m __ __ ____ \033[0m" echo "\033[1;32m \ \/ / | _ \ ___ ___ ___ \033[0m" echo "\033[1;36m \ / | |_) | / __| / _ \ / __| \033[0m" echo "\033[1;31m / \ | _ < \__ \ | __/ | (__ \033[0m" echo "\033[1;35m /_/\_\ |_| \_\ |___/ \___| \___| \n\033[0m" echo "\033[1;32m[help] \033[0m" echo "\033[1;36mhttps://github.com/wgpsec/DBJ \n\033[0m" echo "\033[1;36mUpdate DBJ \033[0m" /usr/bin/git -C /DBJ/ pull echo "\033[1;36mUpdate DBJ-PY \033[0m" pip3 install -r /DBJ/requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ echo "\033[1;36mStart DBJ \033[0m" sh -c "/DBJ/start.sh"
Dockerfile 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 FROM ubuntu:18.04 LABEL Auther="xrsec" LABEL Mail="Jalapeno1868@outlook.com" LABEL Github="https://github.com/wgpsec/DBJ" ADD . / RUN sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list RUN apt-get update \ && apt-get -o Acquire::BrokenProxy="true" -o Acquire::http::No-Cache="true" -o Acquire::http::Pipeline-Depth="0" -y install python3 python3-pip mongodb redis-server git \ && git clone https://github.com/wgpsec/DBJ.git /DBJ \ && pip3 install -r /DBJ/requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ \ && chmod 777 /DBJ/start.sh \ && chmod 777 /dbj.sh WORKDIR /DBJ/ ENV LC_ALL=de_DE.utf-8 ENV LANG=de_DE.utf-8 EXPOSE 5000 CMD /dbj.sh
穷人家的孩子表示想要一个小小的关注可以嘛
XRSec has the right to modify and interpret this article. If you want to reprint or disseminate this article, you must ensure the integrity of this article, including all contents such as copyright notice. Without the permission of the author, the content of this article shall not be modified or increased or decreased arbitrarily, and it shall not be used for commercial purposes in any way