devanshbatham / ParamSpider

Mining URLs from dark corners of Web Archives for bug hunting/fuzzing/further probing
MIT License
2.34k stars 403 forks source link

fix results error #123

Open DaddyBigFish opened 1 month ago

DaddyBigFish commented 1 month ago

This is the fix for the results error with http and https

Line 109 - 112

# Sanitize the domain
domain = domain.replace("https://", "").replace("http://", "").replace("/", "_").replace(":", "_")

result_file = os.path.join(results_dir, f"{domain}.txt")