Skip to content

Commit

Permalink
二次验证时间增长,提高容错
Browse files Browse the repository at this point in the history
  • Loading branch information
pmiaowu committed Dec 31, 2020
1 parent 67a140e commit 78fc330
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private void runExtension() {
// 防止因为dnslog卡导致没有检测到的问题, 这里进行二次检测, 保证不会漏报
// 睡眠一段时间, 给dnslog一个缓冲时间
try {
Thread.sleep(2000);
Thread.sleep(6000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/burp/BurpExtender.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class BurpExtender implements IBurpExtender, IScannerCheck {

public static String NAME = "FastJsonScan";
public static String VERSION = "1.0.4";
public static String VERSION = "1.0.5";

private IBurpExtenderCallbacks callbacks;
private IExtensionHelpers helpers;
Expand Down

0 comments on commit 78fc330

Please sign in to comment.