diff --git a/.github/README.md b/.github/README.md
index f50bd2eb4..4c0e63a18 100644
--- a/.github/README.md
+++ b/.github/README.md
@@ -52,6 +52,7 @@
| 🟢 |
| Casdoor | https://casdoor.org/ | 身份和访问管理(IAM)/单点登录(SSO)平台 | |
| 🟢 |
| Certimate | https://docs.certimate.me/ | SSL证书管理工具 | |
| 🟢 |
| Cookie Cloud | https://github.com/easychen/CookieCloud/ | CookieCloud是一个和自架服务器同步浏览器Cookie和LocalStorage的小工具 | |
+| 🟢 |
| CyberChef | https://github.com/gchq/CyberChef/ | 一个用于加密、编码、压缩和数据分析的网页应用程序 | |
| 🟢 |
| Dash. | https://getdashdot.com/ | 现代服务器仪表板 | |
| 🟢 |
| Dash.(GPU) | https://getdashdot.com/ | 【GPU支持】现代服务器仪表板 | |
| 🟢 |
| DeepLX | https://deeplx.owo.network/ | DeepL免费API(无需TOKEN) | |
diff --git a/README.md b/README.md
index 2a5d6aa46..14f33f0b1 100644
--- a/README.md
+++ b/README.md
@@ -47,6 +47,7 @@
| 🟢 |
| Casdoor | https://casdoor.org/ | 身份和访问管理(IAM)/单点登录(SSO)平台 | |
| 🟢 |
| Certimate | https://docs.certimate.me/ | SSL证书管理工具 | |
| 🟢 |
| Cookie Cloud | https://github.com/easychen/CookieCloud/ | CookieCloud是一个和自架服务器同步浏览器Cookie和LocalStorage的小工具 | |
+| 🟢 |
| CyberChef | https://github.com/gchq/CyberChef/ | 一个用于加密、编码、压缩和数据分析的网页应用程序 | |
| 🟢 |
| Dash. | https://getdashdot.com/ | 现代服务器仪表板 | |
| 🟢 |
| Dash.(GPU) | https://getdashdot.com/ | 【GPU支持】现代服务器仪表板 | |
| 🟢 |
| DeepLX | https://deeplx.owo.network/ | DeepL免费API(无需TOKEN) | |
diff --git a/apps/cyberchef/10.19.4/data.yml b/apps/cyberchef/10.19.4/data.yml
new file mode 100644
index 000000000..482f7b275
--- /dev/null
+++ b/apps/cyberchef/10.19.4/data.yml
@@ -0,0 +1,10 @@
+additionalProperties:
+ formFields:
+ - default: 8080
+ edit: true
+ envKey: PANEL_APP_PORT_HTTP
+ labelZh: WebUI 端口
+ labelEn: WebUI port
+ required: true
+ rule: paramPort
+ type: number
diff --git a/apps/cyberchef/10.19.4/docker-compose.yml b/apps/cyberchef/10.19.4/docker-compose.yml
new file mode 100644
index 000000000..9a5984a20
--- /dev/null
+++ b/apps/cyberchef/10.19.4/docker-compose.yml
@@ -0,0 +1,18 @@
+networks:
+ 1panel-network:
+ external: true
+
+services:
+ app_name:
+ image: ghcr.io/gchq/cyberchef:10.19.4
+ container_name: ${CONTAINER_NAME}
+ labels:
+ createdBy: "Apps"
+ restart: always
+ networks:
+ - 1panel-network
+ ports:
+ - ${PANEL_APP_PORT_HTTP}:80
+ env_file:
+ - ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
+ - ${ENV_FILE:-/etc/1panel/envs/default.env}
diff --git a/apps/cyberchef/10.19.4/envs/default.env b/apps/cyberchef/10.19.4/envs/default.env
new file mode 100644
index 000000000..cd05f46e6
--- /dev/null
+++ b/apps/cyberchef/10.19.4/envs/default.env
@@ -0,0 +1,2 @@
+# copyright© 2024 XinJiang Ms Studio
+ENV_FILE=.env
diff --git a/apps/cyberchef/10.19.4/envs/global.env b/apps/cyberchef/10.19.4/envs/global.env
new file mode 100644
index 000000000..e10989fe4
--- /dev/null
+++ b/apps/cyberchef/10.19.4/envs/global.env
@@ -0,0 +1,2 @@
+# copyright© 2024 XinJiang Ms Studio
+TZ=Asia/Shanghai
diff --git a/apps/cyberchef/10.19.4/scripts/init.sh b/apps/cyberchef/10.19.4/scripts/init.sh
new file mode 100644
index 000000000..07fb8c3fe
--- /dev/null
+++ b/apps/cyberchef/10.19.4/scripts/init.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ sed -i '/^GLOBAL_ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+ echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/cyberchef/10.19.4/scripts/uninstall.sh b/apps/cyberchef/10.19.4/scripts/uninstall.sh
new file mode 100644
index 000000000..c86c4fbca
--- /dev/null
+++ b/apps/cyberchef/10.19.4/scripts/uninstall.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/cyberchef/10.19.4/scripts/upgrade.sh b/apps/cyberchef/10.19.4/scripts/upgrade.sh
new file mode 100644
index 000000000..07fb8c3fe
--- /dev/null
+++ b/apps/cyberchef/10.19.4/scripts/upgrade.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ sed -i '/^GLOBAL_ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+ echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/cyberchef/README.md b/apps/cyberchef/README.md
new file mode 100644
index 000000000..cc5296979
--- /dev/null
+++ b/apps/cyberchef/README.md
@@ -0,0 +1,20 @@
+# CyberChef
+
+一个用于加密、编码、压缩和数据分析的网页应用程序
+
+
+
+
+
+## 简介
+
+CyberChef 是一个简单直观的网页应用程序,可以在网页浏览器中执行各种“网络”操作。
+这些操作包括简单的编码如 XOR 和 Base64,更复杂的加密如 AES、DES 和 Blowfish,创建二进制和十六进制转储,数据的压缩和解压缩,计算哈希和校验和,IPv6
+和 X.509 解析,更改字符编码,等等。
+
+该工具旨在使技术和非技术分析师都能够以复杂的方式操作数据,而无需处理复杂的工具或算法。它是在分析师的
+10%创新时间内,经过数年构思、设计、构建和逐步改进的。
+
+---
+
+
diff --git a/apps/cyberchef/data.yml b/apps/cyberchef/data.yml
new file mode 100644
index 000000000..701504259
--- /dev/null
+++ b/apps/cyberchef/data.yml
@@ -0,0 +1,14 @@
+additionalProperties:
+ key: cyberchef
+ name: CyberChef
+ tags:
+ - WebSite
+ - Local
+ shortDescZh: 一个用于加密、编码、压缩和数据分析的网页应用程序
+ shortDescEn: a web app for encryption, encoding, compression and data analysis
+ type: website
+ crossVersionUpdate: true
+ limit: 0
+ website: https://github.com/gchq/CyberChef/
+ github: https://github.com/gchq/CyberChef/
+ document: https://github.com/gchq/CyberChef/
diff --git a/apps/cyberchef/logo.png b/apps/cyberchef/logo.png
new file mode 100644
index 000000000..f48cd49b2
Binary files /dev/null and b/apps/cyberchef/logo.png differ