feat: 优化 DVWA 安装包
This commit is contained in:
parent
6abca0ed1d
commit
a2f49042eb
|
|
@ -2,14 +2,14 @@
|
||||||
|
|
||||||
## 默认账户密码
|
## 默认账户密码
|
||||||
|
|
||||||
用户名:`admin`
|
```
|
||||||
|
username:admin
|
||||||
|
password:password
|
||||||
|
```
|
||||||
|
|
||||||
密码:`password`
|
## 中文名:"该死的" 不安全的Web应用程序
|
||||||
|
|
||||||
|
**DVWA** 是一个编码差的、易受攻击的 PHP/MySQL Web 应用程序。
|
||||||
## 中文名:"该死的"不安全的Web应用程序
|
|
||||||
|
|
||||||
DVWA是一个编码差的、易受攻击的 PHP/MySQL Web应用程序。
|
|
||||||
|
|
||||||
### 目的
|
### 目的
|
||||||
- 帮助信息安全专业人员在合法的环境中,练习技能和测试工具
|
- 帮助信息安全专业人员在合法的环境中,练习技能和测试工具
|
||||||
|
|
|
||||||
|
|
@ -2,18 +2,18 @@ name: DVWA
|
||||||
tags:
|
tags:
|
||||||
- 安全
|
- 安全
|
||||||
title: DVWA
|
title: DVWA
|
||||||
description: 一个用来进行安全脆弱性鉴定的PHP/MySQL Web 应用平台。
|
description: 一个用来进行安全脆弱性鉴定的 PHP/MySQL Web 应用平台。
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
key: dvwa
|
key: dvwa
|
||||||
name: DVWA
|
name: DVWA
|
||||||
tags:
|
tags:
|
||||||
- Security
|
- Security
|
||||||
shortDescZh: 一个用来进行安全脆弱性鉴定的PHP/MySQL Web 应用平台。
|
shortDescZh: 一个用来进行安全脆弱性鉴定的 PHP/MySQL Web 应用平台。
|
||||||
shortDescEn: DVWA (Damn Vulnerable Web Application)
|
shortDescEn: DVWA (Damn Vulnerable Web Application)
|
||||||
type: security
|
type: tool
|
||||||
crossVersionUpdate: true
|
crossVersionUpdate: true
|
||||||
limit: 0
|
limit: 0
|
||||||
recommend: 10
|
recommend: 0
|
||||||
website: https://github.com/digininja/DVWA
|
website: https://github.com/digininja/DVWA
|
||||||
github: https://github.com/digininja/DVWA
|
github: https://github.com/digininja/DVWA
|
||||||
document: https://github.com/digininja/DVWA
|
document: https://github.com/digininja/DVWA
|
||||||
|
|
|
||||||
|
|
@ -1,89 +1,92 @@
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
formFields:
|
formFields:
|
||||||
- child:
|
- child:
|
||||||
default: ""
|
default: ""
|
||||||
envKey: PANEL_DB_HOST
|
envKey: PANEL_DB_HOST
|
||||||
required: true
|
required: true
|
||||||
type: service
|
type: service
|
||||||
default: mariadb
|
default: mysql
|
||||||
envKey: PANEL_DB_TYPE
|
envKey: PANEL_DB_TYPE
|
||||||
labelEn: Database Service
|
labelEn: Database Service
|
||||||
labelZh: 数据库服务
|
labelZh: 数据库服务
|
||||||
required: true
|
required: true
|
||||||
type: apps
|
type: apps
|
||||||
values:
|
values:
|
||||||
- label: MariaDB
|
- label: MySQL
|
||||||
value: mariadb
|
value: mysql
|
||||||
- label: MySQL
|
- label: MariaDB
|
||||||
value: mysql
|
value: mariadb
|
||||||
- default: dvwa
|
- default: dvwa
|
||||||
envKey: PANEL_DB_NAME
|
envKey: PANEL_DB_NAME
|
||||||
labelEn: Database
|
labelEn: Database
|
||||||
labelZh: 数据库名
|
labelZh: 数据库名
|
||||||
required: true
|
random: true
|
||||||
rule: paramCommon
|
required: true
|
||||||
type: text
|
rule: paramCommon
|
||||||
- default: dvwa
|
type: text
|
||||||
envKey: PANEL_DB_USER
|
- default: dvwa
|
||||||
labelEn: User
|
envKey: PANEL_DB_USER
|
||||||
labelZh: 数据库用户
|
labelEn: User
|
||||||
required: true
|
labelZh: 数据库用户
|
||||||
rule: paramCommon
|
random: true
|
||||||
type: text
|
required: true
|
||||||
- default: p@ssw0rd
|
rule: paramCommon
|
||||||
envKey: PANEL_DB_USER_PASSWORD
|
type: text
|
||||||
labelEn: Password
|
- default: dvwa
|
||||||
labelZh: 数据库用户密码
|
envKey: PANEL_DB_USER_PASSWORD
|
||||||
required: true
|
labelEn: Password
|
||||||
rule: paramComplexity
|
labelZh: 数据库用户密码
|
||||||
type: password
|
random: true
|
||||||
- default: "low"
|
required: true
|
||||||
envKey: DVWA_SECURITY_LEVEL
|
rule: paramComplexity
|
||||||
labelEn: Security level
|
type: password
|
||||||
labelZh: 安全级别
|
- default: "low"
|
||||||
required: true
|
envKey: DVWA_SECURITY_LEVEL
|
||||||
type: select
|
labelEn: Security level
|
||||||
values:
|
labelZh: 安全级别
|
||||||
- label: 低
|
required: true
|
||||||
value: "low"
|
type: select
|
||||||
- label: 中
|
values:
|
||||||
value: "medium"
|
- label: 低
|
||||||
- label: 高
|
value: "low"
|
||||||
value: "high"
|
- label: 中
|
||||||
- label: 极高
|
value: "medium"
|
||||||
value: "impossible"
|
- label: 高
|
||||||
- default: "zh"
|
value: "high"
|
||||||
envKey: DVWA_DEFAULT_LOCALE
|
- label: 极高
|
||||||
labelEn: Locale
|
value: "impossible"
|
||||||
labelZh: 语言环境
|
- default: "zh"
|
||||||
required: true
|
envKey: DVWA_DEFAULT_LOCALE
|
||||||
type: select
|
labelEn: Locale
|
||||||
values:
|
labelZh: 语言环境
|
||||||
- label: 中文
|
required: true
|
||||||
value: "zh"
|
type: select
|
||||||
- label: 英文
|
values:
|
||||||
value: "en"
|
- label: 中文
|
||||||
- default: ""
|
value: "zh"
|
||||||
edit: true
|
- label: 英文
|
||||||
envKey: DVWA_RECAPTCHA_PUBLIC_KEY
|
value: "en"
|
||||||
labelEn: Recaptcha Public Key
|
- default: ""
|
||||||
labelZh: 验证码公钥
|
edit: true
|
||||||
required: false
|
envKey: DVWA_RECAPTCHA_PUBLIC_KEY
|
||||||
rule: paramCommon
|
labelEn: Recaptcha Public Key
|
||||||
type: text
|
labelZh: 验证码公钥
|
||||||
- default: ""
|
required: false
|
||||||
edit: true
|
rule: paramCommon
|
||||||
envKey: DVWA_RECAPTCHA_PRIVATE_KEY
|
type: text
|
||||||
labelEn: Recaptcha Private Key
|
- default: ""
|
||||||
labelZh: 验证码私钥
|
edit: true
|
||||||
required: false
|
envKey: DVWA_RECAPTCHA_PRIVATE_KEY
|
||||||
rule: paramCommon
|
labelEn: Recaptcha Private Key
|
||||||
type: text
|
labelZh: 验证码私钥
|
||||||
- default: "4280"
|
required: false
|
||||||
edit: true
|
rule: paramCommon
|
||||||
envKey: PANEL_APP_PORT_HTTP
|
type: text
|
||||||
labelEn: Port
|
- default: "4280"
|
||||||
labelZh: 端口
|
edit: true
|
||||||
required: true
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
rule: paramPort
|
labelEn: Port
|
||||||
type: number
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue