Untitled

 avatar
unknown
plain_text
21 days ago
349 B
4
Indexable
if choice == "1":
    file_path = input("Enter the path to the file: ")
    scan_result = scan_file(file_path)
    resource_id = scan_result.get("data", {}).get("id")
elif choice == "2":
    url_to_scan = input("Enter the URL to scan: ")
    scan_result = scan_url(url_to_scan)
    resource_id = scan_result.get("data", {}).get("id")
else:
Editor is loading...
Leave a Comment