[App] CyberChef (#3717)
* Add CyberChef app to the Runtipi App Store * pick a unique port ( thought i had one :-/ ) * docker image tag update * update docker tag (pretty sure this should remain as tipi version 1 until merged) --------- Co-authored-by: cori <cori@gallimaufri.es>
This commit is contained in:
parent
bb4405c05c
commit
a433715c5a
15
apps/cyberchef/config.json
Normal file
15
apps/cyberchef/config.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"name": "CyberChef",
|
||||
"id": "cyberchef",
|
||||
"available": true,
|
||||
"exposable": true,
|
||||
"short_desc": "The Cyber Swiss Army Knife",
|
||||
"author": "GCHQ",
|
||||
"port": 9080,
|
||||
"categories": ["utilities", "security"],
|
||||
"description": "CyberChef is a web app for encryption, encoding, compression, and data analysis.",
|
||||
"tipi_version": 1,
|
||||
"version": "10.18.9",
|
||||
"source": "https://github.com/gchq/CyberChef",
|
||||
"supported_architectures": ["arm64", "amd64"]
|
||||
}
|
37
apps/cyberchef/docker-compose.yml
Normal file
37
apps/cyberchef/docker-compose.yml
Normal file
|
@ -0,0 +1,37 @@
|
|||
version: "3.9"
|
||||
services:
|
||||
cyberchef:
|
||||
container_name: cyberchef
|
||||
image: ghcr.io/gchq/cyberchef:10.18.9
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- TZ=${TZ}
|
||||
ports:
|
||||
- ${APP_PORT}:80
|
||||
networks:
|
||||
- tipi_main_network
|
||||
labels:
|
||||
# Main
|
||||
traefik.enable: true
|
||||
traefik.http.middlewares.cyberchef-web-redirect.redirectscheme.scheme: https
|
||||
traefik.http.services.cyberchef.loadbalancer.server.port: 80
|
||||
# Web
|
||||
traefik.http.routers.cyberchef-insecure.rule: Host(`${APP_DOMAIN}`)
|
||||
traefik.http.routers.cyberchef-insecure.entrypoints: web
|
||||
traefik.http.routers.cyberchef-insecure.service: cyberchef
|
||||
traefik.http.routers.cyberchef-insecure.middlewares: cyberchef-web-redirect
|
||||
# Websecure
|
||||
traefik.http.routers.cyberchef.rule: Host(`${APP_DOMAIN}`)
|
||||
traefik.http.routers.cyberchef.entrypoints: websecure
|
||||
traefik.http.routers.cyberchef.service: cyberchef
|
||||
traefik.http.routers.cyberchef.tls.certresolver: myresolver
|
||||
# Local domain
|
||||
traefik.http.routers.cyberchef-local-insecure.rule: Host(`cyberchef.${LOCAL_DOMAIN}`)
|
||||
traefik.http.routers.cyberchef-local-insecure.entrypoints: web
|
||||
traefik.http.routers.cyberchef-local-insecure.service: cyberchef
|
||||
traefik.http.routers.cyberchef-local-insecure.middlewares: cyberchef-web-redirect
|
||||
# Local domain secure
|
||||
traefik.http.routers.cyberchef-local.rule: Host(`cyberchef.${LOCAL_DOMAIN}`)
|
||||
traefik.http.routers.cyberchef-local.entrypoints: websecure
|
||||
traefik.http.routers.cyberchef-local.service: cyberchef
|
||||
traefik.http.routers.cyberchef-local.tls: true
|
7
apps/cyberchef/metadata/description.md
Normal file
7
apps/cyberchef/metadata/description.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# CyberChef
|
||||
|
||||
CyberChef is a web app for encryption, encoding, compression and data analysis. It 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 or 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, and much more.
|
||||
|
||||
The tool is designed to enable both technical and non-technical analysts to manipulate data in complex ways without having to deal with complex tools or algorithms. It was conceived, designed, built and incrementally improved by an analyst in their 10% innovation time over several years.
|
||||
|
||||
For more information, visit the [CyberChef GitHub repository](https://github.com/gchq/CyberChef).
|
BIN
apps/cyberchef/metadata/logo.jpg
Normal file
BIN
apps/cyberchef/metadata/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
Loading…
Reference in New Issue
Block a user