At my school, this girl got youtube banned with dans-guardian by searching very offensive and inappropriate stuff on it, but i like to watch youtube during recess and lunch, and it helps me study, which is really helpful since i don't have a lot of time at home.
If this is my proxy.pac, how do i unban youtube? If this is even where it is blocked from.
function FindProxyForURL(url, host){
var lhost = host.toLowerCase();
host = lhost;
var lurl = url.toLowerCase();
url = lurl;
var proxy = "PROXY e4054s01sv002.green.schools.internal:8080";
if ((isPlainHostName(host)) ||
(shExpMatch(host, "localhost.*")) ||
(host == "127.0.0.1"))
{
return "DIRECT"
}
if (shExpMatch(host,"portal.det.wa.edu.au") ||
shExpMatch(host,"*.schools.internal") ||
shExpMatch(host,"moodle.rockingham.wa.edu.au") ||
shExpMatch(host,"e4054s01sv*")
)
{
return "DIRECT";
}
var hostip = dnsResolve(host);
if ((isInNet(hostip, "10.1.0.0", "255.255.0.0")) ||
(isInNet(hostip, "10.25.0.0", "255.255.0.0"))||
(isInNet(hostip, "10.237.0.0", "255.255.0.0")) ||
(isInNet(hostip, "10.236.0.0", "255.255.0.0")))
{
return "DIRECT";
}
if ((url.substring(0,4) == "ftp:") ||
(url.substring(0,5) == "http:") ||
(url.substring(0,6) == "https:"))
{
return proxy;
} else {
return "DIRECT";
}
}
if this is not where it is blocked from, where might it be blocked from?