mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-12-12 13:42:22 +08:00
Processed apps directory via GitHub Actions
This commit is contained in:
parent
9df2f85cd9
commit
ef87a33273
3
appstore/cyberchef/10.19.4/.env
Normal file
3
appstore/cyberchef/10.19.4/.env
Normal file
@ -0,0 +1,3 @@
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=8080
|
||||
|
10
appstore/cyberchef/10.19.4/data.yml
Normal file
10
appstore/cyberchef/10.19.4/data.yml
Normal 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
|
17
appstore/cyberchef/10.19.4/docker-compose.yml
Normal file
17
appstore/cyberchef/10.19.4/docker-compose.yml
Normal 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
|
2
appstore/cyberchef/10.19.4/envs/default.env
Normal file
2
appstore/cyberchef/10.19.4/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
2
appstore/cyberchef/10.19.4/envs/global.env
Normal file
2
appstore/cyberchef/10.19.4/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
17
appstore/cyberchef/10.19.4/scripts/init.sh
Normal file
17
appstore/cyberchef/10.19.4/scripts/init.sh
Normal 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
|
10
appstore/cyberchef/10.19.4/scripts/uninstall.sh
Normal file
10
appstore/cyberchef/10.19.4/scripts/uninstall.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
17
appstore/cyberchef/10.19.4/scripts/upgrade.sh
Normal file
17
appstore/cyberchef/10.19.4/scripts/upgrade.sh
Normal 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
|
20
appstore/cyberchef/README.md
Normal file
20
appstore/cyberchef/README.md
Normal 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)
|
14
appstore/cyberchef/data.yml
Normal file
14
appstore/cyberchef/data.yml
Normal 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
BIN
appstore/cyberchef/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
3
dockge/cyberchef/.env
Normal file
3
dockge/cyberchef/.env
Normal file
@ -0,0 +1,3 @@
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=8080
|
||||
|
17
dockge/cyberchef/docker-compose.yml
Normal file
17
dockge/cyberchef/docker-compose.yml
Normal 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
|
2
dockge/cyberchef/envs/default.env
Normal file
2
dockge/cyberchef/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
2
dockge/cyberchef/envs/global.env
Normal file
2
dockge/cyberchef/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
Loading…
Reference in New Issue
Block a user