Skip to content

Commit

Permalink
RELEASE-1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vankyver committed Jul 13, 2017
1 parent 2809d11 commit 2e930cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/burp/BurpExtender.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ public class BurpExtender extends PassiveScan {

@Override
protected void initPassiveScan() {
extensionName = "Vulners Scanner";
extensionName = "Software Vulnerability Scanner";
settingsNamespace = "VULNERS_";

BurpSuiteTab mTab = new BurpSuiteTab("Vulners Scanner", callbacks);
BurpSuiteTab mTab = new BurpSuiteTab("Software Vulnerability Scanner", callbacks);
this.tabComponent = new TabComponent(this, callbacks, domains);

mTab.addComponent(tabComponent.getRootPanel());
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/burp/VulnersService.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public VulnersService(BurpExtender burpExtender, IBurpExtenderCallbacks callback
this.tabComponent = tabComponent;
this.rateLimiter = RateLimiter.create(4.0); // Count of max RPS

Unirest.setDefaultHeader("user-agent", "vulners-burpscanner-v-1.0-DEMO");
Unirest.setDefaultHeader("user-agent", "vulners-burpscanner-v-1.1");
Unirest.setAsyncHttpClient(HttpClient.createSSLClient());
}

Expand Down
Binary file modified target/burp-vulners-scanner-1.1.jar
Binary file not shown.

0 comments on commit 2e930cf

Please sign in to comment.