fixed chunk output
This commit is contained in:
parent
e220648a1a
commit
9a4b7e977a
@ -6,4 +6,4 @@ from .colors import Colors
|
|||||||
from .scanner import HTTPZScanner
|
from .scanner import HTTPZScanner
|
||||||
|
|
||||||
|
|
||||||
__version__ = '2.1.5'
|
__version__ = '2.1.6'
|
@ -71,7 +71,7 @@ async def main():
|
|||||||
parser.add_argument('-ct', '--content-type', action='store_true', help='Show content type')
|
parser.add_argument('-ct', '--content-type', action='store_true', help='Show content type')
|
||||||
parser.add_argument('-f', '--favicon', action='store_true', help='Show favicon hash')
|
parser.add_argument('-f', '--favicon', action='store_true', help='Show favicon hash')
|
||||||
parser.add_argument('-fr', '--follow-redirects', action='store_true', help='Follow redirects (max 10)')
|
parser.add_argument('-fr', '--follow-redirects', action='store_true', help='Follow redirects (max 10)')
|
||||||
parser.add_argument('-hr', '--headers', action='store_true', help='Show response headers')
|
parser.add_argument('-hr', '--show-headers', action='store_true', help='Show response headers')
|
||||||
parser.add_argument('-i', '--ip', action='store_true', help='Show IP addresses')
|
parser.add_argument('-i', '--ip', action='store_true', help='Show IP addresses')
|
||||||
parser.add_argument('-sc', '--status-code', action='store_true', help='Show status code')
|
parser.add_argument('-sc', '--status-code', action='store_true', help='Show status code')
|
||||||
parser.add_argument('-ti', '--title', action='store_true', help='Show page title')
|
parser.add_argument('-ti', '--title', action='store_true', help='Show page title')
|
||||||
@ -126,7 +126,7 @@ async def main():
|
|||||||
'body' : args.all_flags or args.body,
|
'body' : args.all_flags or args.body,
|
||||||
'ip' : args.all_flags or args.ip,
|
'ip' : args.all_flags or args.ip,
|
||||||
'favicon' : args.all_flags or args.favicon,
|
'favicon' : args.all_flags or args.favicon,
|
||||||
'headers' : args.all_flags or args.headers,
|
'headers' : args.all_flags or args.show_headers,
|
||||||
'follow_redirects' : args.all_flags or args.follow_redirects,
|
'follow_redirects' : args.all_flags or args.follow_redirects,
|
||||||
'cname' : args.all_flags or args.cname,
|
'cname' : args.all_flags or args.cname,
|
||||||
'tls' : args.all_flags or args.tls_info
|
'tls' : args.all_flags or args.tls_info
|
||||||
|
2
setup.py
2
setup.py
@ -10,7 +10,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='httpz_scanner',
|
name='httpz_scanner',
|
||||||
version='2.1.5',
|
version='2.1.6',
|
||||||
author='acidvegas',
|
author='acidvegas',
|
||||||
author_email='acid.vegas@acid.vegas',
|
author_email='acid.vegas@acid.vegas',
|
||||||
description='Hyper-fast HTTP Scraping Tool',
|
description='Hyper-fast HTTP Scraping Tool',
|
||||||
|
Loading…
Reference in New Issue
Block a user