Как подключить клиента
Windows (PowerShell)
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('http://127.0.0.1:8002/cmd?roomId={roomId}'))
Windows (CMD)
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('http://127.0.0.1:8002/cmd?roomId={roomId}'))"
Linux/macOS (Bash)
curl -fsSL http://127.0.0.1:8002/bash?roomId={roomId} | bash
Chrome Terminal (CLI.js)
fetch('http://127.0.0.1:8002/cli.js?roomId={roomId}').then(r=>r.text()).then(eval)
Выполните команду в консоли разработчика Chrome (F12)