
Uno strumento open-source per l'enumerazione dell'iniezione di processi scritto in C#
Wanderer è un programma open-source che raccoglie informazioni sui processi in esecuzione. Queste informazioni includono il livello di integrità, la presenza di AMSI come modulo caricato, se il processo è a 64 o 32 bit, nonché il livello di privilegio del processo corrente. Queste informazioni sono estremamente utili per creare payload su misura per il candidato ideale per l'iniezione di processi.
Questo è un progetto a cui ho iniziato a lavorare mentre progredivo nel corso PEN-300 di Offensive Security. Uno dei miei moduli preferiti del corso è la sezione sull'iniezione e migrazione di processi, che mi ha ispirato a creare uno strumento per essere più efficiente durante quell'attività. Un ringraziamento speciale va a ShadowKhan, che ha fornito feedback preziosi, contribuendo a dare una direzione creativa per rendere questa utility visivamente accattivante e a migliorarne l'usabilità con le capacità di filtraggio suggerite.
PS C:\> .\wanderer.exe
>> Process Injection Enumeration
>> https://github.com/gh0x0st
Usage: wanderer [target options] <value> [filter options] <value> [output options] <value>
Target Options:
-i, --id, Target a single or group of processes by their id number
-n, --name, Target a single or group of processes by their name
-c, --current, Target the current process and reveal the current privilege level
-a, --all, Target every running process
Filter Options:
--include-denied, Include instances where process access is denied
--exclude-32, Exclude instances where the process architecture is 32-bit
--exclude-64, Exclude instances where the process architecture is 64-bit
--exclude-amsiloaded, Exclude instances where amsi.dll is a loaded process module
--exclude-amsiunloaded, Exclude instances where amsi is not loaded process module
--exclude-integrity, Exclude instances where the process integrity level is a specific value
Output Options:
--output-nested, Output the results in a nested style view
-q, --quiet, Do not output the banner
Examples:
Enumerate the process with id 12345
C:\> wanderer --id 12345
Enumerate all processes with the names process1 and processs2
C:\> wanderer --name process1,process2
Enumerate the current process privilege level
C:\> wanderer --current
Enumerate all 32-bit processes
C:\wanderer --all --exclude-64
Enumerate all processes where is AMSI is loaded
C:\> wanderer --all --exclude-amsiunloaded
Enumerate all processes with the names pwsh,powershell,spotify and exclude instances where the integrity level is untrusted or low and exclude 32-bit processes
C:\> wanderer --name pwsh,powershell,spotify --exclude-integrity untrusted,low --exclude-32




