feat(globals): Add RDP target prefix

pull/6010/head
Andrew Gaffney 8 months ago committed by irenarindos
parent 407a0adf4a
commit ef2ee9f9ff

@ -114,6 +114,8 @@ const (
TcpTargetPrefix = "ttcp"
// SshTargetPrefix is the prefix for TCP targets
SshTargetPrefix = "tssh"
// RdpTargetPrefix is the prefix for RDP targets
RdpTargetPrefix = "trdp"
// WorkerPrefix is the prefix for workers
WorkerPrefix = "w"
@ -315,6 +317,10 @@ var prefixToResourceType = map[string]ResourceInfo{
Type: resource.Target,
Subtype: UnknownSubtype,
},
RdpTargetPrefix: {
Type: resource.Target,
Subtype: UnknownSubtype,
},
WorkerPrefix: {
Type: resource.Worker,

Loading…
Cancel
Save