File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/de/rub/nds/tlsscanner/probe Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 33
33
import java .util .List ;
34
34
import java .util .Objects ;
35
35
import java .util .Set ;
36
- import java .util .logging .Level ;
37
- import java .util .logging .Logger ;
38
36
39
37
/**
40
38
*
@@ -62,7 +60,9 @@ public ProbeResult executeTest() {
62
60
63
61
List <PaddingOracleTestResult > testResultList = new LinkedList <>();
64
62
PaddingRecordGeneratorType recordGeneratorType ;
65
- if (scannerConfig .getScanDetail () == ScannerDetail .NORMAL ) {
63
+ if (scannerConfig .getScanDetail () == ScannerDetail .QUICK ) {
64
+ recordGeneratorType = PaddingRecordGeneratorType .VERY_SHORT ;
65
+ } else if (scannerConfig .getScanDetail () == ScannerDetail .NORMAL ) {
66
66
recordGeneratorType = PaddingRecordGeneratorType .SHORT ;
67
67
} else {
68
68
recordGeneratorType = PaddingRecordGeneratorType .SHORT ;
You can’t perform that action at this time.
0 commit comments