{"id":19516022,"url":"https://github.com/jamesconlan96/proxcon","last_synced_at":"2025-09-01T21:45:39.298Z","repository":{"id":175951843,"uuid":"579121756","full_name":"JamesConlan96/proxcon","owner":"JamesConlan96","description":"A utility for quickly switching proxychains proxies","archived":false,"fork":false,"pushed_at":"2023-09-13T14:55:55.000Z","size":20,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-04T08:45:32.055Z","etag":null,"topics":["proxychains"],"latest_commit_sha":null,"homepage":"","language":"Python","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/JamesConlan96.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2022-12-16T18:04:03.000Z","updated_at":"2023-09-08T08:42:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"8a62ddd0-2846-4437-af36-0d1c14b24393","html_url":"https://github.com/JamesConlan96/proxcon","commit_stats":null,"previous_names":["jamesconlan96/proxcon"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamesConlan96%2Fproxcon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamesConlan96%2Fproxcon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamesConlan96%2Fproxcon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamesConlan96%2Fproxcon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JamesConlan96","download_url":"https://codeload.github.com/JamesConlan96/proxcon/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250943988,"owners_count":21511670,"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":["proxychains"],"created_at":"2024-11-10T23:44:00.801Z","updated_at":"2025-04-26T06:31:03.306Z","avatar_url":"https://github.com/JamesConlan96.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Proxcon\n\nA utility for quickly switching proxychains proxies\n\n## Usage\n\n**proxcon.py**\n\n```\nusage: proxcon.py [-h] {switch,temp,add,update,list,active,delete} ...\n\nA utility for quickly switching proxychains proxies\n\npositional arguments:\n  {switch,temp,add,update,list,active,delete}\n    switch              switch to a proxy definition\n    temp                switch to a temporary proxy definition\n    add                 add a proxy definition\n    update              update a proxy definition\n    list                list all proxy definitions\n    active              show active proxy definition\n    delete              delete a proxy definition\n\noptions:\n  -h, --help            show this help message and exit\n```\n\n**proxcon.py switch**\n\nSwitch to a proxy definition\n\n```\nusage: proxcon.py switch [-h] [-f FILE] [-b] name\n\npositional arguments:\n  name                  name of proxy definition\n\noptions:\n  -h, --help            show this help message and exit\n  -f FILE, --file FILE  proxychains configuration file to use (default: '/etc/proxychains4.conf')\n  -b, --batch           Suppresses warnings/prompts for use in scripts\n```\n\n**proxcon.py temp**\n\nSwitch to a temporary proxy definition\n\n```\nusage: proxcon.py temp [-h] -t {http,raw,socks4,socks5} -i IPV4 -p PORT [-u USER] [-P] [-f FILE]\n\noptions:\n  -h, --help            show this help message and exit\n  -t {http,raw,socks4,socks5}, --type {http,raw,socks4,socks5}\n                        proxy type\n  -i IPV4, --ipv4 IPV4  proxy server IPv4 address\n  -p PORT, --port PORT  proxy server port\n  -u USER, --user USER  username for proxy authentication\n  -P, --pass            a password is required to access the proxy\n  -f FILE, --file FILE  proxychains configuration file to use (default: '/etc/proxychains4.conf')\n```\n\n**proxcon.py add**\n\nAdd a proxy definition\n\n```\nusage: proxcon.py add [-h] -t {http,raw,socks4,socks5} -i IPV4 -p PORT [-u USER] [-P] [-f FILE] [-b] name\n\npositional arguments:\n  name                  name of proxy definition\n\noptions:\n  -h, --help            show this help message and exit\n  -t {http,raw,socks4,socks5}, --type {http,raw,socks4,socks5}\n                        proxy type\n  -i IPV4, --ipv4 IPV4  proxy server IPv4 address\n  -p PORT, --port PORT  proxy server port\n  -u USER, --user USER  username for proxy authentication\n  -P, --pass            a password is required to access the proxy\n  -f FILE, --file FILE  proxychains configuration file to use (default: '/etc/proxychains4.conf')\n  -b, --batch           Suppresses warnings/prompts for use in scripts\n```\n\n**proxcon.py update**\n\nUpdate a proxy definition\n\n```\nusage: proxcon.py update [-h] [-r RENAME] [-t {http,raw,socks4,socks5}] [-i IPV4] [-p PORT] [-u USER] [-P] [-f FILE] [-b] name\n\npositional arguments:\n  name                  name of proxy definition\n\noptions:\n  -h, --help            show this help message and exit\n  -r RENAME, --rename RENAME\n                        new name for proxy definition\n  -t {http,raw,socks4,socks5}, --type {http,raw,socks4,socks5}\n                        proxy type\n  -i IPV4, --ipv4 IPV4  proxy server IPv4 address\n  -p PORT, --port PORT  proxy server port\n  -u USER, --user USER  username for proxy authentication\n  -P, --pass            a password is required to access the proxy\n  -f FILE, --file FILE  proxychains configuration file to use (default: '/etc/proxychains4.conf')\n  -b, --batch           Suppresses warnings/prompts for use in scripts\n```\n\n**proxcon.py list**\n\nList all proxy definitions\n\n```\nusage: proxcon.py list [-h]\n\noptions:\n  -h, --help  show this help message and exit\n```\n\n**proxcon.py active**\n\nShow active proxy definition\n\n```\nusage: proxcon.py active [-h] [-f FILE]\n\noptions:\n  -h, --help            show this help message and exit\n  -f FILE, --file FILE  proxychains configuration file to use (default: '/etc/proxychains4.conf')\n```\n\n**proxcon.py delete**\n\nDelete a proxy definition\n\n```\nusage: proxcon.py delete [-h] [-b] name\n\npositional arguments:\n  name         name of proxy definition\n\noptions:\n  -h, --help   show this help message and exit\n  -b, --batch  Suppresses warnings/prompts for use in scripts\n```\n\n## Installation\n\nIt is recommended to install proxcon using pipx:\n\u003cpre\u003e\npipx install git+https://github.com/JamesConlan96/proxcon.git\n\u003c/pre\u003e\n\n## Requirements\n\nAll requirements can be installed by running the following command from within the proxconf directory:\n\n```\npip install -r requirements.txt\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamesconlan96%2Fproxcon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjamesconlan96%2Fproxcon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamesconlan96%2Fproxcon/lists"}