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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2018-6905 — typo3 install.php XSS | Kitploit
ツール/GitHubGitHub/dnr6419/cve-2018-6905
脆弱性分析エクスプロイトウェブアプリケーション悪用ペネトレーションテスト学習と教育
GitHubdnr6419/cve-2018-6905

CVE-2018-6905

typo3 install.php XSS

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

人気

すべて見る →

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

すべてのツールを探索

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

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

インストールおよび実行手順

0. typo3 のインストール

root@kitploit:~
 $docker-compose up  

1. typo3 Webサーバーの起動とインストール

http://[web-server ip]:port/typo3 に移動し、次のメッセージは無視します。

root@kitploit:~
 Directory / is not writable
Path /var/www/html/typo3 exists, but no file underneath it can be created.  

2. typo3 のインストール

コンテナに配置した typo3 サイトにアクセスし、インストールを進めます。 mysql DB のホストは db です。

3. typo3 XSS injection

インストール中 4/5 の画面で、site name に XSS ペイロードを入力します。 image

4. XSS の実行

インストールが完了しログインすると、以下のように XSS が実行されていることを確認できます。 image

構築エラー

以下のように debconf で CLI からいくつか質問される事項を自動化するために、debconf-utils をインストールして修正しました。
root@kitploit:~
debconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
root@kitploit:~
RUN apt-get install -y debconf-utils
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-get install -y -q [package]

www-data ユーザーで実行される Apache2 サーバーの特性上、www-data で typo3 フォルダを作成しました。

互換性のある DB バージョンは以下の通りです。

mysql イメージは 5.8 バージョンに設定しました。

root@kitploit:~
System Requirements 
For more information as well as installation instructions see the Installation guide.
Operating System	Linux, Windows or Mac, or common cloud infrastructure setups
Webserver	Apache httpd, Nginx, Microsoft IIS, Caddy Server
Supported Browsers	Chrome (latest)
Edge (latest)
Firefox (latest)
Internet Explorer >= 11
Safari (latest)
Database	MariaDB >= 10.0 <= 10.3
Microsoft SQL Server
MySQL >= 5.0 <= 5.7
PostgreSQL
SQLite
Hardware	RAM >= 256 MB
PHP	PHP >= 7.2 <= 7.4
mysql の character-set に問題があります。

mysql コンテナに command オプションを設定しました。

root@kitploit:~
Invalid Charset
Your database uses character set "latin1", but only "utf8" is supported with TYPO3. You probably want to change this before proceeding.
ツールをダウンロード