As-Exploits icon indicating copy to clipboard operation
As-Exploits copied to clipboard

中国蚁剑后渗透框架

Results 4 As-Exploits issues
Sort by recently updated
recently updated
newest added

项目很不错 请问将来是否会支持weblogic的内存马

对冰蝎的的Servlet内存马进行升级,可以让其在支持老版本(冰蝎3.0)的前提下,支持新版4.x的冰蝎内存马。 当前只支持4.x 的default_xor_base64传输协议的马 不知道怎么推部分,把readme.md也给推上来了……

从博客看到尝试的,不知道是不是我操作哪里有问题? 环境 tomcat-8.5.82 jdk1.8.0_241 1、shell payload: ![image](https://github.com/yzddmr6/As-Exploits/assets/66959925/f27f7d90-bc09-4390-8066-814ced729a09) ![image](https://github.com/yzddmr6/As-Exploits/assets/66959925/0a4bd7ee-37d6-4f5d-b399-344f1044cec7) 2、shell payload: ![image](https://github.com/yzddmr6/As-Exploits/assets/66959925/c2f9e9b4-07e0-4be5-af99-564c6be57b45) ![image](https://github.com/yzddmr6/As-Exploits/assets/66959925/94f4d9ec-043a-474a-8345-05b9741decb7) 3、shell payload: ![image](https://github.com/yzddmr6/As-Exploits/assets/66959925/6dc4f2e9-0a2e-46c3-a708-6e494eea12ef) ![image](https://github.com/yzddmr6/As-Exploits/assets/66959925/235402a9-dcb4-44d1-9846-ed1b0633a40e)

https://github.com/yzddmr6/As-Exploits/blob/aced295d2da1d1d071e940790e1d7b70f472bc73/core/memshell_manage/payload.js#L3 ![image](https://github.com/user-attachments/assets/b34b40bc-2a76-4488-a40f-ec9b41e7bc29) **问题描述**: 在尝试使用「内存马管理」功能中的「获取所有组件」并点击「exploit」时,我遇到了一个错误信息。错误详情如下: ``` ERROR:// java.lang.ClassCastException: org.apache.tomcat.util.threads.ThreadPoolExecutor cannot be cast to java.util.concurrent.ThreadPoolExecutor ``` **问题定位**: 经过仔细排查,发现问题出现在`memshell_manage`包中的依赖导入。当前导入的是`java.util.concurrent.ThreadPoolExecutor`,然而在运行环境中,应该使用`org.apache.tomcat.util.threads.ThreadPoolExecutor`。 **修改建议**: 将`import java.util.concurrent.ThreadPoolExecutor;`更正为`import org.apache.tomcat.util.threads.ThreadPoolExecutor;`。 ps:我已自测通过 ![image](https://github.com/user-attachments/assets/fcc2c354-3ab7-4c39-bedc-52720121633e)