Skip to content

Commit

Permalink
Merge branch 'main' into handle-interrupts
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaehren authored Nov 16, 2023
2 parents 577bdbb + 905d1d0 commit cd8bbe2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds</groupId>
<artifactId>protocol-toolkit-bom</artifactId>
<version>3.5.7</version>
<version>3.5.9</version>
</parent>

<artifactId>scanner-core</artifactId>
Expand Down
13 changes: 13 additions & 0 deletions src/main/java/de/rub/nds/scanner/core/config/ExecutorConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ public final class ExecutorConfig {
@Parameter(names = "-scanDetail", description = "How detailed do you want to scan?")
private ScannerDetail scanDetail = ScannerDetail.NORMAL;

@Parameter(
names = "-postAnalysisDetail",
description = "How detailed do you want the post analysis to be")
private ScannerDetail postAnalysisDetail = ScannerDetail.NORMAL;

@Parameter(names = "-reportDetail", description = "How detailed do you want the report to be?")
private ScannerDetail reportDetail = ScannerDetail.NORMAL;

Expand Down Expand Up @@ -57,6 +62,14 @@ public void setScanDetail(ScannerDetail scanDetail) {
this.scanDetail = scanDetail;
}

public ScannerDetail getPostAnalysisDetail() {
return postAnalysisDetail;
}

public void setPostAnalysisDetail(ScannerDetail postAnalysisDetail) {
this.postAnalysisDetail = postAnalysisDetail;
}

public ScannerDetail getReportDetail() {
return reportDetail;
}
Expand Down

0 comments on commit cd8bbe2

Please sign in to comment.