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 3d3b727 commit c48f0fcCopy full SHA for c48f0fc
framework.go
@@ -72,6 +72,7 @@ import (
72
"time"
73
74
"github.com/Masterminds/semver"
75
+
76
"github.com/vulncheck-oss/go-exploit/c2"
77
"github.com/vulncheck-oss/go-exploit/c2/channel"
78
"github.com/vulncheck-oss/go-exploit/cli"
@@ -532,7 +533,9 @@ func addPayloadMetadata(conf *config.Config) {
532
533
conf.CustomPayload = d
534
}
535
- output.PrintfFrameworkDebug("selecting payload type: %s", *payloadType)
536
+ if payloadType != nil {
537
+ output.PrintfFrameworkDebug("selecting payload type: %s", *payloadType)
538
+ }
539
540
541
// Effectively the package main function. Parses configuration, starts command and control,
0 commit comments