Skip to content

常用安全工具 docker镜像 自动更新仓库

Notifications You must be signed in to change notification settings

xiecat/sec-docker

Repository files navigation

常用安全工具自动生成仓库

GitHub Workflow Status 使用 github action 生成 docker 镜像并且自动推送给 DockerHub

目前已经支持 amd64arm64arm平台

latest 是最近一次更新版本
nightly 当天版本
yyyy-mm-dd 某天更新的版本

国内加速构建

国内网络环境太差。为了好构建可以加入国内源测试。测试结束后移除即可

RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories
RUN pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

定期更新镜像

每天自动构建

基础镜像

版本 镜像大小
docker pull becivells/alpine-chromium:latest Docker Image Size (tag)
docker pull becivells/alpine-chromium-py3:latest Docker Image Size (tag)
docker pull becivells/gobase-1.5:latest Docker Image Size (tag)
docker pull becivells/gobase-1.6:latest Docker Image Size (tag)
docker pull becivells/gobase-1.7:latest Docker Image Size (tag)
docker pull becivells/alpine-gcc:latest Docker Image Size (tag)

应用镜像

版本 镜像大小
docker pull becivells/anew:latest Docker Image Size (tag)
docker pull becivells/nmap:latest Docker Image Size (tag)
docker pull becivells/zmap:latest Docker Image Size (tag)
docker pull becivells/chaos:latest Docker Image Size (tag)
docker pull becivells/dismap:latest Docker Image Size (tag)
docker pull becivells/vulmap:latest Docker Image Size (tag)
docker pull becivells/fofax:latest Docker Image Size (tag)
docker pull becivells/interactsh:latest Docker Image Size (tag)
docker pull becivells/nabbu:latest Docker Image Size (tag)
docker pull becivells/nuclei:latest Docker Image Size (tag)
docker pull becivells/sec-custom:latest Docker Image Size (tag)
docker pull becivells/xray:latest Docker Image Size (tag)
docker pull becivells/amass:latest Docker Image Size (tag)
docker pull becivells/crawlergo:latest Docker Image Size (tag)
docker pull becivells/dnsx:latest Docker Image Size (tag)
docker pull becivells/httpx:latest Docker Image Size (tag)
docker pull becivells/ksubdomain:latest Docker Image Size (tag)
docker pull becivells/notify:latest Docker Image Size (tag)
docker pull becivells/proxify:latest Docker Image Size (tag)
docker pull becivells/dumpall:latest Docker Image Size (tag)
docker pull becivells/pocsuite3:latest Docker Image Size (tag)
docker pull becivells/dirsearch:latest Docker Image Size (tag)
docker pull becivells/massdns:latest Docker Image Size (tag)
docker pull becivells/subfinder:latest Docker Image Size (tag)
docker pull becivells/oneforall:latest Docker Image Size (tag)
docker pull becivells/masscan:latest Docker Image Size (tag)
docker pull becivells/yaklang:latest Docker Image Size (tag)

FAQ

ksubdomain 扫描无结果

起一个容器先执行一下,如果无结果。考虑配置文件问题 docker 是一次性容器。内部ip和mac都是随时会变化的。ksubdomain 生成的配置文件ip mac是固定的。运行之前先删除 ksubdomain.yaml 可参考我这里的 shell

#!/usr/bin/env sh

cd /app/
while true;do
  rm -rf ksubdomain.yaml
  for domain in $(cat domains.txt);do
    ksubdomain enum  -d $domain -od -silent --skip-wild|anew subdomains.txt;
  done
  echo "任务完成共计 $(cat subdomains.txt|wc -l) 子域名"|notify
  sleep 7200;
 done

Releases

No releases published

Packages

No packages published