From 83332a939a4d04c6c03c7e275553a9ab6eb597c7 Mon Sep 17 00:00:00 2001 From: AB Date: Wed, 1 Apr 2026 16:52:52 -0400 Subject: [PATCH] Add pastebin support --- user_scanner/user_scan/other/pastebin.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 user_scanner/user_scan/other/pastebin.py 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)