Skip to content

v1.2.0

Latest
Compare
Choose a tag to compare
@jayluxferro jayluxferro released this 07 Sep 15:59
d43341f

This update supports two proxy protocol types: HTTP and SOCKS5. By default, if the protocol is not specified, HTTP is assumed.

Supported Input Formats

The application can parse and handle various proxy configurations in the following formats:

  1. IP Address and Port Only (HTTP is assumed by default):

    • Example: 10.10.10.1:8080
  2. Explicit HTTP Protocol:

    • Example: http://10.10.10.1:8080
  3. Explicit SOCKS5 Protocol:

    • Example: socks5://10.10.10.1:8080
  4. HTTP with Username and Password:

  5. SOCKS5 with Username and Password:

Examples of Supported Inputs

Input Format Protocol Type
10.10.10.1:8080 HTTP (default)
http://10.10.10.1:8080 HTTP
socks5://10.10.10.1:8080 SOCKS5
http://username:[email protected]:8080 HTTP
socks5://username:[email protected]:8080 SOCKS5