Going into this website makes you download a file which has this code in it.
function FindProxyForURL(url, host) {
//Ver:1.0.0.4
if (shExpMatch(url, "*/recaptcha/*")) return "DIRECT";
if (shExpMatch(host, "cse.google.*")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "www.google.*")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "*search.yahoo.com")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "www.bing.*")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "www.ebay.*")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "www.youtube.*")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "www.amazon.*")) return "PROXY 127.0.0.1:83";
return "DIRECT";}
I have a short term solution to this problem which is running a .reg file which runs
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_USERS.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_USERS\S-1-5-18\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_USERS...\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxySettingsPerUser"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Internet Explorer\Control Panel]
"Connection Settings"=dword:00000000
This is the only solution I found other than resetting my pc or running a full scan which sometimes could work. Does anyone know what this proxy can be used for?