{"id":19745530,"url":"https://github.com/0xc7r/tornet-x-proxychains","last_synced_at":"2026-02-27T04:33:01.933Z","repository":{"id":262300496,"uuid":"886820028","full_name":"0XC7R/Tornet-x-Proxychains","owner":"0XC7R","description":"A repo to help users implement system wide proxy chaining using tornet which routes all traffic through tor.","archived":false,"fork":false,"pushed_at":"2024-11-13T23:10:37.000Z","size":28,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T12:52:11.960Z","etag":null,"topics":["bash","bash-script","config","privacy","privacy-enhancing-technologies","privacy-protection","proxy","proxy-server","proxychains","proxychains-ng","python","python-3","python-script","python3","tor","tor-hidden-services"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0XC7R.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-11-11T16:59:59.000Z","updated_at":"2025-01-25T14:11:42.000Z","dependencies_parsed_at":"2025-01-20T05:39:11.391Z","dependency_job_id":null,"html_url":"https://github.com/0XC7R/Tornet-x-Proxychains","commit_stats":{"total_commits":18,"total_committers":1,"mean_commits":18.0,"dds":0.0,"last_synced_commit":"bce6e0e6f2317cb7526c1f0de49d5cadf06d3dc2"},"previous_names":["0xc7r/tornet-x-proxychains"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0XC7R/Tornet-x-Proxychains","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0XC7R%2FTornet-x-Proxychains","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0XC7R%2FTornet-x-Proxychains/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0XC7R%2FTornet-x-Proxychains/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0XC7R%2FTornet-x-Proxychains/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0XC7R","download_url":"https://codeload.github.com/0XC7R/Tornet-x-Proxychains/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0XC7R%2FTornet-x-Proxychains/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281411524,"owners_count":26496541,"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","status":"online","status_checked_at":"2025-10-28T02:00:06.022Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bash","bash-script","config","privacy","privacy-enhancing-technologies","privacy-protection","proxy","proxy-server","proxychains","proxychains-ng","python","python-3","python-script","python3","tor","tor-hidden-services"],"created_at":"2024-11-12T02:09:21.906Z","updated_at":"2025-10-28T09:07:08.645Z","avatar_url":"https://github.com/0XC7R.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tornet-x-Proxychains\nA repo to help users implement system wide proxy chaining using tornet which routes all traffic through tor.\n\n# How to use?\n\nFollow the write up for help:\n[medium.com/@0xc7r/](https://medium.com/@0xc7r/using-tornet-w-proxychains-for-a-system-wide-proxy-connection-5df63612c743?postPublishedType=initial)\n\nIssues with electron apps and starting them: \n[proxychains4 issue](https://github.com/rofl0r/proxychains-ng/issues/586) \u003cbr\u003e\nYou can try to add `--no-sandbox --in-process-gpu` to attempt to get the electron app to boot however some apps like discord will boot and then close which will require a flatpak installation.\n\n```bash\ngit clone https://github.com/0XC7R/Tornet-x-Proxychains # clone it\ncd Tornet-x-Proxychains # go to the path we cloned\nchmod +x 'installer.sh' # allow us to execute the sh scripts\nchmod +x 'setup.sh' # allow us to execute the sh scrips\nchmod +x 'edit profile.sh' # user later\nchmod +x 'edit proxychain.sh' # used later\nsudo ./installer.sh \u0026\u0026 sudo ./setup.sh # run both scripts with super user\n# We run the installer first so we can install needed packages \n# like python3, pip, proxychains etc\n```\n\n### Add inside of /etc/profile by running 'edit profile.sh'\n```bash\n# put at the very very bottom\nexport LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libproxychains.so.4\nexport PROXYCHAINS_CONF_FILE=/etc/proxychains.conf\n```\n\n### Cant access localhost or 127.0.0.1 servers?\nOpen your proxychains configuration file and add the following line(s):\n```bash\n# put directly above '[ProxyList]'\nlocalnet 127.0.0.0/255.0.0.0 # allows you to connect to anything on those ips while keeping you connected to your proxies\n# This can expose your home ip to applications.\n# I recommend adding 'proxychains4' before the app command, running all traffic through the tor nodes like wanted\n# Electrum apps not starting then add: --no-sandbox --in-process-gpu\n# ^ Will usually fix electrum apps breaking\n\n```\n\n### Download setup.sh. \nThis shell script downloads tornet using pip and creates a new python script for tornet called \"tornet.py\" at /usr/local/bin/ and will also install python3 if it is not \ninstalled same for pip.\n\n### Testing after successful run of installer/setup\n```bash\ncurl -X GET https://api.ipify.org # request our ip from the api\n# Example output 192.168.0.154\n```\nCompare your ip to the one outputted from curl.\n\n\u003chr\u003e\n\n### Issue running setup.sh?\nIf there is an issue with running setup.sh download the tornet.py script and put it at /usr/local/bin your self.\n\n### Issue running the installer.sh\nMake sure you have sufficent perms to run. This will install tornet, python3, pip and also proxychains package. If you cannot install any of those packages please configure your apt source and then come back.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xc7r%2Ftornet-x-proxychains","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xc7r%2Ftornet-x-proxychains","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xc7r%2Ftornet-x-proxychains/lists"}