Implemented jitter.

This commit is contained in:
Jakob Friedl
2025-10-23 11:14:26 +02:00
parent 51748639de
commit c6875e5eb2
17 changed files with 90 additions and 113 deletions

View File

@@ -185,6 +185,7 @@ type
pid*: uint32
isElevated*: uint8
sleep*: uint32
jitter*: uint32
modules*: uint32
AgentRegistrationData* = object
@@ -208,6 +209,7 @@ type
pid*: int
elevated*: bool
sleep*: int
jitter*: int
tasks*: seq[Task]
modules*: uint32
firstCheckin*: int64
@@ -229,6 +231,7 @@ type
pid*: int
elevated*: bool
sleep*: int
jitter*: int
modules*: uint32
firstCheckin*: int64
latestCheckin*: int64
@@ -312,13 +315,17 @@ type
profile*: Profile
client*: WsConnection
SleepSettings* = ref object
sleepDelay*: uint32
jitter*: uint32
sleepTechnique*: SleepObfuscationTechnique
spoofStack*: bool
AgentCtx* = ref object
agentId*: string
listenerId*: string
hosts*: string
sleep*: int
sleepTechnique*: SleepObfuscationTechnique
spoofStack*: bool
sleepSettings*: SleepSettings
sessionKey*: Key
agentPublicKey*: Key
profile*: Profile
@@ -357,10 +364,8 @@ type
items*: seq[ConsoleItem]
AgentBuildInformation* = ref object
listenerId*: string
sleepDelay*: uint32
sleepTechnique*: SleepObfuscationTechnique
spoofStack*: bool
listenerId*: string
sleepSettings*: SleepSettings
verbose*: bool
modules*: uint32