added cyberchef

This commit is contained in:
dominikhoebert 2024-08-02 16:27:24 +02:00
parent da9ff58298
commit c466d295e0
2 changed files with 21 additions and 1 deletions

View File

@ -76,7 +76,7 @@ docker network create --driver bridge proxy
- tinyfilemanager 8091 - tinyfilemanager 8091
- jupytherlab 8888 - jupytherlab 8888
- vaultwarden 8093 - vaultwarden 8093
- cyberchef - cyberchef 8094
- https://it-tools.tech/ - https://it-tools.tech/
- https://github.com/ChristianLempa/boilerplates/tree/main/docker-compose - https://github.com/ChristianLempa/boilerplates/tree/main/docker-compose
- cadvisor - cadvisor

20
cyberchef/compose.yml Normal file
View File

@ -0,0 +1,20 @@
# https://github.com/gchq/CyberChef
# https://cyberchef.org/
# Cyber Swiss Army Knife
# CyberChef is a simple, intuitive web app for carrying out all manner of "cyber" operations within a web browser. These operations include simple encoding like XOR and Base64, more complex encryption like AES, DES and Blowfish, creating binary and hexdumps, compression and decompression of data, calculating hashes and checksums, IPv6 and X.509 parsing, changing character encodings, and much more
name: cyberchef
services:
cyberchef:
container_name: cyberchef
image: ghcr.io/gchq/cyberchef:latest
ports:
- 8094:80
networks:
- proxy
networks:
proxy:
external: true