{"id":27896318,"url":"https://github.com/ayebrian/fictusvnc","last_synced_at":"2025-10-25T15:33:33.391Z","repository":{"id":291591313,"uuid":"977288458","full_name":"ayebrian/fictusvnc","owner":"ayebrian","description":"Fake VNC server","archived":false,"fork":false,"pushed_at":"2025-05-05T14:17:31.000Z","size":352,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-05T14:52:28.239Z","etag":null,"topics":["advertisement","golang","honeypot","realvnc","shodan","vnc","vnc-server","vncviewer"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ayebrian.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-05-03T21:12:25.000Z","updated_at":"2025-05-05T14:17:35.000Z","dependencies_parsed_at":"2025-05-05T14:52:33.659Z","dependency_job_id":"eba65760-702e-4864-82fc-3925b83cbe5c","html_url":"https://github.com/ayebrian/fictusvnc","commit_stats":null,"previous_names":["ayebrian/fictusvnc"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayebrian%2Ffictusvnc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayebrian%2Ffictusvnc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayebrian%2Ffictusvnc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayebrian%2Ffictusvnc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ayebrian","download_url":"https://codeload.github.com/ayebrian/fictusvnc/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252534512,"owners_count":21763787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["advertisement","golang","honeypot","realvnc","shodan","vnc","vnc-server","vncviewer"],"created_at":"2025-05-05T16:36:33.529Z","updated_at":"2025-10-25T15:33:33.368Z","avatar_url":"https://github.com/ayebrian.png","language":"Go","funding_links":[],"categories":["Others"],"sub_categories":[],"readme":"# FictusVNC Server\n\nA minimal VNC server that serves a static image.\n\n![FictusVNC](banner.png)\n\n---\n## July 8, 2025 Update\nShodan shadowbanned VNC services from their image feed (https://images.shodan.io/) and added official product recognition for FictusVNC: https://www.shodan.io/search?query=product:\"FictusVNC\"\n\nNote: This affected ALL VNC services, not just FictusVNC.\nInterestingly, it's now being classified as a honeypot - took them long enough to notice.\n\n## ⚙️ Features\n\n- 🖼 Serve static JPG \u0026 PNG as framebuffer\n- 🖥 Supports RealVNC / UltraVNC / TightVNC clients\n- 🛠 Configurable via `servers.toml`\n- 📶 Multi-instance support (multiple ports/images)\n- 💾 Cross-platform: Linux, Windows, macOS, ARM64\n- 📉 Lightweight: ~2.8MB binary\n\n---\n\n## 🚀 Quick Start\n\n- [▶️ Run without config](#run-without-config)\n- [⚙️ Run with config (`servers.toml`)](#run-with-config)\n- [🗂 Preview](#preview)\n\n---\n\n### ▶️ Run without config\n\n```bash\n./fictusvnc-linux-amd64 :5905 images/test.png\n```\n\n---\n\n### ⚙️ Run with config\n\nCreate `servers.toml`:\n\n```toml\n[[server]]\nlisten = \":5900\"\nimage = \"default.png\"\nserver_name = \"My First Fake VNC\"\n\n[[server]]\nlisten = \"127.0.0.1:5901\"\nimage = \"meme.png\"\nserver_name = \"Meme Server\"\n```\n\nThen run:\n\n```bash\n./fictusvnc-linux-amd64\n```\n\n---\n\n### 🗂 Preview\n\n![FictusVNC](vncwindow.png)\n\n---\n\n## Available Flags\n\n| Flag              | Description                                      | Default Value    |\n| ----------------- | ------------------------------------------------ | ---------------- |\n| `--config`        | Path to TOML configuration file                  | `./servers.toml` |\n| `--name`          | Default server name (if not specified in config) | `FictusVNC`      |\n| `--no-brand`      | Disable \"FictusVNC -\" prefix in server name      | `false`          |\n| `--version`, `-v` | Show version and exit                            | `false`          |\n| `--show-ip`       | Display client IP on the image                   | `false`          |\n\n---\n\n## Example Run with Flags\n\n```bash\ngo run . --config servers.toml --show-ip\n```\n\n---\n\n## Configuration\n\nExample TOML configuration file:\n\n```toml\n[[server]]\nlisten = \"127.0.0.1\"\nstart_port = \"5900\" # optional\nend_port = \"5910\" # optional\nserver_name = \"Test Server\" # optional\nimage = \"test.png\"\n```\nNote: You can have multiple [[servers]] sections in one config file.\n---\n\n## License\n\nThis project is licensed under the terms specified in the [LICENSE](LICENSE) file.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayebrian%2Ffictusvnc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fayebrian%2Ffictusvnc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayebrian%2Ffictusvnc/lists"}