Quote:
Originally Posted by slopsbox
If you are using firefox - Install the Modify Headers addon
- In Firefox, Go to "Tools" -> "Modify headers"
- From the drop-down box on the left select "Add"
- Then enter: "X-Forwarded-For" in the first input box (without quotes)
- Enter an american IP address in the second input box (without quotes) for accessing a US web-site
- Leave the last input box empty, save the filter, and enable it
- Click the "Configuration" tab on the right then proceed to check the "Always on" button.
- Close the Modify Headers box and it should work.
|
If this doesn't work for you, block TCP and UDP traffic coming through port 1935.
In Linux run the following in the Terminal:
Code:
iptables -A INPUT -p tcp --dport 1935 -j DROP
iptables -A INPUT -p udp --dport 1935 -j DROP
In Mac OS run the following in the Terminal:
Code:
sudo ipfw add 0 deny tcp from any to any 1935
sudo ipfw add 0 deny udp from any to any 1935
In Windows XP, 2003 run the following in the command prompt:
Code:
IPSeccmd.exe -w REG -p "Block UDP 1935 Filter" -r "Block Inbound UDP 1935 Rule" -f *=0:1935:UDP -n BLOCK -x
IPSeccmd.exe -w REG -p "Block TCP 1935 Filter" -r "Block Inbound TCP 1935 Rule" -f *=0:1935:TCP -n BLOCK -x
To verify the successful assignment of your filtering rule, set the working folder to C:\Program Files\Support Tools at the command prompt, and then type the following command:
Code:
netdiag /test:ipsec /debug
See
http://support.microsoft.com/kb/813878 for more.