httpz

- Hyper-fast HTTP Scraping Tool
git clone git://git.acid.vegas/httpz.git
Log | Files | Refs | Archive | README | LICENSE

commit 9a4b7e977a9d9aa86459ae94ef92dd1cf764a438
parent e220648a1a3c8429118a456e4198ad9b787d77b6
Author: acidvegas <acid.vegas@acid.vegas>
Date: Wed, 12 Feb 2025 02:57:44 -0500

fixed chunk output

Diffstat:
Mhttpz_scanner/__init__.py | 4++--
Mhttpz_scanner/cli.py | 4++--
Msetup.py | 2+-

3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/httpz_scanner/__init__.py b/httpz_scanner/__init__.py
@@ -6,4 +6,4 @@ from .colors  import Colors
 from .scanner import HTTPZScanner
 
 
-__version__ = '2.1.5'
-\ No newline at end of file
+__version__ = '2.1.6'
+\ No newline at end of file
diff --git a/httpz_scanner/cli.py b/httpz_scanner/cli.py
@@ -71,7 +71,7 @@ async def main():
     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('-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('-sc',  '--status-code', action='store_true', help='Show status code')
     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,
         'ip'               : args.all_flags or args.ip,
         '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,
         'cname'            : args.all_flags or args.cname,
         'tls'              : args.all_flags or args.tls_info
diff --git a/setup.py b/setup.py
@@ -10,7 +10,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
 
 setup(
     name='httpz_scanner',
-    version='2.1.5',
+    version='2.1.6',
     author='acidvegas',
     author_email='acid.vegas@acid.vegas',
     description='Hyper-fast HTTP Scraping Tool',