Private Shells Finder
import threadingimport requestsfrom bs4 import BeautifulSoupfrom urllib.parse import urljoinfrom colorama import *init(autoreset=True)requests.urllib3.disable_warnings() print(f”””{Fore.LIGHTMAGENTA_EX}{Style.DIM}{Style.BRIGHT}╔╗╔┌─┐┌┬┐┌─┐┬─┐┬┌─┐┬ ┬┌─┐┌─┐ ╔═╗═╗ ╦║║║│ │ │ │ │├┬┘││ ││ │└─┐├┤───║╣ ╔╩╦╝╝╚╝└─┘ ┴ └─┘┴└─┴└─┘└─┘└─┘└─┘ ╚═╝╩ ╚═ {Fore.LIGHTWHITE_EX}Powered By: {Back.RED}https://t.me/Morphoisis{Style.RESET_ALL}“””) def check_vulnerability(url):try:response = requests.get(url, headers={‘User-Agent’: ‘Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.1’}, timeout=5, verify=False)soup = BeautifulSoup(response.text, ‘html.parser’)form = soup.find(‘form’,…

You must be logged in to post a comment.