跳过正文
  1. Posts/

Android Proxy

·236 字·2 分钟· ·
XhstormR
作者
XhstormR
INTJ
目录

Updated on 2020-02-28

CA 证书(根证书)需要安装(导入)为系统证书(不是用户证书),才能解密应用SSL流量。

Tun2socks
#

Reference
#

Postern
#

[Proxy]
Proxy = https,192.168.1.4,8080

[Rule]
FINAL,Proxy

Shadowsocks
#

ss://YWVzLTI1Ni1nY206MTIzNDU2@192.168.1.4:1234

V2ray Config
#

{
    "log": {
        "loglevel": "warning"
    },
    "inbound": {
        "port": 1234,
        "listen": "192.168.1.4",
        "protocol": "shadowsocks",
        "settings": {
            "method": "aes-256-gcm",
            "password": "123456"
        }
    },
    "outbound": {
        "protocol": "http",
        "settings": {
            "servers": [
                {
                    "address": "127.0.0.1",
                    "port": 8080
                }
            ]
        }
    },
    "outboundDetour": [
        {
            "tag": "dns",
            "protocol": "freedom"
        }
    ],
    "routing": {
        "settings": {
            "rules": [
                {
                    "outboundTag": "dns",
                    "type": "field",
                    "port": "53"
                }
            ]
        }
    }
}

Clash
#

proxies:
    - { name: burp, type: http, server: 192.168.1.100, port: 8080 }

proxy-groups:
    - name: 手动
      type: select
      proxies:
          - burp
          - DIRECT

rules:
    - DOMAIN-SUFFIX,local,DIRECT
    - IP-CIDR,127.0.0.0/8,DIRECT,no-resolve
    - MATCH,手动

sing-box
#

{
    "log": {
        "level": "info"
    },
    "inbounds": [
        {
            "type": "tun",
            "address": ["172.19.0.1/30"],
            "auto_route": true,
            "strict_route": true
        }
    ],
    "outbounds": [
        {
            "tag": "自选",
            "type": "selector",
            "outbounds": ["burp", "直连"]
        },
        {
            "tag": "burp",
            "type": "http",
            "server": "192.168.100.2",
            "server_port": 8080
        },
        {
            "tag": "直连",
            "type": "direct"
        }
    ],
    "dns": {
        "strategy": "ipv4_only",
        "servers": [
            {
                "tag": "dns-local",
                "type": "https",
                "server": "223.5.5.5",
                "detour": "直连"
            }
        ]
    },
    "route": {
        "auto_detect_interface": true,
        "default_domain_resolver": "dns-local",
        "rules": [
            {
                "action": "sniff"
            },
            {
                "protocol": "dns",
                "action": "hijack-dns"
            },
            {
                "ip_is_private": true,
                "outbound": "直连"
            },
            {
                "clash_mode": "Direct",
                "outbound": "直连"
            },
            {
                "clash_mode": "Global",
                "outbound": "自选"
            }
        ]
    }
}

Reqable
#