httpz- Hyper-fast HTTP Scraping Tool |
git clone git://git.acid.vegas/httpz.git |
Log | Files | Refs | Archive | README | LICENSE |
commit 15a428be821857c0e51fa44ef5e800cb92db364a
parent 173b7e3cf0f91d91161123ba8558f8200f948ee1 Author: acidvegas <acid.vegas@acid.vegas> Date: Mon, 10 Feb 2025 01:11:30 -0500 clean output Diffstat:
|
1 file changed, 3 insertions(+), 3 deletions(-) |
diff --git a/httpz.py b/httpz.py @@ -66,8 +66,8 @@ class Colors: LIGHT_RED = '\033[38;5;203m' # Light red DARK_GREEN = '\033[38;5;22m' # Dark green PINK = '\033[38;5;198m' # Bright pink - GRAY = '\033[90m' # Gray color - CYAN = '\033[96m' # Cyan color + GRAY = '\033[90m' # Gray color + CYAN = '\033[96m' # Cyan color _SILENT_MODE = False @@ -236,7 +236,7 @@ async def check_domain(session: aiohttp.ClientSession, domain: str, follow_redir 'title' : None, 'body' : None, 'content_type' : None, - 'url' : f"https://{base_domain}" if base_domain else domain, + 'url' : f"https://{base_domain}", 'ips' : [], 'cname' : None, 'nameservers' : [], |