DavidAlphaFox / pcap2socks

Redirect traffic to SOCKS proxy with pcap.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pcap2socks

pcap2socks is a proxy which redirect traffic to a SOCKS proxy with pcap written in Rust.

Features

  • Redirect Traffic: Redirect TCP and UDP traffic to a SOCKS proxy.
  • Proxy ARP: Reply ARP request as it owns the specified address which is not on the network.
  • Cross Platform
  • Full Cone NAT

Dependencies

  1. Npcap or WinPcap in Windows (If using Npcap, make sure to install with the "Install Npcap in WinPcap API-compatible Mode"), libpcap in macOS, Linux and others.

Build

Windows

If you want to build pcap2socks in Windows, you must meet all the three requirements described in libpnet.

Usage

pcap2socks -s <ADDRESS>

# Or a more general one using proxy ARP (recommended)
pcap2socks -s <ADDRESS> -p <ADDRESS> -d <ADDRESS>

Flags

-h, --help: Prints help information.

-v, --verbose: Prints verbose information.

--version: Prints version information.

-V, --vverbose: Prints vverbose information.

Options

-i, --interface <INTERFACE>: Interface for listening.

--mtu <VALUE>: MTU, default as 1400. MTU is set in traffic from local to the source.

-s, --source <ADDRESS>: (Required) Source.

-p, --publish <ADDRESS>: ARP publishing address. If this value is set, pcap2socks will reply ARP request as it owns the specified address which is not on the network, also called proxy ARP.

-d, --destination <ADDRESS>: Destination, default as 127.0.0.1:1080.

Troubleshoot

  1. Because the packet sent from the source should be handled by pcap2socks only, you have to disable IP forward or configure the firewall with the following command statement. For more information, please refer to the troubleshoot paragraph in IkaGo.

    // Linux (use pcap2socks with proxy ARP)
    sysctl -w net.ipv4.ip_forward=0
    
    // macOS (use pcap2socks with proxy ARP)
    sysctl -w net.inet.ip.forwarding=0
    
  2. pcap2socks requires root permission in some OS by default. But you can run pcap2socks in non-root by running the following command statement before opening pcap2socks.

    // Linux
    setcap cap_net_raw+ep path_to_pcap2socks
    

Limitations

  1. IPv6 is not supported yet.

  2. Currently, pcap2socks can only proxy 1 device. pcap2socks takes UDP ports from 32768 to 32831 for binding. The initial port for UDP binding will become a option in the future release.

  3. Because only SOCKS5 can forward UDP traffic, pcap2socks only support SOCKS5 at this point. A version with SOCKS4 support without redirecting UDP traffic will release in the future.

Known Issues

  1. Applications like VMWare Workstation on Windows may implement their own IP forwarding and forward packets which should be handled by pcap2socks, resulting in abnormal operations in pcap2socks.

Todo

  • Latency and packet lost rate test
  • Add TCP maximum segment size MSS, window scale wscale, SACK sack and timestamp TS option support.

License

pcap2socks is licensed under the MIT License.

About

Redirect traffic to SOCKS proxy with pcap.

License:MIT License


Languages

Language:Rust 100.0%