From c466d295e03bb0079107017a649c5c057554382b Mon Sep 17 00:00:00 2001 From: dominikhoebert <42839893+dominikhoebert@users.noreply.github.com> Date: Fri, 2 Aug 2024 16:27:24 +0200 Subject: [PATCH] added cyberchef --- README.md | 2 +- cyberchef/compose.yml | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 cyberchef/compose.yml diff --git a/README.md b/README.md index 18cc3c7..63bc115 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ docker network create --driver bridge proxy - tinyfilemanager 8091 - jupytherlab 8888 - vaultwarden 8093 -- cyberchef +- cyberchef 8094 - https://it-tools.tech/ - https://github.com/ChristianLempa/boilerplates/tree/main/docker-compose - cadvisor diff --git a/cyberchef/compose.yml b/cyberchef/compose.yml new file mode 100644 index 0000000..41863a8 --- /dev/null +++ b/cyberchef/compose.yml @@ -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 + \ No newline at end of file