fuck
This commit is contained in:
parent
91d016299d
commit
d773bb6b0c
@ -1,9 +1,9 @@
|
||||
#!/usr/bin/env python3
|
||||
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
|
||||
# httpz/__init__.py
|
||||
# httpz_scanner/__init__.py
|
||||
|
||||
from .scanner import HTTPZScanner
|
||||
from .colors import Colors
|
||||
|
||||
|
||||
__version__ = '1.0.6'
|
||||
__version__ = '1.0.7'
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
|
||||
# httpz/__main__.py
|
||||
# httpz_scanner/__main__.py
|
||||
|
||||
import asyncio
|
||||
import sys
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
|
||||
# httpz/cli.py
|
||||
# httpz_scanner/cli.py
|
||||
|
||||
import argparse
|
||||
import asyncio
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
|
||||
# httpz/colors.py
|
||||
# httpz_scanner/colors.py
|
||||
|
||||
class Colors:
|
||||
'''ANSI color codes for terminal output'''
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
|
||||
# httpz/dns.py
|
||||
# httpz_scanner/dns.py
|
||||
|
||||
import asyncio
|
||||
import os
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
|
||||
# httpz/formatters.py
|
||||
# httpz_scanner/formatters.py
|
||||
|
||||
from .colors import Colors
|
||||
from .utils import human_size
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
|
||||
# httpz/parsers.py
|
||||
# httpz_scanner/parsers.py
|
||||
|
||||
try:
|
||||
import bs4
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
|
||||
# httpz/scanner.py
|
||||
# httpz_scanner/scanner.py
|
||||
|
||||
import asyncio
|
||||
import json
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
|
||||
# httpz/utils.py
|
||||
# httpz_scanner/utils.py
|
||||
|
||||
import logging
|
||||
import sys
|
6
setup.py
6
setup.py
@ -8,8 +8,8 @@ with open('README.md', 'r', encoding='utf-8') as f:
|
||||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
name='httpz-scanner',
|
||||
version='1.0.6',
|
||||
name='httpz_scanner',
|
||||
version='1.0.7',
|
||||
author='acidvegas',
|
||||
author_email='acid.vegas@acid.vegas',
|
||||
description='Hyper-fast HTTP Scraping Tool',
|
||||
@ -41,7 +41,7 @@ setup(
|
||||
],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'httpz=httpz-scanner.__main__:cli', # Updated import path
|
||||
'httpz=httpz_scanner.__main__:cli',
|
||||
],
|
||||
},
|
||||
)
|
Loading…
Reference in New Issue
Block a user