Skip to content

Commit

Permalink
basic cache poisoning scanner
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Sanchez authored and Miguel Sanchez committed Dec 24, 2022
1 parent 4d8d790 commit 2511078
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions vuln_db/cache_poisoning.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,4 @@ def cache_dos_scan(url: str) -> str:
if r.status_code == 301:
for key, description in r.headers.items():
if "Location" in key and url in description:
print(f"{Fore.MAGENTA}[+] {Fore.CYAN}-{Fore.WHITE} Cache Poisoning: {Fore.GREEN}POSSIBLE!")




print(f"{Fore.MAGENTA}[+] {Fore.CYAN}-{Fore.WHITE} Cache Poisoning: {Fore.GREEN}POSSIBLE!")

0 comments on commit 2511078

Please sign in to comment.