From c17aa1709642e8dd093d9b508b8c354b65796d6a Mon Sep 17 00:00:00 2001 From: Juvenile <1171313930@qq.com> Date: Sat, 22 Jan 2022 22:06:39 +0800 Subject: [PATCH] ignore https certificate verification (#484) --- kube_hunter/modules/report/dispatchers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kube_hunter/modules/report/dispatchers.py b/kube_hunter/modules/report/dispatchers.py index 6b5b6ba4..1f17b7cd 100644 --- a/kube_hunter/modules/report/dispatchers.py +++ b/kube_hunter/modules/report/dispatchers.py @@ -16,6 +16,7 @@ def dispatch(self, report): dispatch_url, json=report, headers={"Content-Type": "application/json"}, + verify=False ) r.raise_for_status() logger.info(f"Report was dispatched to: {dispatch_url}")