ca3tie1

Results 5 issues of ca3tie1

auxiliary.cna里heartbeat_5s功能会检查beacon上次call home的时间 定死成75000这种方式对内网中使用bind listener取得的beacon由于是和父beacon通讯 如果不做操作的话last call home时间一直会累加,实际上beacon是没有掉的。造成日志里一直循环提示beacon下线 ![image](https://user-images.githubusercontent.com/26594157/86080260-14e38480-bac5-11ea-838d-da48a3ff64a1.png) 另外每个beacon上线后强制更改心跳时间这个和profile的有点冲突。 最后像post下的exe dll类应用可否开源呢?

使用ASP连接SQLSERVER sa执行xp_cmdshell爆“-2147217887:ODBC 驱动程序不支持所需的属性错误”。 ![QQ图片20191218170841](https://user-images.githubusercontent.com/26594157/71089865-a69c3c00-21dc-11ea-986d-fdaf4b5dbde4.png) 原因是在source\core\asp\template\database\sqlserver.js中执行SQL语句代码模板中使用Recordset对象的open方法来执行SQL语句,貌似是该方法不支持请求xp_cmdshell这种过程对象,具体我也不清楚,这里参考了下菜刀的方式解决。 删除102、103行代码 `Set Rs=CreateObject("Adodb.Recordset"): Rs.open ""&bd(Request("${arg2}"))&"",Conn,1,1:` 更改为Connection对象的Execute方法直接执行 `Set Rs=Conn.Execute(""&bd(Request("${arg2}"))&""):` 为了防止执行一些返回recordset.Fields为0的命令(如开启xp_cmdshell的命令:EXEC sp_configure "show advanced options",1)后面程序进入死循环的情况,这里还需要加一个if判断: 在`FN=Rs.Fields.Count-1:`的后面添加 `If FN=-1 Then: Response.Write HD&"Execute Successfully!"&CO&RN: Else:` 再在`loop`后面添加`End If:` ![20191218214436631](https://user-images.githubusercontent.com/26594157/71091285-cb45e300-21df-11ea-96e2-06ab56931aad.png)

🤝Welcome PR

通过更`modules\config.js` `source\app.entry.js` `modules\settings\encoders.js`文件源码实现跨平台数据共享功能(详情:https://blog.csdn.net/Ca3tie1/article/details/103574023) 建议在加载器加载蚁剑时候可自定义蚁剑数据目录`antData`位置,或者加载器是否能开源呢?

``` File ".\iis_controller.py", line 7 SyntaxError: Non-ASCII character '\xe2' in file .\iis_controller.py on line 8, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details ``` so i delete the banner string...

Atom cannot be previewed if images copied to the assets directory are automatically spaced. It is recommended to replace spaces with underscores when copying files