All Projects → ctfhub-team → ctfhub_base_image

ctfhub-team / ctfhub_base_image

Licence: other
Index of CTFHub Base Images

Projects that are alternatives of or similar to ctfhub base image

Europa
Puppet Container Registry
Stars: ✭ 114 (+62.86%)
Mutual labels:  docker-images
Gcr.io
🌀 sync the docker images of the gcr.io and quay.io
Stars: ✭ 200 (+185.71%)
Mutual labels:  docker-images
discolix
distroless arm docker images
Stars: ✭ 22 (-68.57%)
Mutual labels:  docker-images
Dockstation
DockStation is developer-centric application to managing projects based on Docker. Instead of lots of CLI commands you can monitor, configure, and manage services and containers using just a GUI.
Stars: ✭ 1,744 (+2391.43%)
Mutual labels:  docker-images
Earthly
Repeatable builds
Stars: ✭ 5,805 (+8192.86%)
Mutual labels:  docker-images
Build Harness
🤖Collection of Makefiles to facilitate building Golang projects, Dockerfiles, Helm charts, and more
Stars: ✭ 236 (+237.14%)
Mutual labels:  docker-images
Docker Swift Apns
A collection of Docker images to build APNS providers in Swift
Stars: ✭ 34 (-51.43%)
Mutual labels:  docker-images
docker-manpages-osx
the missing man pages for Docker on Mac OS X
Stars: ✭ 16 (-77.14%)
Mutual labels:  docker-images
Docker Credential Gcr
A Docker credential helper for GCR users
Stars: ✭ 192 (+174.29%)
Mutual labels:  docker-images
dockerfiles
A collection of Dockerfiles
Stars: ✭ 103 (+47.14%)
Mutual labels:  docker-images
Mq Container
Container images for IBM® MQ
Stars: ✭ 138 (+97.14%)
Mutual labels:  docker-images
Containerregistry
A set of Python libraries and tools for interacting with a Docker Registry.
Stars: ✭ 183 (+161.43%)
Mutual labels:  docker-images
Devdock
Build php development & production environment based on Docker
Stars: ✭ 242 (+245.71%)
Mutual labels:  docker-images
Sakuli
Sakuli is an end-2-end testing and monitoring tool for web sites and common UIs with multiple monitoring integrations
Stars: ✭ 115 (+64.29%)
Mutual labels:  docker-images
docker-template
🚢 Encapsulated extensible Docker repositories, and images... with metadata.
Stars: ✭ 22 (-68.57%)
Mutual labels:  docker-template
Bitnami Docker Suitecrm
SuiteCRM container image
Stars: ✭ 105 (+50%)
Mutual labels:  docker-images
Docuum
Docuum performs least recently used (LRU) eviction of Docker images. 🗑️
Stars: ✭ 213 (+204.29%)
Mutual labels:  docker-images
binance-node-docker
Docker image for Binance full and light nodes
Stars: ✭ 24 (-65.71%)
Mutual labels:  docker-images
dockerfiles
Repository for my public Docker images.
Stars: ✭ 22 (-68.57%)
Mutual labels:  docker-images
docker-credential-magic
A magic shim for Docker credential helpers 🪄
Stars: ✭ 56 (-20%)
Mutual labels:  docker-images

CTFHUB 基础环境

Summary

目录结构及说明

Web 类

/  
├── docker-compose.yml  
├── Dockerfile  
├── _files  
│   ├── docker-entrypoint* 环境入口文件  
│   ├── flag.sh 动态 Flag 处理文件  
│   └── supervisord.conf (非必须,仅base_web_supervisor_*)  
├── meta.yml 元数据文件,题目名称及相关说明  
└── src  
    └── index.php  

Pwn

Native 环境为基础 Ubuntu 环境,仅预装 tcpdump、lib32stdc++6 等库(详情请看源码),利用 socat 将容器暴露端口转发至题目监听端口。适用于自监听类题目。

Xinetd 在 Native 的基础上(无socat)安装了 xinetd,并以此运行题目。

/  
├── docker-compose.yml  
├── Dockerfile  
├── _files  
│   ├── start.sh 环境入口文件  
│   └── flag.sh 动态 Flag 处理文件  
├── meta.yml 元数据文件,题目名称及相关说明  
├── source (非必须,源代码文件夹)  
│   └── xxx.c  
└── src  
    ├── pwn 题目可执行文件  
    └── pwn.xinetd.conf (非必须,xinetd配置)  
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].