{"id":41618020,"url":"https://github.com/friddle/goxrdp-piko","last_synced_at":"2026-01-24T13:02:33.655Z","repository":{"id":303751617,"uuid":"1015245175","full_name":"friddle/goxrdp-piko","owner":"friddle","description":"fucking goxrdp and piko实现一键页面登陆","archived":false,"fork":false,"pushed_at":"2025-07-16T08:00:37.000Z","size":115365,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-17T05:55:47.515Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/friddle.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-07T08:08:54.000Z","updated_at":"2025-07-16T07:57:53.000Z","dependencies_parsed_at":"2025-07-16T15:04:43.176Z","dependency_job_id":null,"html_url":"https://github.com/friddle/goxrdp-piko","commit_stats":null,"previous_names":["friddle/goxrdp-piko"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/friddle/goxrdp-piko","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/friddle%2Fgoxrdp-piko","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/friddle%2Fgoxrdp-piko/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/friddle%2Fgoxrdp-piko/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/friddle%2Fgoxrdp-piko/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/friddle","download_url":"https://codeload.github.com/friddle/goxrdp-piko/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/friddle%2Fgoxrdp-piko/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28728443,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-24T13:02:29.452Z","updated_at":"2026-01-24T13:02:33.622Z","avatar_url":"https://github.com/friddle.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# grdp-piko\n\nA Windows RDP remote desktop tool based on grdp protocol and piko network forwarding. Access and control Windows remote desktop through web browsers without complex network configuration and external network addresses.\n\n[grdp](https://github.com/tomatome/grdp) - Go language implementation of RDP protocol client\n[piko](https://github.com/andydunstall/piko) - Lightweight network tunnel service\n\n## Project Features\n\n- 🖥️ **Web Remote Desktop**: Access Windows remote desktop through browser\n- 🚀 **Lightweight**: Implemented in Go language with low resource consumption\n- 🔧 **Simple Deployment**: Backend Docker one-click deployment with simple configuration\n- 🔒 **Secure and Reliable**: Based on RDP protocol with user authentication support\n- 📱 **Cross-platform**: Supports Linux, macOS, and Windows clients\n- 🌐 **Network Penetration**: Achieves intranet penetration through piko service\n\n## Architecture Overview\n\n```\nWindows RDP Server (Port 3389)\n    ↓ RDP Protocol\ngrdp Client (goxrdp)\n    ↓ piko Tunnel\npiko Server\n    ↓ HTTP/WebSocket\nWeb Browser\n```\n\n## Quick Start\n\n### Server Deployment\n\n1. **Deploy using Docker Compose**\n\n```yaml\n# docker-compose.yaml\nversion: \"3.8\"\nservices:\n  piko:\n    image: ghcr.io/friddle/grdp-piko-server:latest\n    container_name: grdp-piko-server\n    environment:\n      - PIKO_UPSTREAM_PORT=8022\n      - LISTEN_PORT=8088\n    ports:\n      - \"8022:8022\"\n      - \"8088:8088\"\n    restart: unless-stopped\n```\n\nOr use Docker directly:\n\n```bash\ndocker run -ti --network=host --rm --name=piko-server ghcr.io/friddle/grdp-piko-server\n```\n\n2. **Start the service**\n\n```bash\ndocker-compose up -d\n```\n\n### Client Usage\n\n#### Linux Client\n\n```bash\n# Download client\nwget https://github.com/friddle/grdp/releases/download/v1.0.1/goxrdp-linux-amd64 -O ./goxrdp\nchmod +x ./goxrdp\n\n# Basic connection\n./goxrdp --name=windows-server --remote=192.168.1.100:8088\n\n# Specify RDP server and user\n./goxrdp --name=windows-server --remote=192.168.1.100:8088 \\\n  --xrdp-host=192.168.1.200 \\\n  --xrdp-user=Administrator \\\n  --xrdp-pass=password\n\n# Disable auto-exit\n./goxrdp --name=windows-server --remote=192.168.1.100:8088 --auto-exit=false\n```\n\n#### Windows Client\n\n```cmd\n# Download client\n# Download goxrdp-windows-amd64.exe from https://github.com/friddle/grdp/releases/download/v1.0.1/goxrdp-windows-amd64.exe\n\n# Basic connection\ngoxrdp-windows-amd64.exe --name=windows-server --remote=192.168.1.100:8088\n\n# Specify RDP server and user\ngoxrdp-windows-amd64.exe --name=windows-server --remote=192.168.1.100:8088 ^\n  --xrdp-host=192.168.1.200 ^\n  --xrdp-user=Administrator ^\n  --xrdp-pass=password\n\n# Disable auto-exit\ngoxrdp-windows-amd64.exe --name=windows-server --remote=192.168.1.100:8088 --auto-exit=false\n```\n\n![Client Startup Screenshot](screenshot/start_cli.png)\n![Client GUI Screenshot](screenshot/start_gui.png)\n![Web Remote Desktop Screenshot](screenshot/webui.png)\n\n## Access Method\n\nWhen the client starts, access the Windows remote desktop through the following address:\n```\nhttp://host-server-IP:port/client-name\n```\n\nFor example:\n- Server listening address: `192.168.1.100:8088`\n- Client name: `windows-server`\n- Access address: `http://192.168.1.100:8088/windows-server`\n\n## Configuration\n\n### Client Parameters\n\n| Parameter | Description | Default | Required |\n|-----------|-------------|---------|----------|\n| `--name` | piko client identifier name | - | ✅ |\n| `--remote` | Remote piko server address (format: host:port) | - | ✅ |\n| `--xrdp-host` | Windows RDP server host address | Auto-detect local IP | ❌ |\n| `--xrdp-port` | Windows RDP server port | 3389 | ❌ |\n| `--xrdp-user` | Windows RDP username | Auto-detect current user | ❌ |\n| `--xrdp-pass` | Windows RDP password | - | ❌ |\n| `--xrdp-domain` | Windows RDP domain (empty for local computer name) | Auto-detect computer name | ❌ |\n| `--auto-exit` | Enable 24-hour auto-exit | true | ❌ |\n\n### Server Environment Variables\n\n| Variable | Description | Default |\n|----------|-------------|---------|\n| `PIKO_UPSTREAM_PORT` | Piko upstream port | 8022 |\n| `LISTEN_PORT` | HTTP listen port | 8088 |\n\n### Use Cases\n\n1. **Intranet Penetration**: Expose intranet Windows servers to external network through piko service\n2. **Remote Assistance**: Remote control Windows desktop through web browser\n3. **Development and Debugging**: Perform development and debugging in remote Windows environment\n4. **Server Management**: Manage Windows servers through web interface\n\n### Security Considerations\n\n- Ensure RDP server has Network Level Authentication (NLA) enabled\n- Use strong passwords to protect RDP accounts\n- Consider using VPN or firewall to restrict access\n- Regularly update Windows system and RDP service\n\n### Troubleshooting\n\n1. **Connection Failed**: Check if Windows RDP service is enabled (port 3389)\n2. **Authentication Failed**: Confirm username and password are correct, check account permissions\n3. **Network Issues**: Verify piko server address and port are correct\n4. **Permission Issues**: Ensure client has sufficient network access permissions\n\n## Technology Stack\n\n- **Backend**: Go language\n- **RDP Protocol**: grdp (Go RDP client)\n- **Network Tunnel**: piko\n- **Web Interface**: HTML5 Canvas + WebSocket\n- **Deployment**: Docker\n\n## License\n\nThis project is open source under the MIT License. ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffriddle%2Fgoxrdp-piko","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffriddle%2Fgoxrdp-piko","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffriddle%2Fgoxrdp-piko/lists"}