devanshbatham / ParamSpider

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

fix results error #123

Open DaddyBigFish opened 6 months ago

DaddyBigFish commented 6 months 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")