{"id":44477144,"url":"https://github.com/cdpdriver/kdriver-proxy","last_synced_at":"2026-02-12T22:36:32.621Z","repository":{"id":296747678,"uuid":"994374917","full_name":"cdpdriver/kdriver-proxy","owner":"cdpdriver","description":"A lightweight SOCKS5 proxy server written in pure Kotlin. It allows you to create local SOCKS5 proxy endpoints that forward traffic through a remote HTTPS proxy with optional authentication.","archived":false,"fork":false,"pushed_at":"2025-11-09T09:37:11.000Z","size":76,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-09T11:27:26.813Z","etag":null,"topics":["http","kotlin","proxy","sock5","sock5-proxy-server"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cdpdriver.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["guimauvedigital","nathanfallet"]}},"created_at":"2025-06-01T19:58:08.000Z","updated_at":"2025-11-09T09:37:14.000Z","dependencies_parsed_at":"2025-07-11T16:58:53.311Z","dependency_job_id":"7251e8c3-d928-4c97-8ced-dd0e548409ac","html_url":"https://github.com/cdpdriver/kdriver-proxy","commit_stats":null,"previous_names":["guimauvedigital/koxxy","cdpdriver/koxxy","cdpdriver/kdriver-proxy"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cdpdriver/kdriver-proxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdpdriver%2Fkdriver-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdpdriver%2Fkdriver-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdpdriver%2Fkdriver-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdpdriver%2Fkdriver-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cdpdriver","download_url":"https://codeload.github.com/cdpdriver/kdriver-proxy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdpdriver%2Fkdriver-proxy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29384081,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T22:07:52.078Z","status":"ssl_error","status_checked_at":"2026-02-12T22:07:49.026Z","response_time":55,"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":["http","kotlin","proxy","sock5","sock5-proxy-server"],"created_at":"2026-02-12T22:36:30.820Z","updated_at":"2026-02-12T22:36:32.616Z","avatar_url":"https://github.com/cdpdriver.png","language":"Kotlin","funding_links":["https://github.com/sponsors/guimauvedigital","https://github.com/sponsors/nathanfallet"],"categories":[],"sub_categories":[],"readme":"# kdriver-proxy\n\n[![License](https://img.shields.io/github/license/cdpdriver/kdriver-proxy)](LICENSE)\n[![Maven Central Version](https://img.shields.io/maven-central/v/dev.kdriver/proxy)](https://klibs.io/project/cdpdriver/kdriver-proxy)\n[![Issues](https://img.shields.io/github/issues/cdpdriver/kdriver-proxy)]()\n[![Pull Requests](https://img.shields.io/github/issues-pr/cdpdriver/kdriver-proxy)]()\n[![codecov](https://codecov.io/github/cdpdriver/kdriver-proxy/branch/main/graph/badge.svg?token=F7K641TYFZ)](https://codecov.io/github/cdpdriver/kdriver-proxy)\n[![CodeFactor](https://www.codefactor.io/repository/github/cdpdriver/kdriver-proxy/badge)](https://www.codefactor.io/repository/github/cdpdriver/kdriver-proxy)\n[![Open Source Helpers](https://www.codetriage.com/cdpdriver/kdriver-proxy/badges/users.svg)](https://www.codetriage.com/cdpdriver/kdriver-proxy)\n\nA lightweight SOCKS5 proxy server written in pure Kotlin. It allows you to create local SOCKS5\nproxy endpoints that forward traffic through a remote HTTPS proxy with optional authentication.\n\nIdeal for Kotlin applications needing dynamic local proxies without relying on external binaries\nlike [Gost](https://github.com/go-gost/gost), especially on platforms like Windows.\n\nIt's perfect for use with [KDriver](https://github.com/cdpdriver/kdriver).\n\n## 📦 Installation\n\nAdd the dependency to your `build.gradle.kts`:\n\n```kotlin\ndependencies {\n    implementation(\"dev.kdriver:proxy:0.1.0\")\n}\n```\n\n## 🚀 Features\n\n* Start a local SOCKS5 proxy on any port\n* Forward all traffic through a remote HTTPS proxy (with optional auth)\n* Run multiple proxies in parallel\n* Fully coroutine-based (non-blocking)\n* Pure Kotlin (JVM)\n\n## 🧪 Usage\n\n### Start a Proxy\n\n```kotlin\nval startUseCase = StartLocalProxyUseCase()\nstartUseCase(1080, Proxy(URI(\"https://your-remote-proxy.com:443\"), \"yourUsername\", \"yourPassword\"))\n```\n\nNow you can connect to: `socks5://localhost:1080`\nYour traffic will go through the remote proxy with authentication.\n\n### Stop a Proxy\n\n```kotlin\nval stopUseCase = StopLocalProxyUseCase()\nstopUseCase(1080)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdpdriver%2Fkdriver-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcdpdriver%2Fkdriver-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdpdriver%2Fkdriver-proxy/lists"}