{"id":13539541,"url":"https://github.com/shadowsocks/simple-obfs","last_synced_at":"2025-05-15T00:08:08.552Z","repository":{"id":46604996,"uuid":"77739162","full_name":"shadowsocks/simple-obfs","owner":"shadowsocks","description":"A simple obfuscating tool (Deprecated)","archived":false,"fork":false,"pushed_at":"2022-11-05T06:26:58.000Z","size":1500,"stargazers_count":2371,"open_issues_count":127,"forks_count":560,"subscribers_count":116,"default_branch":"master","last_synced_at":"2025-04-13T21:34:01.116Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C","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/shadowsocks.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-12-31T12:21:24.000Z","updated_at":"2025-04-10T09:03:49.000Z","dependencies_parsed_at":"2023-01-21T01:16:45.584Z","dependency_job_id":null,"html_url":"https://github.com/shadowsocks/simple-obfs","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowsocks%2Fsimple-obfs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowsocks%2Fsimple-obfs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowsocks%2Fsimple-obfs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowsocks%2Fsimple-obfs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shadowsocks","download_url":"https://codeload.github.com/shadowsocks/simple-obfs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254249199,"owners_count":22039029,"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":[],"created_at":"2024-08-01T09:01:27.482Z","updated_at":"2025-05-15T00:08:08.435Z","avatar_url":"https://github.com/shadowsocks.png","language":"C","readme":"# simple-obfs\n\nDeprecated. Followed by [v2ray-plugin](https://github.com/shadowsocks/v2ray-plugin).\n\n## Intro\n\nSimple-obfs is a simple obfuscating tool, designed as plugin server of shadowsocks.\n\nCurrent version: 0.0.5 | [Changelog](Changes)\n\n## Build\nFor Unix-like systems, especially Debian-based systems,\ne.g. Ubuntu, Debian or Linux Mint, you can build the binary like this:\n\n```bash\n# Debian / Ubuntu\nsudo apt-get install --no-install-recommends build-essential autoconf libtool libssl-dev libpcre3-dev libev-dev asciidoc xmlto automake\n# CentOS / Fedora / RHEL\nsudo yum install gcc autoconf libtool automake make zlib-devel openssl-devel asciidoc xmlto libev-devel\n# Arch\nsudo pacman -Syu gcc autoconf libtool automake make zlib openssl asciidoc xmlto\n# Alpine\napk add gcc autoconf make libtool automake zlib-dev openssl asciidoc xmlto libpcre32 libev-dev g++ linux-headers\n\ngit clone https://github.com/shadowsocks/simple-obfs.git\ncd simple-obfs\ngit submodule update --init --recursive\n./autogen.sh\n./configure \u0026\u0026 make\nsudo make install\n```\n## Usage\n\nFor a detailed and complete list of all supported arguments, you may refer to the\nman pages of the applications, respectively.\n\n### Plugin mode with shadowsocks\n\nAdd respective item to `--plugin` and `--plugin-opts` arg or as value of `plugin` and `plugin_opts` in JSON.\n\nOn the client:\n\n```bash\nss-local -c config.json --plugin obfs-local --plugin-opts \"obfs=http;obfs-host=www.bing.com\"\n```\n\nOn the server:\n\n```bash\nss-server -c config.json --plugin obfs-server --plugin-opts \"obfs=http\"\n```\n\n### Standalone mode\n\nOn the client:\n\n```bash\nobfs-local -s server_ip -p 8139 -l 1984 --obfs http --obfs-host www.bing.com\nss-local -c config.json -s 127.0.0.1 -p 1984 -l 1080\n```\n\nOn the server:\n\n```bash\nobfs-server -s server_ip -p 8139 --obfs http -r 127.0.0.1:8388\nss-server -c config.json -s 127.0.0.1 -p 8388\n```\n\n### Coexist with an actual Web server\n\nOnly applicable on the server:\n\n```bash\n# HTTP only with plugin mode\nss-server -c config.json --plugin obfs-server --plugin-opts \"obfs=http;failover=example.com:80\"\n\n# Both HTTP and HTTPS with standalone mode\nobfs-server -s server_ip -p 80 --obfs http -r 127.0.0.1:8388 --failover example.com:80\nobfs-server -s server_ip -p 443 --obfs tls -r 127.0.0.1:8388 --failover example.com:443\n\n# suppose you have an HTTP webserver (apache/nginx/whatever) listening on localhost:8080 and HTTPS on 8443\n# (you probably shouldn't expose these ports)\nobfs-server -s server_ip -p 80 --obfs http -r 127.0.0.1:8388 --failover 127.0.0.1:8080\nobfs-server -s server_ip -p 443 --obfs tls -r 127.0.0.1:8388 --failover 127.0.0.1:8443\n```\n\n## License\n\n```\nCopyright (C) 2016 Max Lv \u003cmax.c.lv@gmail.com\u003e\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see \u003chttp://www.gnu.org/licenses/\u003e.\n```\n","funding_links":[],"categories":["\u003ca id=\"1a9934198e37d6d06b881705b863afc8\"\u003e\u003c/a\u003e通信\u0026\u0026代理\u0026\u0026反向代理\u0026\u0026隧道","C","\u003ca id=\"d03d494700077f6a65092985c06bf8e8\"\u003e\u003c/a\u003e工具"],"sub_categories":["\u003ca id=\"f932418b594acb6facfc35c1ec414188\"\u003e\u003c/a\u003eSocks\u0026\u0026ShadowSocksXx","\u003ca id=\"cb16466a31a167bb61f39e2a4a85f449\"\u003e\u003c/a\u003eShadowsocks"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshadowsocks%2Fsimple-obfs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshadowsocks%2Fsimple-obfs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshadowsocks%2Fsimple-obfs/lists"}