Commit 93799340 authored by Medicean's avatar Medicean

(Expired:ShellManager) shell 配置页面提示不推荐使用 default、random 编码器, 明文传输 Payload 容易受到转义等影响,未来版本将会考虑移除

parent 1b660f8b
......@@ -43,6 +43,7 @@
* 新增 「JSP Custom Shell For Oracle」
* 新增 Decodes 自动猜解编码,在中文少量的情况下,成功率会降低
* 系统托盘新增「重启应用」菜单
* shell 配置页面提示不推荐使用 default、random 编码器, 明文传输 Payload 容易受到转义等影响,未来版本将会考虑移除
### BugFix
......
......@@ -95,6 +95,7 @@ module.exports = {
},
list: {
title: 'Shell Lists',
not_recommended: 'Not recommended',
grid: {
url: 'URL',
ip: 'IP',
......
......@@ -96,6 +96,7 @@ module.exports = {
},
list: {
title: '数据管理',
not_recommended: '不推荐',
grid: {
url: 'URL地址',
ip: 'IP地址',
......
......@@ -295,12 +295,12 @@ class Form {
let _ = [
{ type: 'settings', position: 'label-right', offsetLeft: 60, labelWidth: 100 },
{ type: 'label', label: LANG['list']['add']['form']['encoder'] },
{ type: 'radio', name: `encoder_${c}`, value: 'default', label: 'default', checked: true }
{ type: 'radio', name: `encoder_${c}`, value: 'default', label: `default\t(${LANG['list']['not_recommended']})`, checked: true }
];
if (c !== 'custom') {
_.push({
type: 'radio', name: `encoder_${c}`, value: 'random',
label: 'random', checked: _encoder === 'random'
label: `random\t(${LANG['list']['not_recommended']})`, checked: _encoder === 'random'
});
}
encoders.map((e) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment