Bridge icon indicating copy to clipboard operation
Bridge copied to clipboard

无回显漏洞测试辅助平台,平台使用Java编写,提供DNSLOG,HTTPLOG等功能,辅助渗透测试过程中无回显漏洞及SSRF等漏洞的验证和利用。

Results 6 Bridge issues
Sort by recently updated
recently updated
newest added

Snyk has created this PR to upgrade com.google.guava:guava from 28.0-jre to 28.2-jre. :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify...

Snyk has created this PR to upgrade org.mybatis.spring.boot:mybatis-spring-boot-starter from 2.0.1 to 2.2.2. :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify...

Snyk has created this PR to fix one or more vulnerable packages in the `maven` dependencies of this project. #### Changes included in this PR - Changes to the following...

不知道是不是我搭建出了错,还是我的配置太垃圾(1核,内存2g,带宽1m),打dnslog时有时能通有时候不能通,即使能通时,打一次在dnslog上也会莫名其妙产生十多条记录。请问这种情况知道是什么原因吗。

沙比政策,域名不备案不让访问。备案了又尼玛不能保证信息不泄露

在WeblogController里,59行: `tmpMap.put("userAgent", headerMap.get("user-agent").toString());` 遇到如下数据: `{"x-real-ip":"1.1.1.1","remote-host":"2.2.2.2","accept-language":"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6","host":"test.1.dns.xxxx.cn:443","connection":"upgrade","x-forwarded-for":"3.3.3.3","x-scheme":"https","x-host":"test.1.dns.xxxx.cn:443"}` 会获取失败,导致500 ` java.lang.NullPointerException: null at bridge.controller.WeblogController.getWeblogList(WeblogController.java:59) ~[classes!/:1.0-SNAPSHOT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_342] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_342] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_342] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_342] ` 添加判断: ` if (headerMap.get("user-agent")...