All Projects → purkylin → KingProxy

purkylin / KingProxy

Licence: MIT license
A proxy like privoxy and antinat

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to KingProxy

Lightsocks Python
⚡️一个轻巧的网络混淆代理🌏
Stars: ✭ 235 (+535.14%)
Mutual labels:  socks
privoxy-windows
A windows port of Privoxy project
Stars: ✭ 15 (-59.46%)
Mutual labels:  socks
arch-privoxyvpn
Docker build script for Arch Linux base with Privoxy and OpenVPN
Stars: ✭ 55 (+48.65%)
Mutual labels:  socks
DDos-Attack-OVH-
Powerful DDoS Attack
Stars: ✭ 155 (+318.92%)
Mutual labels:  socks
socks5-proxy
Socks5 Proxy with Go Lang. support USER_ID/PASSWORD. able to bypass HTTPS(SNI) censorship
Stars: ✭ 29 (-21.62%)
Mutual labels:  socks
tlstun
A socks tunnel client and server using websockets over http and tls
Stars: ✭ 36 (-2.7%)
Mutual labels:  socks
Tor Socks Proxy
🐳 Tiny Docker(🤏 10MB) image as 🧅 Tor SOCKS5 proxy 🛡
Stars: ✭ 218 (+489.19%)
Mutual labels:  socks
asyncio-socks-server
A SOCKS proxy server implemented with the powerful python cooperative concurrency framework asyncio.
Stars: ✭ 154 (+316.22%)
Mutual labels:  socks
microsocks11
A cross-platform SOCKS5 library and server based on the microsocks project.
Stars: ✭ 22 (-40.54%)
Mutual labels:  socks
Socks5
A full-fledged high-performance socks5 proxy server written in C#. Plugin support included.
Stars: ✭ 331 (+794.59%)
Mutual labels:  socks
sx
🖖 Fast, modern, easy-to-use network scanner
Stars: ✭ 1,267 (+3324.32%)
Mutual labels:  socks
Prox5
🧮 SOCKS5/4/4a 🌾 validating proxy pool and upstream SOCKS5 server for 🤽 LOLXDsoRANDum connections 🎋
Stars: ✭ 39 (+5.41%)
Mutual labels:  socks
python-socks
Core proxy client (SOCKS4, SOCKS5, HTTP) functionality for Python
Stars: ✭ 40 (+8.11%)
Mutual labels:  socks
Socks5 Http Client
SOCKS v5 HTTP client implementation in JavaScript for Node.js.
Stars: ✭ 253 (+583.78%)
Mutual labels:  socks
auto-change-tor-ip
Automatically change tor ip address over time when accessing the internet. Make it private and safe for you
Stars: ✭ 29 (-21.62%)
Mutual labels:  socks
Proxybroker
Proxy [Finder | Checker | Server]. HTTP(S) & SOCKS 🎭
Stars: ✭ 2,767 (+7378.38%)
Mutual labels:  socks
rpc2socks
Post-exploit tool that enables a SOCKS tunnel via a Windows host using an extensible custom RPC proto over SMB through a named pipe.
Stars: ✭ 126 (+240.54%)
Mutual labels:  socks
soxy-driver
A docker networking driver that transparently tunnels docker containers TCP traffic through a proxy
Stars: ✭ 25 (-32.43%)
Mutual labels:  socks
greentunnel4jvm
Green Tunnel Alternative for JVM Languages
Stars: ✭ 15 (-59.46%)
Mutual labels:  socks
Pshell
ICMP/IP tunnel manager for Linux.
Stars: ✭ 24 (-35.14%)
Mutual labels:  socks

DEPRECATED (Use new library nio-proxy)

KingProxy

Join the chat at https://telegram.me/NEKitGroup Carthage compatible GitHub license

Feature

  • Http(s) proxy
  • Forward http to socks5 proxy
  • Forward socks to another sub socks proxy
  • Partial support surge rule
  • DNS server

Requirement

  • Swift5
  • Xcode9
  • iOS 10.0/macOS 10.12
  • Manual download GeoLite2-Country.mmdb file

Usage

ACL.shared?.load(configFile: "your config file")

// http
httpProxy = KingHttpProxy()
httpProxy.forwardProxy = ForwardProxy(type: .socks5, host: "127.0.0.1", port: 8899)
_ = httpProxy.start(on: 8899)

// socks
socksProxy = KingSocksProxy()
socksProxy.forwardProxy = ForwardProxy(type: .socks5, host: "127.0.0.1", port: 8899)
_ = socksProxy.start() // Select a free port

// dns
dnsServer = DNSServer()
dnsServer.start(on: 53)

Install

  • Carthage github "purkylin/KingProxy" "master"

TODO

  • Stable api
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].