From ef2ee9f9ff5ca77f330a7607262fce09e57df360 Mon Sep 17 00:00:00 2001 From: Andrew Gaffney Date: Wed, 18 Jun 2025 10:04:36 -0400 Subject: [PATCH] feat(globals): Add RDP target prefix --- globals/prefixes.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/globals/prefixes.go b/globals/prefixes.go index bb63cbbef3..7d8ac635ab 100644 --- a/globals/prefixes.go +++ b/globals/prefixes.go @@ -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,