Skip to content

Commit

Permalink
(Update: Core/jsp) 升级 JSP Template 到 v1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Medicean committed Feb 6, 2021
1 parent db9d6f9 commit cb9fd60
Show file tree
Hide file tree
Showing 10 changed files with 91 additions and 34 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
## `v(2.1.10)`

### 核心

* 升级 JSP Template 到 v1.4
### 数据管理

* 修复 context menu category self-xss (thx @lixuesv)
Expand All @@ -13,6 +16,33 @@
* 优化插件加载, 加载异常的插件不会再影响到其它插件加载了
* 更新纯真IP库(2021/02/02)

### 插件相关

* [As-Exploits](https://github.com/AntSword-Store/GenShell) 升级到 v1.1

* 增加对aspx类型的支持
* 增加提权辅助模块(aspx/jsp/php)
* 增加屏幕截图模块(jsp)
* 增加shellcode加载器模块(aspx)
* 仅展示当前类型可用模块,不可用模块不再显示

* [GenShell](https://github.com/AntSword-Store/GenShell) 升级到 v0.2

> 新增 asp、aspx、jsp 三种 Shell 类型生成
* [AS_Redis](https://github.com/AntSword-Store/AS_Redis) 升级到 v0.4

> 支持 jsp 类型
* [PortScan](https://github.com/AntSword-Store/PortScan) 升级到 v0.3

> 支持 jsp、php4 类型
* [as_netstat](https://github.com/AntSword-Store/as_netstat) 升级到 v0.2

> 支持所有类型

## 2020/09/10 `v(2.1.9)`

### 核心
Expand Down
7 changes: 6 additions & 1 deletion source/core/jsp/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,16 @@ class JSP extends Base {
'base',
'command',
'filemanager',
'other',
'database/sqlserver',
'database/mysql',
'database/oracle'
].map((_) => {
this.parseJspTemplate(`./template/${_}`);
try {
this.parseJspTemplate(`./template/${_}`);
} catch (error) {
console.error(error);
}
});
// 解析编码器
this
Expand Down
5 changes: 5 additions & 0 deletions source/core/jsp/template/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# AntSword-JSP-Template

More at: https://github.com/AntSwordProject/AntSword-JSP-Template

Version: 1.4
6 changes: 3 additions & 3 deletions source/core/jsp/template/base.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions source/core/jsp/template/command.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions source/core/jsp/template/database/mysql.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions source/core/jsp/template/database/oracle.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions source/core/jsp/template/database/sqlserver.js

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions source/core/jsp/template/filemanager.js

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions source/core/jsp/template/other.js

Large diffs are not rendered by default.

0 comments on commit cb9fd60

Please sign in to comment.