proxy-server

Solid

Expert skill for proxy server implementation, configuration, and traffic interception

AI & Automation 1,160 stars 71 forks Updated today MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
97
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Proxy Server Skill Expert skill for proxy server implementation, configuration, and network traffic interception. ## Capabilities - **Proxy Configuration**: Configure Squid, mitmproxy, Charles, and nginx proxy - **HTTP CONNECT Tunneling**: Implement HTTP CONNECT for HTTPS tunneling - **SOCKS Protocol**: Configure SOCKS4/SOCKS5 proxy servers - **Transparent Proxying**: Implement transparent proxying with iptables/nftables - **Traffic Analysis**: Analyze proxy traffic and generate reports - **Debugging**: Debug proxy connection issues and SSL/TLS interception - **PAC File Generation**: Generate Proxy Auto-Configuration (PAC) files - **Caching**: Configure proxy caching strategies ## Tools and Dependencies - `Squid` - Caching proxy server - `mitmproxy` - Interactive HTTPS proxy - `nginx` - HTTP and reverse proxy - `iptables/nftables` - Linux firewall for transparent proxy - `Charles` - HTTP proxy/monitor - `tinyproxy` - Lightweight proxy ## Target Processes - http-proxy-server.js - socks5-proxy.js - transparent-proxy.js ## Usage Examples ### Squid HTTP Proxy Configuration ```squid http_port 3128 acl localnet src 10.0.0.0/8 http_access allow localnet cache_dir ufs /var/spool/squid 10000 16 256 ``` ### Transparent Proxy with iptables ```bash iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3128 iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 443 -j REDIRECT --to-port 3129 ``` ### mitmproxy Interception ```bash mitmproxy -p 8080 --mode...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

proxy

代理服务器配置

1 Updated today
ryukyagamilight
AI & Automation Solid

load-balancer

Expert skill for load balancer configuration, algorithms, and high availability design

1,160 Updated today
a5c-ai
AI & Automation Listed

proxychains

Auto-detect network issues and force proxy usage with proxychains4. Use this skill when encountering connection timeouts, DNS failures, or blocked network access. Default proxy is http://127.0.0.1:9910

335 Updated today
aiskillstore
API & Backend Solid

api-mitmproxy

Interactive HTTPS proxy for API security testing with traffic interception, modification, and replay capabilities. Supports HTTP/1, HTTP/2, HTTP/3, WebSockets, and TLS-protected protocols. Includes Python scripting API for automation and multiple interfaces (console, web, CLI). Use when: (1) Intercepting and analyzing API traffic for security testing, (2) Modifying HTTP/HTTPS requests and responses to test API behavior, (3) Recording and replaying API traffic for testing, (4) Debugging mobile app or thick client API communications, (5) Automating API security tests with Python scripts, (6) Exporting traffic in HAR format for analysis.

335 Updated today
aiskillstore
AI & Automation Solid

network-performance

Expert skill for network performance analysis and optimization. Analyze packet captures, identify network latency bottlenecks, configure TCP tuning parameters, analyze connection pooling behavior, debug TLS handshake performance, and optimize HTTP/2 and HTTP/3 settings.

1,160 Updated today
a5c-ai