
Uma ferramenta de enumeração de injeção de processos de código aberto escrita em C#
Wanderer é um programa de código aberto que coleta informações sobre processos em execução. Essas informações incluem o nível de integridade, a presença do AMSI como um módulo carregado, se está sendo executado como 64 ou 32 bits, bem como o nível de privilégio do processo atual. Essas informações são extremamente úteis ao construir payloads voltados para o candidato ideal para injeção de processos.
Este é um projeto no qual comecei a trabalhar conforme progredia no curso PEN-300 da Offensive Security. Um dos meus módulos favoritos do curso é a seção de injeção e migração de processos, que me inspirou a construir uma ferramenta para me ajudar a ser mais eficiente durante essa atividade. Um agradecimento especial a ShadowKhan, que forneceu feedback valioso que ajudou a dar direção criativa para tornar este utilitário visualmente atraente e melhorou sua usabilidade com recursos de filtragem sugeridos.
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




