diff --git a/user_scanner/user_scan/other/pastebin.py b/user_scanner/user_scan/other/pastebin.py new file mode 100644 index 0000000..3b3f06f --- /dev/null +++ b/user_scanner/user_scan/other/pastebin.py @@ -0,0 +1,8 @@ +from user_scanner.core.orchestrator import status_validate + +def validate_pastebin(user): + + url = f"https://pastebin.com/u/{user}" + show_url = f"https://pastebin.com/u/{user}" + + return status_validate(url, 404, 200, show_url=show_url)