We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a888d2 commit 32566d4Copy full SHA for 32566d4
src/main/java/de/rub/nds/tlsscanner/probe/HeartbleedProbe.java
@@ -54,10 +54,14 @@ public ProbeResult executeTest() {
54
55
@Override
56
public boolean shouldBeExecuted(SiteReport report) {
57
- for (ExtensionType type : report.getSupportedExtensions()) {
58
- if (type == ExtensionType.HEARTBEAT) {
59
- return true;
+ if (report.getSupportedExtensions() != null) {
+ for (ExtensionType type : report.getSupportedExtensions()) {
+ if (type == ExtensionType.HEARTBEAT) {
60
+ return true;
61
+ }
62
}
63
+ } else {
64
65
66
return false;
67
0 commit comments