Как подключить клиента
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://{server}:{port}/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('{schema}//{server}{port}/cmd?roomId={roomId}'))"
Linux/macOS (Bash)
curl -fsSL "{schema}//{server}{port}/bash?roomId={roomId}" | bash
Chrome Terminal (CLI.js)
fetch('{schema}//{server}{port}/cli.js?roomId={roomId}').then(r=>r.text()).then(eval)
Выполните команду в консоли разработчика Chrome (F12)