Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Twitter is now blocked in Egypt , I have domain and I want to bypass throw it is there a way?

Twitter is now blocked in Egypt , I have domain and I want to bypass throw it is there a way ?

like image 686
Ismail Marmoush Avatar asked Jan 24 '26 05:01

Ismail Marmoush


1 Answers

The general mechanism is to set up a local proxy on your machine in Egypt. This proxy connects through secure channel to a safe host (or hosts) that route your http/dns traffic to Internet. In order to use the local proxy instead of direct connections, you have to set up your web browser.

There are essentially two alternatives for this scheme: either you use ssh client as a proxy and your domain; or you use tor and their distributed network of proxies.

SSH If your blocked machine runs linux: start a local SOCKS proxy which is now a part of a standard ssh client by running in standard terminal: ssh -D 12345 your_username@yourdomain_outside_Egypt.net (where 12345 is the local port number)

Then configure firefox to use the tunnel: go to about:config and set:

  • network.proxy.socks -> 127.0.0.1 (localhost doesn't work)
  • network.proxy.socks_port -> 12345
  • network.proxy.socks_remote_dns -> true (dns connections also use proxy)
  • network.proxy.type 0

TOR A safer alternative is to use onion-routing that essentially does the same thing on your machine (you've got a proxy and an encrypted connection to somewhere outside); but then the target machine changes dynamically. See e.g. tor project

like image 159
ang mo Avatar answered Jan 26 '26 05:01

ang mo