diff --git a/utils/script.py b/utils/script.py index 2ac254f41c862172af1986b26a6081c4df1c055a..737c9fb9041e647079ec0221abeb6fa3277196b8 100644 --- a/utils/script.py +++ b/utils/script.py @@ -385,9 +385,19 @@ def import_dep_info(file_path, endpoints_to_scan): endpoints = dict() for key in data['outputs'].keys(): if key in endpoints_to_scan: - endpoint = str(data['outputs'][key]).split("/")[2] - print("endpoint",endpoint) - host,port = endpoint.split(':') + endpoint = str(data['outputs'][key]) + prefix,url = endpoint.split("://") + if ":" in url: + host,port = url.split(":") + else: + host = url + if prefix == "https": + port = 443 + elif prefix == 'http': + port = 80 + else: + raise Exception(f"Impossible to parse the endpoint port. Endpoint: {endpoint}") + print(f"Endpoint: {host}:{port}") if host not in endpoints: endpoints[host] = {"22"} endpoints[host].add(port)