fuck
This commit is contained in:
parent
44e27630de
commit
cd66542003
@ -6,4 +6,4 @@ from .scanner import HTTPZScanner
|
|||||||
from .colors import Colors
|
from .colors import Colors
|
||||||
|
|
||||||
|
|
||||||
__version__ = '2.0.6'
|
__version__ = '2.0.7'
|
@ -155,15 +155,17 @@ async def main():
|
|||||||
with open(args.output, 'a') as f:
|
with open(args.output, 'a') as f:
|
||||||
f.write(json.dumps(result) + '\n')
|
f.write(json.dumps(result) + '\n')
|
||||||
|
|
||||||
# Only output and increment counter if we have content to show
|
# Handle JSON output separately
|
||||||
|
if args.jsonl:
|
||||||
|
print(json.dumps(result))
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Only output and increment counter if we have content to show for normal output
|
||||||
formatted = format_console_output(result, args.debug, show_fields, args.match_codes, args.exclude_codes)
|
formatted = format_console_output(result, args.debug, show_fields, args.match_codes, args.exclude_codes)
|
||||||
if formatted:
|
if formatted:
|
||||||
if args.progress:
|
if args.progress:
|
||||||
count += 1
|
count += 1
|
||||||
info(f"[{count}] {formatted}")
|
info(f"[{count}] {formatted}")
|
||||||
else:
|
|
||||||
if args.jsonl:
|
|
||||||
print(json.dumps(result))
|
|
||||||
else:
|
else:
|
||||||
print(formatted)
|
print(formatted)
|
||||||
|
|
||||||
|
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.0.6',
|
version='2.0.7',
|
||||||
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