> 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/reconnaissance/web-fuzzing.md).

# تفزيع الويب

يساعد Web fuzzing في اكتشاف الأدلة والملفات والامتدادات والمعاملات والمضيفات الافتراضية والموارد المكشوفة المخفية أثناء استطلاع تطبيقات الويب.

{% hint style="info" %}
هناك العديد من الأدوات والطرق لاكتشاف الأدلة والملفات على المواقع الإلكترونية، سواء من سطر الأوامر أو عبر الموارد عبر الإنترنت. فيما يلي الأساليب الرئيسية والأدوات الأكثر فائدة:
{% endhint %}

## Gobuster:

> Gobuster أداة سريعة وفعالة لإجراء هجمات القوة الغاشمة على أدلة وملفات المواقع الإلكترونية.

### **الأدلة فقط:**

```bash
gobuster dir -u http://website.com/ -w /usr/share/SecLists/Discovery/Web-Content/directory-list-2.3-medium.txt -t 100
```

* **-u**: عنوان URL للموقع المستهدف.
* **-w**: مسار الملف الذي يحتوي على قائمة الكلمات (wordlist).
* **-t**: عدد الخيوط المستخدمة في البحث.

### **ملفات بامتدادات محددة:**

```bash
gobuster dir -u http://website.com/ -w /usr/share/SecLists/Discovery/Web-Content/quickhits.txt -t 100 -x html,php,txt
```

* **-x**: يحدد الامتدادات المراد البحث عنها.

### **أضف عوامل تصفية محددة إلى الردود:**

* **-hh**: التصفية حسب حجم النص الأساسي بالبايت.
* **-hc**: يستبعد الردود ذات رموز حالة محددة (على سبيل المثال، 404).

<figure><img src="/files/9e4421da7de9e414dbdc9662ade17ddb4c6c617f" alt=""><figcaption></figcaption></figure>

## Wfuzz:

> يتيح Wfuzz عمليات بحث متقدمة وقابلة للتخصيص عبر هجمات القوة الغاشمة، سواء للأدلة أو للمعاملات في عناوين URL.

### **الأدلة فقط:**

```bash
wfuzz -c -t 100 -w /usr/share/SecLists/Discovery/Web-Content/directory-list-2.3-medium.txt http://website.com/FUZZ
```

* **-c**: يعرض المخرجات بالألوان.
* **FUZZ**: يشير إلى المكان الذي سيتم فيه حقن الكلمات المفتاحية.

### **ملفات بامتدادات محددة:**

```bash
wfuzz -c -t 100 -w /usr/share/SecLists/Discovery/Web-Content/quickhits.tx -z list,html-txt-php http://website.com/
```

* **-z**: يحدد الامتدادات الإضافية المراد استخدامها في البحث (تتيح لك list تحديد امتدادات متعددة).

### **قيم المعاملات الديناميكية (`?product_id=`) :**

```bash
wfuzz -c -t 100 -z range,1-200000 'http://website.com/shop/buy/detail?product_id=FUZZ'
```

* **-z range,1-200000**: ينفذ هجوم قوة غاشمة باستخدام نطاق أرقام من 1 إلى 200,000.

<figure><img src="/files/9c09f524d40b8d7c3930101fef55b430b81d690d" alt=""><figcaption></figcaption></figure>

## **طرق إضافية:**

### الاكتشاف من المصادر العامة:

إذا كنت تفضل الطرق المرئية من المصادر العامة، فاستخدم الفهرس المُدار في [أدوات OSINT والبحث](/ar/hacking-tools/osint.md).


---

# 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/reconnaissance/web-fuzzing.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.
