Skip to content

Commit

Permalink
v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bit4woo committed Nov 5, 2022
1 parent f598439 commit 07fd78f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@
<artifactId>burp-extender-api</artifactId>
<version>2.1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/commons-net/commons-net -->
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.8.0</version>
</dependency>

</dependencies>

<build>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/burp/IPAddressUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public static List<String> toIPList (String subnet) {
IPList.add(subnet);
}
}catch(Exception e) {
e.printStackTrace(BurpExtender.getStderr());
e.printStackTrace();
}

return IPList;
Expand Down

0 comments on commit 07fd78f

Please sign in to comment.