Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function FindProxyForURL(url, host) {
  2.   host = host.toLowerCase();
  3.   if (dnsDomainIs(host, "ovh.com") ||
  4.       dnsDomainIs(host, "dsi.ovh") ||
  5.       dnsDomainIs(host, "config.ovh") ||
  6.           dnsDomainIs(host, "ovh.net") ||
  7.           dnsDomainIs(host, "ovhtelecom.fr") ||
  8.           dnsDomainIs(host, "plik.ovh") ||
  9.           dnsDomainIs(host, "quarksup.net") ||
  10.           dnsDomainIs(host, "go"))
  11.     return "SOCKS localhost:4242";
  12.  
  13.   return "DIRECT";
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement