Skip to content

Commit a0cbf86

Browse files
feat: add cyberchef app (#7243)
1 parent 328712c commit a0cbf86

6 files changed

Lines changed: 107 additions & 0 deletions

File tree

apps/cyberchef/10.22.1/data.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
additionalProperties:
2+
formFields:
3+
- default: 8080
4+
edit: true
5+
envKey: PANEL_APP_PORT_HTTP
6+
labelZh: WebUI 端口
7+
labelEn: WebUI port
8+
label:
9+
en: WebUI port
10+
es-es: Puerto de WebUI
11+
zh: WebUI 端口
12+
zh-Hant: WebUI 連接埠
13+
ja: WebUI ポート
14+
ko: WebUI 포트
15+
ru: Порт WebUI
16+
ms: Port WebUI
17+
pt-br: Porta da WebUI
18+
tr: WebUI baglanti noktasi
19+
required: true
20+
rule: paramPort
21+
type: number
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
services:
2+
cyberchef:
3+
image: ghcr.io/gchq/cyberchef:10.22.1
4+
container_name: ${CONTAINER_NAME}
5+
restart: always
6+
networks:
7+
- 1panel-network
8+
ports:
9+
- ${PANEL_APP_PORT_HTTP}:80
10+
labels:
11+
createdBy: "Apps"
12+
networks:
13+
1panel-network:
14+
external: true

apps/cyberchef/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## 产品介绍
2+
3+
CyberChef 被官方称为 “The Cyber Swiss Army Knife”,是一款运行在浏览器中的数据处理工具,适合在不写脚本的情况下完成编码、解码、加解密、压缩、哈希、格式转换和取证辅助分析等工作。
4+
5+
## 主要功能
6+
7+
- 支持 Base64、XOR、AES、DES、Blowfish 等编码和加解密操作
8+
- 支持压缩、解压、哈希与校验和、二进制和十六进制转储
9+
- 支持 IPv6、X.509、字符编码等解析和转换
10+
- 支持拖拽文件、自动 Bake、断点调试、保存和加载 Recipe
11+
- 绝大多数处理都在浏览器本地完成,适合离线或内网场景

apps/cyberchef/README_en.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## Introduction
2+
3+
CyberChef, officially described as "The Cyber Swiss Army Knife", is a browser-based data processing toolkit. It is well suited for encoding, decoding, encryption, decryption, compression, hashing, format conversion, and forensic-style analysis without writing scripts.
4+
5+
## Features
6+
7+
- Supports operations such as Base64, XOR, AES, DES, and Blowfish.
8+
- Supports compression, decompression, hashes, checksums, binary dumps, and hex dumps.
9+
- Supports parsing and converting IPv6, X.509, and character encodings.
10+
- Supports drag and drop, Auto Bake, breakpoints, and saving/loading recipes.
11+
- Most processing happens locally in the browser, making it suitable for offline or internal-network use.
12+
13+
## Access After Installation
14+
15+
After installation, visit `http://<ServerIP>:<PANEL_APP_PORT_HTTP>`.
16+
17+
CyberChef does not require an initial account setup and can be used directly.
18+
19+
## Data Storage
20+
21+
The current 1Panel template is stateless. If you need to preserve recipes, you can rely on browser local storage or extend the deployment according to the official documentation.
22+
23+
## Notes
24+
25+
The official project is still actively evolving. It is best suited for analysis and transformation workflows and should not be treated as a substitute for security-audited cryptographic products.
26+
27+
## Official Links
28+
29+
- Live Demo: https://gchq.github.io/CyberChef/
30+
- Documentation: https://github.com/gchq/CyberChef/wiki
31+
- Source Code: https://github.com/gchq/CyberChef

apps/cyberchef/data.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CyberChef
2+
tags:
3+
- 实用工具
4+
title: 浏览器中的数据编码、解码与分析工具
5+
description: 浏览器中的数据编码、解码与分析工具
6+
additionalProperties:
7+
key: cyberchef
8+
name: CyberChef
9+
tags:
10+
- Tool
11+
shortDescZh: 浏览器中的数据编码、解码与分析工具
12+
shortDescEn: Browser-based toolbox for encoding, decoding and data analysis
13+
description:
14+
en: Browser-based toolbox for encoding, decoding and data analysis
15+
es-es: Caja de herramientas en el navegador para codificacion, decodificacion y analisis de datos
16+
zh: 浏览器中的数据编码、解码与分析工具
17+
zh-Hant: 瀏覽器中的資料編碼、解碼與分析工具
18+
ja: ブラウザで使えるデータのエンコード、デコード、解析ツール
19+
ko: 브라우저 기반 데이터 인코딩, 디코딩 및 분석 도구
20+
ru: Набор инструментов в браузере для кодирования, декодирования и анализа данных
21+
ms: Kotak alat berasaskan pelayar untuk pengekodan, penyahkodan dan analisis data
22+
pt-br: Caixa de ferramentas no navegador para codificacao, decodificacao e analise de dados
23+
tr: Tarayici tabanli kodlama, kod cozumleme ve veri analizi araci
24+
type: website
25+
crossVersionUpdate: true
26+
limit: 0
27+
recommend: 0
28+
website: https://gchq.github.io/CyberChef/
29+
github: https://github.com/gchq/CyberChef
30+
document: https://github.com/gchq/CyberChef/wiki

apps/cyberchef/logo.png

4.51 KB
Loading

0 commit comments

Comments
 (0)