hacktricks/linux-hardening/bypass-linux-shell-restrictions/ddexec.md
2023-08-03 19:12:22 +00:00

92 lines
6.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# DDexec
<details>
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</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>
- 你在一家**网络安全公司**工作吗你想在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来分享你的黑客技巧**。
</details>
## 上下文
在Linux中为了运行一个程序它必须存在为一个文件并且必须通过文件系统层次结构的某种方式进行访问这就是`execve()`的工作原理。这个文件可以存在于磁盘上或者内存中tmpfsmemfd但你需要一个文件路径。这使得在Linux系统上控制要运行的内容变得非常容易它可以轻松检测到威胁和攻击者的工具或者防止他们尝试执行任何自己的内容例如不允许非特权用户在任何地方放置可执行文件
但是这种技术可以改变这一切。如果你无法启动你想要的进程... **那么你就劫持一个已经存在的进程**
这种技术允许你**绕过常见的保护技术如只读、noexec、文件名白名单、哈希白名单...**
## 依赖
最终的脚本依赖于以下工具才能工作,它们需要在你攻击的系统中可访问(默认情况下,你可以在任何地方找到它们):
```
dd
bash | zsh | ash (busybox)
head
tail
cut
grep
od
readlink
wc
tr
base64
```
## 技术
如果您能任意修改进程的内存,那么您就可以接管它。这可以用于劫持已存在的进程并用另一个程序替换它。我们可以通过使用`ptrace()`系统调用需要您具备执行系统调用的能力或在系统上有gdb可用或者更有趣的是写入`/proc/$pid/mem`来实现。
文件`/proc/$pid/mem`是进程的整个地址空间的一对一映射例如在x86-64中从`0x0000000000000000`到`0x7ffffffffffff000`)。这意味着在偏移量`x`处从该文件读取或写入与在虚拟地址`x`处读取或修改内容是相同的。
现在,我们需要解决四个基本问题:
* 通常只有root用户和文件的程序所有者才能修改它。
* ASLR。
* 如果我们尝试读取或写入未映射到程序地址空间的地址将会收到I/O错误。
这些问题有解决方案,虽然它们不是完美的,但是很好:
* 大多数shell解释器允许创建文件描述符然后将其继承给子进程。我们可以创建一个指向shell的`mem`文件的具有写权限的文件描述符...因此使用该文件描述符的子进程将能够修改shell的内存。
* ASLR甚至不是一个问题我们可以检查shell的`maps`文件或procfs中的任何其他文件以获取有关进程的地址空间的信息。
* 因此,我们需要在文件上执行`lseek()`。从shell中除非使用臭名昭著的`dd`,否则无法执行此操作。
### 更详细地说
这些步骤相对简单,不需要任何专业知识来理解它们:
* 解析我们想要运行的二进制文件和加载器,找出它们需要的映射。然后编写一个"shell"代码,它将执行与内核在每次调用`execve()`时执行的相同步骤(广义上):
* 创建这些映射。
* 将二进制文件读入其中。
* 设置权限。
* 最后,使用程序的参数初始化堆栈,并放置辅助向量(加载器所需)。
* 跳转到加载器并让它完成剩下的工作(加载程序所需的库)。
* 从`syscall`文件中获取进程在执行系统调用后将返回的地址。
* 用我们的shellcode通过`mem`,我们可以修改不可写的页面)覆盖该位置,该位置将是可执行的。
* 将我们想要运行的程序传递给进程的stdin将由上述"shell"代码`read()`)。
* 此时,由加载器负责加载我们程序所需的库并跳转到它。
**请查看**[**https://github.com/arget13/DDexec**](https://github.com/arget13/DDexec)**中的工具**。
<details>
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</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>
- 您在**网络安全公司**工作吗您想在HackTricks中看到您的**公司广告**吗或者您想获得最新版本的PEASS或下载PDF格式的HackTricks吗请查看[**SUBSCRIPTION PLANS**](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来分享您的黑客技巧**。
</details>