Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353 2024-12-06 09:55:12 +00:00
parent 9df2f85cd9
commit ef87a33273
15 changed files with 136 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=8080

View File

@ -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

View File

@ -0,0 +1,17 @@
networks:
1panel-network:
external: true
services:
app_name:
container_name: cyberchef
env_file:
- ./envs/global.env
- .env
image: ghcr.io/gchq/cyberchef:10.19.4
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:80
restart: always

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@ -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

View File

@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@ -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

View File

@ -0,0 +1,20 @@
# CyberChef
一个用于加密、编码、压缩和数据分析的网页应用程序
![CyberChef](https://file.lifebus.top/imgs/cyberchef_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
CyberChef 是一个简单直观的网页应用程序,可以在网页浏览器中执行各种“网络”操作。
这些操作包括简单的编码如 XOR 和 Base64更复杂的加密如 AES、DES 和 Blowfish创建二进制和十六进制转储数据的压缩和解压缩计算哈希和校验和IPv6
和 X.509 解析,更改字符编码,等等。
该工具旨在使技术和非技术分析师都能够以复杂的方式操作数据,而无需处理复杂的工具或算法。它是在分析师的
10%创新时间内,经过数年构思、设计、构建和逐步改进的。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

View File

@ -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/

BIN
appstore/cyberchef/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

3
dockge/cyberchef/.env Normal file
View File

@ -0,0 +1,3 @@
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=8080

View File

@ -0,0 +1,17 @@
networks:
1panel-network:
external: true
services:
app_name:
container_name: cyberchef
env_file:
- ./envs/global.env
- .env
image: ghcr.io/gchq/cyberchef:10.19.4
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:80
restart: always

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai