├── .gitignore ├── LICENSE ├── README.md ├── config.js ├── index.js ├── package.json ├── rewriter.js ├── tests ├── contentrewrite.html ├── httpsrewriter.js └── proxy.js └── tools └── fetchrules.sh /.gitignore: -------------------------------------------------------------------------------- 1 | httpse.rulesets 2 | .*.swp 3 | node_modules/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equalitie/HTTPS-Proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equalitie/HTTPS-Proxy/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equalitie/HTTPS-Proxy/HEAD/config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equalitie/HTTPS-Proxy/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equalitie/HTTPS-Proxy/HEAD/package.json -------------------------------------------------------------------------------- /rewriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equalitie/HTTPS-Proxy/HEAD/rewriter.js -------------------------------------------------------------------------------- /tests/contentrewrite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equalitie/HTTPS-Proxy/HEAD/tests/contentrewrite.html -------------------------------------------------------------------------------- /tests/httpsrewriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equalitie/HTTPS-Proxy/HEAD/tests/httpsrewriter.js -------------------------------------------------------------------------------- /tests/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equalitie/HTTPS-Proxy/HEAD/tests/proxy.js -------------------------------------------------------------------------------- /tools/fetchrules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equalitie/HTTPS-Proxy/HEAD/tools/fetchrules.sh --------------------------------------------------------------------------------