You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**پشتیبانی از CIDR:** رنجهایی مثل `1.2.3.0/24` به صورت خودکار به آیپیهای تکی تبدیل میشوند (آدرس شبکه و broadcast حذف میشوند). این قابلیت برای اسکن بلوکهای آیپی منطقهای (مثل فایلهای `iran-ipv4.cidrs`) بسیار مفید است. اگر تعداد آیپیها بیش از 100,000 باشد هشدار نمایش داده میشود.
1. هر رنج CIDR را به آیپیهای تکی تبدیل میکند (مثلاً `/24` = 254 آیپی)
795
+
2. آدرس شبکه و broadcast را حذف میکند
796
+
3. تعداد رنجها و آیپیهای expand شده را نشان میدهد
797
+
4. اگر بیش از 100,000 آیپی باشد هشدار میدهد
798
+
799
+
**ترکیب CIDR با آیپیهای تکی:** میتوانید در یک فایل هم رنج CIDR و هم آیپی تکی داشته باشید:
800
+
801
+
</div>
802
+
803
+
```
804
+
# آیپیهای تکی
805
+
8.8.8.8
806
+
1.1.1.1
807
+
808
+
# رنجهای CIDR
809
+
185.51.200.0/24
810
+
10.202.10.0/28
811
+
```
812
+
813
+
<divdir="rtl">
814
+
815
+
> **نکته:** فایلهای `.cidrs` فرمت خاصی ندارند — همان فایل متنی ساده هستند. findns هر خطی که `/` داشته باشد را به عنوان CIDR تشخیص میدهد. خطوط خالی و خطوطی که با `#` شروع شوند نادیده گرفته میشوند.
Plain text file with one entry per line. Supports both IPs and DoH URLs:
424
+
Plain text file with one entry per line. Supports IPs, CIDR ranges, and DoH URLs:
424
425
425
426
```text
426
427
# UDP resolvers (one IP per line)
427
428
8.8.8.8
428
429
1.1.1.1
429
430
9.9.9.9
430
431
432
+
# CIDR ranges (expanded automatically)
433
+
185.51.200.0/24
434
+
10.202.10.0/28
435
+
431
436
# DoH resolvers (full URLs)
432
437
https://dns.google/dns-query
433
438
https://cloudflare-dns.com/dns-query
434
439
https://dns.quad9.net/dns-query
435
440
```
436
441
442
+
**CIDR support:** Ranges like `1.2.3.0/24` are automatically expanded to individual host IPs (network and broadcast addresses are excluded). This is useful for scanning regional IP blocks (e.g. `iran-ipv4.cidrs` files). A warning is shown when expansion exceeds 100,000 IPs.
443
+
437
444
Can also accept JSON output from a previous scan (only `passed` entries are used by default).
0 commit comments