{"id":25232922,"url":"https://github.com/0adri3n/linuxeverywh3re","last_synced_at":"2026-02-23T15:01:53.951Z","repository":{"id":276694658,"uuid":"929936579","full_name":"0adri3n/linuxEverywh3re","owner":"0adri3n","description":"Some Docker images to have a reachable Linux on hand with SSH + VNC.","archived":false,"fork":false,"pushed_at":"2025-02-11T17:09:16.000Z","size":30,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-06T17:46:37.600Z","etag":null,"topics":["debian","docker","kali","ssh","ubuntu","vnc"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0adri3n.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-02-09T18:33:57.000Z","updated_at":"2025-03-30T01:21:04.000Z","dependencies_parsed_at":"2025-06-06T17:50:44.413Z","dependency_job_id":null,"html_url":"https://github.com/0adri3n/linuxEverywh3re","commit_stats":null,"previous_names":["0adri3n/linuxeverywh3re"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/0adri3n/linuxEverywh3re","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0adri3n%2FlinuxEverywh3re","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0adri3n%2FlinuxEverywh3re/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0adri3n%2FlinuxEverywh3re/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0adri3n%2FlinuxEverywh3re/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0adri3n","download_url":"https://codeload.github.com/0adri3n/linuxEverywh3re/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0adri3n%2FlinuxEverywh3re/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29746499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T07:44:07.782Z","status":"ssl_error","status_checked_at":"2026-02-23T07:44:07.432Z","response_time":90,"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":["debian","docker","kali","ssh","ubuntu","vnc"],"created_at":"2025-02-11T13:36:59.421Z","updated_at":"2026-02-23T15:01:53.931Z","avatar_url":"https://github.com/0adri3n.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# linuxEverywh3re\n\nThis repository contains Dockerfiles for setting up **Debian**, **Ubuntu**, and **Kali** Docker containers with **SSH** and **VNC** access, along with the **XFCE desktop environment** and **cyber tools** on **Kali**. These containers are configured to allow remote access via SSH and VNC, with a default root password set to `toor`.\n\n## 📸 Screenshot\n\n![image](https://github.com/user-attachments/assets/0cc8d417-6de3-4117-807b-22a8561d461e)\n\n\n## 🛠️ Prerequisites\n\n- **Docker** installed on your machine.\n  - Install Docker: [Docker Installation Guide](https://docs.docker.com/get-docker/)\n  \n## 🚀 Getting Started\n\nYou can either **build** the Docker images locally or **pull** them from the \u003ca href=\"https://hub.docker.com/u/0adri3n\" target=\"_blank\"\u003eDocker Hub\u003c/a\u003e. Below are the steps for both options.\n\n## 🐳 From Docker Hub\n\n#### For Debian:\n```bash\ndocker pull 0adri3n/debian-ssh-vnc:latest.\n```\n\n#### For Ubuntu:\n```bash\ndocker pull 0adri3n/ubuntu-ssh-vnc:latest.\n```\n\n#### For Kali:\n```bash\ndocker pull 0adri3n/kali-ssh-vnc:latest.\n```\n\n## 🔨 Build the images locally\n\n### 1. **Clone this repository**\n```bash\ngit clone https://github.com/0adri3n/linuxEverywh3re.git\ncd linuxEverywh3re\n```\n\n### 2. **Build the Docker images** (Optional)\nTo build the images locally for **Debian**, **Ubuntu**, and **Kali**, use the following commands:\n\n#### For Debian:\n```bash\ncd debian\ndocker build -t debian-ssh-vnc .\n```\n\n#### For Ubuntu:\n```bash\ncd ubuntu\ndocker build -t ubuntu-ssh-vnc .\n```\n\n#### For Kali:\n```bash\ncd kali\ndocker build -t kali-ssh-vnc .\n```\n\n### 3. **Run the Docker containers**\n\nYou can run the containers as follows:\n\n#### For Debian:\n```bash\ndocker run -d --name debian-container -p 2223:22 -p 5901:5900 debian-ssh-vnc\n```\n\n#### For Ubuntu:\n```bash\ndocker run -d --name ubuntu-container -p 2224:22 -p 5902:5900 ubuntu-ssh-vnc\n```\n\n#### For Kali:\n```bash\ndocker run -d --name kali-container -p 2225:22 -p 5903:5900 kali-ssh-vnc\n```\n\n### 4. **Access the Docker containers**\n\n- **SSH Access**:  \n  Use the following command to SSH into the container:\n  ```bash\n  ssh root@localhost -p \u003cPORT\u003e\n  ```\n  Replace `\u003cPORT\u003e` with `2223`, `2224`, or `2225` for **Debian**, **Ubuntu**, or **Kali**, respectively.\n\n  Default password: `toor`\n\n- **VNC Access**:  \n  Connect using a VNC client (e.g., **TigerVNC**, **Remmina**, **RealVNC**) to the following address:\n  - For **Debian**: `localhost:5901`\n  - For **Ubuntu**: `localhost:5902`\n  - For **Kali**: `localhost:5903`\n\n  Default password: `toor`\n\n---\n\n## 🧑‍💻 Customization\n\nYou can modify the Dockerfiles or the `entrypoint.sh` script to further customize your container. The default VNC password is set to `toor`, but you can change it by modifying the respective Dockerfile and running `x11vnc -storepasswd`.\n\n---\n\n## ⚡ Additional Information\n\n- **XFCE** is installed as the desktop environment. You can replace it with other desktop environments if needed (e.g., GNOME, LXDE).\n- **Xvfb** is used to create a virtual display for VNC.\n- **x11vnc** provides VNC access to the virtual display.\n\n---\n\n## 📝 License\n\nThis repository is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n\n---\n\n### ✨ Contributions\nFeel free to open issues or submit pull requests if you have improvements, bug fixes, or additional features in mind!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0adri3n%2Flinuxeverywh3re","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0adri3n%2Flinuxeverywh3re","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0adri3n%2Flinuxeverywh3re/lists"}