Improved module selection in payload generation modal with tooltips from the module manager.

This commit is contained in:
Jakob Friedl
2025-09-27 12:36:59 +02:00
parent 9de4ac4838
commit 933a72f920
13 changed files with 55 additions and 25 deletions

View File

@@ -7,6 +7,7 @@ proc executeAssembly(ctx: AgentCtx, task: Task): TaskResult
let module* = Module(
name: protect("dotnet"),
description: protect("Load and execute .NET assemblies in memory."),
moduleType: MODULE_DOTNET,
commands: @[
Command(
name: protect("dotnet"),
@@ -23,7 +24,7 @@ let module* = Module(
)
# Implement execution functions
when defined(server):
when not defined(agent):
proc executeAssembly(ctx: AgentCtx, task: Task): TaskResult = nil
when defined(agent):