Advertisement
McMrARM

I2P PAC Script

May 7th, 2018
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. //I2P PAC Script
  2. //WARNING: Using this can reveal your IP Address if the site were to make a WWW call.
  3.  
  4. function FindProxyForURL(url, host) {
  5. if (dnsDomainIs(host, ".i2p")) {
  6. return "PROXY localhost:4444";
  7. } else {
  8. return "DIRECT";
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement