anyproxy
another proxy written in NodeJS, which can handle HTTPS requests and CORS perfectly. Produced by Alipay-ct-wd.
Feature
- work as http or https proxy
- generate and intercept https requests for any domain without complaint by browser (after you trust its root CA)
- support CORS-related http header, you could use make cross-domain requests via this proxy
- can be used globally or as a nodejs module
Why we write another proxy
To perfectly support https proxy
While there are lots of proxy written by nodejs in github, most of them can not handle users' HTTPS requests perfectly. A typical problem is that the browser will throw warning like INVALID_CERTIFICATE when they want to intercept some https requests.
A simple and fast solution is to short the traffic between the user and the target server. That is to say, what the proxy do is to forward all the traffic of both sides, without intercepting or looking inside.
This is useful when you want to establish a standard proxy and forwarding data. But this can also be useless when being used as a debug tool.
To work as a debug tool of HTTPS, the proxy itself should do two things: intercept the request and cheat the browser with a valid certificate,aka the man-in-the-middle(MITM) attack.
In order to have a browser-trusted certificate, we would sign certificates dynamically. The first thing to do is to generate a self-signed root CA and import to the system keychain. After trusting this CA, all child certs inherit from root CA can be naturally trusted by the browser.
What this proxy do is to generate and replace a temporary cert for any domain if neccessary. Using it, we can intercept any requests for debug. BTW, this is also what the charlse/fiddler do when you check the enable_ssl_proxy in preference.
To support cross-domain requests
By properly responding HTTP OPTIONS request and Access-Control-Allow-* headers on server side, we can perform cross-domain requests in modern browsers. Anyproxy will automatically handle these things for you, no matter the remote server supports or not. This can be extremely useful for those who often debug webpages embedded in a special browser.
Usage
step 0 - setup env
step 1 - install
npm install -g anyproxy
, may require sudo
step 2 - start server
- start with default settings :
anyproxy
- start with a specific port:
anyproxy --port 8001
Using https features
install openssl
- install openssl ,if you want to use HTTPS-related features. After that, the command
openssl
should be exposed to your shell
generate a rootCA and trust it
- you should do this when it is the first time to start anyproxy
- execute
anyproxy --root
,follow the instructions on screen - you will see some tip like rootCA generated at : /usr/lib... .
cd
to that directory, add/trust the rootCA.crt file to your system keychain. In OSX, you may do that by open the *crt file directly
start a https proxy
anyproxy --type https --host my.domain.com
- the param
host
is required with https proxy and it should be kept exactly what it it when you config your browser. Otherwise, you may get some warning about security.
others
work as a module
npm install anyproxy
var proxy = require("anyproxy");
!proxy.isRootCAFileExists() && proxy.generateRootCA();
new proxy.proxyServer("http","8001", "localhost" ,"path/to/rule/file");
clear all the temperary certificates
map file to local
anyproxy --rule /path/to/ruleFile.js
- actually ruleFile.js is a module for Nodejs
- a sample schema of ruls.js is as follows
var rules = {
"map" :[
{
"host" :/./,
"path" :/\/path\/test/,
"localFile" :"",
"localDir" :"~/"
}
,{
"host" :/./,
"path" :/\.(png|gif|jpg|jpeg)/,
"localFile" :"/Users/Stella/tmp/test.png",
"localDir" :"~/"
}
]
,"httpsConfig":{
"bypassAll" : false,
"interceptDomains":[/www\.a\.com/,/www\.b\.com/]
}
}
module.exports = rules;
Contact