(targets: ReadonlySet<string>)
| 70 | ] as const |
| 71 | |
| 72 | function aliasesOf(targets: ReadonlySet<string>): string[] { |
| 73 | return Object.entries(COMMON_ALIASES) |
| 74 | .filter(([, target]) => targets.has(target.toLowerCase())) |
| 75 | .map(([alias]) => alias) |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Network cmdlets — wildcard rules for these enable exfil/download without |
no test coverage detected