{"id":15059035,"url":"https://github.com/linuxfandudeguy/webshell","last_synced_at":"2026-02-18T15:32:17.070Z","repository":{"id":250388755,"uuid":"834333797","full_name":"linuxfandudeguy/webshell","owner":"linuxfandudeguy","description":"Web-based fedora experience possible using an API.","archived":false,"fork":false,"pushed_at":"2024-08-30T19:33:24.000Z","size":1122,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-22T16:40:17.547Z","etag":null,"topics":["fedora","linux","terminal","webterminal","webvm"],"latest_commit_sha":null,"homepage":"https://linuxfandudeguy.github.io/webshell/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/linuxfandudeguy.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}},"created_at":"2024-07-27T01:15:23.000Z","updated_at":"2025-07-02T00:50:21.000Z","dependencies_parsed_at":"2024-07-27T02:30:22.825Z","dependency_job_id":"4d4602e7-b665-4546-ac06-ac5b99081f3e","html_url":"https://github.com/linuxfandudeguy/webshell","commit_stats":null,"previous_names":["linuxfandudeguy/webshell"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/linuxfandudeguy/webshell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxfandudeguy%2Fwebshell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxfandudeguy%2Fwebshell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxfandudeguy%2Fwebshell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxfandudeguy%2Fwebshell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linuxfandudeguy","download_url":"https://codeload.github.com/linuxfandudeguy/webshell/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxfandudeguy%2Fwebshell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29583918,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T13:56:48.962Z","status":"ssl_error","status_checked_at":"2026-02-18T13:54:34.145Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["fedora","linux","terminal","webterminal","webvm"],"created_at":"2024-09-24T22:35:49.572Z","updated_at":"2026-02-18T15:32:17.045Z","avatar_url":"https://github.com/linuxfandudeguy.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# WebShell\n\n![costume1 (1)](https://github.com/user-attachments/assets/e694a042-cc9e-426b-a6b2-596b2314f7ce)\n\nWebShell is a browser-based Linux terminal experience designed for **testing**. This project was created as an experiment to see if the node.js module `child_process` with the export `exec` could power an entire terminal, and to fulfill the need for terminal technologies in the browser.\n\n## Features\n\n- **RHEL-based terminal**: The terminal uses **Amazon Linux**, which is based on **Fedora/CentOS**.\n- **Browser-based**: Access a fully interactive Linux terminal directly from your browser.\n- **Pre-installed tools**: Essential development tools and utilities are available.\n- **API Access**: Programmatically run commands via an API.\n\n## API\n\nWebShell includes an API to execute commands programmatically.\n\n### Endpoint\n\n```http\nURL: https://web-terminal-eight.vercel.app/run\nMethod: POST\nHeaders: Content-Type: application/json\nBody: {\"command\": \"your_linux_command_here\"}\n```\n\n### Example\n\nTo try it, run the following command in your system terminal if `curl` is installed:\n\n```bash\ncurl -X POST https://web-terminal-eight.vercel.app/run -H \"Content-Type: application/json\" -d '{\"command\": \"ls -l\"}'\n```\n\n## Screenshots\n\n### Terminal View\n\n![Screenshot 2024-07-31 8 46 05 AM](https://github.com/user-attachments/assets/1934c424-561d-4063-a1bc-19f468f849fa)\n\n\n### API View\n![Screenshot 2024-07-28 11 49 40 AM](https://github.com/user-attachments/assets/a4a4ecd2-7b37-4744-891d-b5aa6c6a136e)\n\n## Customization Commands\n\nWebShell has a variety of commands that allow you to customize your shell to however you want.\n\n- `setfontsize` - Allows you to change the size of the text using `px` or `em`.\n- `setfont` - Allows you to change the font of the terminal by providing a font URL in `otf` or `ttf`.\n- `setcolor` - Allows you to change the background color by providing a hex code.\n- `setbgcolor` - Allows you to change the background color by providing a hex code.\n- `setprompt` - Allows you to change the prompt of the terminal `admin@webshell:~$` to whatever you want.\n\nThe usage example of each command is below:\n\n```bash\nsetfont https://webshell-omega.vercel.app/assets/fonts/Pixel_NES.ttf\n```\n```bash\nsetcolor #ff0000\n```\n```bash\nsetbgcolor #000000\n```\n```bash\nsetfontsize 16px\n```\n\n```bash\nsetprompt foo@localhost~$\n```\n\n## How it Works\n\nWebShell uses AWS with a Node.js runtime deployed on Vercel. The `typeset` command in the terminal can display the environment variables.\n\nWebShell uses the `child_process.exec` export to run commands.\n\n\n\u003e **NOTE**: WebShell Should not be used for complicated tasks due to its restrictions.\n\n## Updates\n\nWebShell now has node.js support! Just type `node` and then You can run JavaScript.\n\n## Licensing\n\nWebShell is licensed under the CC0-1.0 license.\n\n## Contact\n\nFor more information, please contact the creator.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxfandudeguy%2Fwebshell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinuxfandudeguy%2Fwebshell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxfandudeguy%2Fwebshell/lists"}