Skip to content

Commit 6799690

Browse files
authored
Merge pull request #98 from RUB-NDS/po_printing_typo
fixed a copy paste error when printing padding oracle details
2 parents d69debe + fcf1e42 commit 6799690

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TLS-Server-Scanner/src/main/java/de/rub/nds/tlsscanner/serverscanner/report/SiteReportPrinter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ public StringBuilder appendRaccoonAttackDetails(StringBuilder builder) {
865865
public StringBuilder appendInformationLeakTestList(StringBuilder builder,
866866
List<InformationLeakTest> informationLeakTestList, String heading) {
867867
prettyAppendHeading(builder, heading);
868-
if (report.getDirectRaccoonResultList() == null || report.getDirectRaccoonResultList().isEmpty()) {
868+
if (informationLeakTestList == null || informationLeakTestList.isEmpty()) {
869869
prettyAppend(builder, "No Testresults");
870870
} else {
871871
for (InformationLeakTest testResult : informationLeakTestList) {

0 commit comments

Comments
 (0)