httpz/httpz_scanner/__main__.py
2025-02-11 22:30:22 -05:00

16 lines
310 B
Python

#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
# httpz_scanner/__main__.py
import asyncio
import sys
from .cli import main
if __name__ == '__main__':
try:
asyncio.run(main())
except KeyboardInterrupt:
sys.exit(1)