Skip to content

Commit

Permalink
Update LineEntry.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bit4woo committed Dec 31, 2021
1 parent e036421 commit 0886aa0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/PoC/LineEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ public class LineEntry {
public static LinkedHashMap<String,Integer> fetchTableHeaderAndWidth(){
LinkedHashMap<String,Integer> preferredWidths = new LinkedHashMap<String,Integer>();
preferredWidths.put("#",5);
preferredWidths.put("pocfile",30);
preferredWidths.put("CVE","CVE-2019-1234567".length());
preferredWidths.put("pocfile",40);
preferredWidths.put("CVE","CVE-2019-1234567".length()*2);
preferredWidths.put("severity",10);
preferredWidths.put("tags",10);
preferredWidths.put("tags",30);
preferredWidths.put("VulnDescription",30);
preferredWidths.put("Reference",30);
preferredWidths.put("Author",10);
preferredWidths.put("Reference",60);
preferredWidths.put("Author",30);
return preferredWidths;
}

Expand Down

0 comments on commit 0886aa0

Please sign in to comment.