Skip to content

An example of local HTTP proxy server for bypassing blocking of sites in Russia

Notifications You must be signed in to change notification settings

azlotnikov/roskomproxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RoskomProxy

GitHub go.mod Go version

RoskomProxy is an example of local HTTP proxy server for bypassing blocking of sites in Russia. Works only for blocked by domain name (such as instagram.com, facebook.com, meduza.io).

The main idea is to use custom DNS server and remove server_name (SNI) TLS extension from TLS client hello.

Usage

Launch

  • Build project go build -o roskomproxy
  • Launch with Google DNS ./roskomproxy --cert server.crt --key server.key --dns 8.8.8.8 --port 8080

Curl

  • curl -k -vvv https://www.instagram.com/ -x 127.0.0.1:8080 --compressed

macOS Safari

  • Install server.crt (or generate your own crt/key) to Keychain
  • Set Always trust for this certificate
  • In the internet connection settings turn on HTTPS proxy 127.0.0.1, 8080
  • Open Safari and try to open https://facebook.com/

About

An example of local HTTP proxy server for bypassing blocking of sites in Russia

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages