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/srch.py
from playwright.sync_api import sync_playwright
url="https://seaside.pacim.de/day-list.php?date=2026-06-27&h=ae6c96c6793e9dae3d10aa1e4ed3be55"
def vis_plates(pg,n=6):
    return pg.eval_on_selector_all("#dl-body tr",
      "rows=>rows.filter(r=>r.style.display!=='none').slice(0,%d).map(r=>r.getAttribute('data-plate'))"%n)
with sync_playwright() as p:
    b=p.chromium.launch(); pg=b.new_page(viewport={"width":440,"height":820},device_scale_factor=2)
    pg.goto(url,wait_until="networkidle"); pg.wait_for_timeout(400)
    # 1) plate-priority: type da961
    pg.fill("#dl-search","da961"); pg.wait_for_timeout(300)
    print("search 'da961' top visible:", vis_plates(pg))
    print("suggest visible:", pg.is_visible("#dl-suggest"))
    # 2) Meinten Sie? digit transposition aada916
    pg.fill("#dl-search","aada916"); pg.wait_for_timeout(300)
    print("search 'aada916' suggest visible:", pg.is_visible("#dl-suggest"), "| text:", pg.inner_text("#dl-suggest") if pg.is_visible("#dl-suggest") else "")
    print("  hits:", vis_plates(pg))
    pg.screenshot(path="/tmp/dl_suggest.png")
    # 3) wrong city bda961
    pg.fill("#dl-search","bda961"); pg.wait_for_timeout(300)
    print("search 'bda961' suggest:", pg.inner_text("#dl-suggest") if pg.is_visible("#dl-suggest") else "(none)")
    b.close()

Youez - 2016 - github.com/yon3zu
LinuXploit