{"id":37182699,"url":"https://github.com/presbrey/gobsips","last_synced_at":"2026-01-14T21:04:23.016Z","repository":{"id":252582113,"uuid":"840852042","full_name":"presbrey/gobsips","owner":"presbrey","description":"Go Binary Systemd-Integrated Proxy Server","archived":false,"fork":false,"pushed_at":"2025-07-03T14:43:21.000Z","size":30,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-04T16:02:05.306Z","etag":null,"topics":["socks-server","socks5","socks5-proxy","socks5-server","systemd-service"],"latest_commit_sha":null,"homepage":"","language":"Go","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/presbrey.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-08-10T22:13:52.000Z","updated_at":"2025-07-03T14:43:17.000Z","dependencies_parsed_at":"2024-08-10T23:27:03.014Z","dependency_job_id":"58fb0ecb-b9c1-4d83-a69c-243bec0e59b2","html_url":"https://github.com/presbrey/gobsips","commit_stats":null,"previous_names":["presbrey/gobsips"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/presbrey/gobsips","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/presbrey%2Fgobsips","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/presbrey%2Fgobsips/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/presbrey%2Fgobsips/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/presbrey%2Fgobsips/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/presbrey","download_url":"https://codeload.github.com/presbrey/gobsips/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/presbrey%2Fgobsips/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28434530,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["socks-server","socks5","socks5-proxy","socks5-server","systemd-service"],"created_at":"2026-01-14T21:04:22.493Z","updated_at":"2026-01-14T21:04:23.000Z","avatar_url":"https://github.com/presbrey.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Go Report Card](https://goreportcard.com/badge/github.com/presbrey/gobsips)](https://goreportcard.com/report/github.com/presbrey/gobsips)\n[![codecov](https://codecov.io/gh/presbrey/gobsips/branch/main/graph/badge.svg)](https://codecov.io/gh/presbrey/gobsips)\n![Go Test](https://github.com/presbrey/gobsips/workflows/Go%20Test/badge.svg)\n[![GoDoc](https://godoc.org/github.com/presbrey/gobsips?status.svg)](https://godoc.org/github.com/presbrey/gobsips)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n# GoBSIPS (Go Binary Systemd-Integrated Proxy Server)\n\nGoBSIPS is a simple, single-file, static go binary that installs itself into Linux systemd and runs as a modern system service. It provides a SOCKS5 proxy server with authentication enabled by default.\n\n## Features\n\n- Single-file, static binary. SCP it to your servers and run it\n- Easy permanent self-installation as a systemd service\n- SOCKS5 proxy server with authentication\n- Configurable through a simple configuration file\n\n## Installation\n\nDownload a binary from GitHub here: https://github.com/presbrey/gobsips/releases/latest\n\nThen to install, copy the binary to the server and run it. We'll use Linux/AMD64 in this example:\n```\nscp gobsips_linux_amd64 root@remote-server:/usr/local/bin/gobsips\nssh root@remote-server '/usr/local/bin/gobsips \u0026\u0026 cat /etc/sysconfig/gobsips'\n```\n\n`gobsips` will automatically:\n1. Create a default configuration file at `/etc/sysconfig/gobsips`\n2. Install a systemd service that runs `/usr/local/bin/gobsips`\n3. Enable and start the service, and show you the initial configuration\n\n## Configuration\n\nThe configuration file is located at `/etc/sysconfig/gobsips`. You can modify the following parameters:\n\n- `USERNAME`: The username for SOCKS5 authentication\n- `PASSWORD`: The password for SOCKS5 authentication\n- `LISTEN_HOST`: The IP address to listen on (default: 0.0.0.0)\n- `LISTEN_PORT`: The port to listen on (default: 1080)\n\nAfter modifying the configuration, restart the service:\n\n```\nsudo systemctl restart gobsips\n```\n\n## Usage\n\nOnce installed and running, you can use GoBSIPS as a SOCKS5 proxy server. Configure your applications to use the proxy with the following details:\n\n- Proxy Type: SOCKS5\n- Host: [Your server's IP address]\n- Port: 1080 (or the port you configured)\n- Username and Password: As configured in the config file\n\nIf you run multiple servers and write golang software, this library may work well for you: https://github.com/presbrey/go-multiproxy\n\n## Building from Source\n\nTo build GoBSIPS from source, you need Go installed on your system. Then run:\n\n```\ngo build -o gobsips *.go\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpresbrey%2Fgobsips","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpresbrey%2Fgobsips","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpresbrey%2Fgobsips/lists"}