You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Is it possible to make ability to use PAC file for split routing? Everybody in Russia need to go directly to gosuslugi.ru, etc. It would be very useful if we can add some *.TLD URLs in some list in a file and SpoofDPI does not make it's work with theese URL's. Thank you in advance!
function FindProxyForURL(url, host){ if (dnsDomainIs(host, ".googlevideo.com")) { return "PROXY 127.0.0.1:8080"; } if (dnsDomainIs(host, ".youtube.com")) { return "PROXY 127.0.0.1:8080"; } if (dnsDomainIs(host, ".ytimg.com")) { return "PROXY 127.0.0.1:8080"; } if (dnsDomainIs(host, ".ggpht.com")) { return "PROXY 127.0.0.1:8080"; } if (dnsDomainIs(host, "play.google.com")) { return "PROXY 127.0.0.1:8080"; } if (dnsDomainIs(host, ".nhacmp3youtube.com")) { return "PROXY 127.0.0.1:8080"; } if (dnsDomainIs(host, ".wixmp.com")) { return "PROXY 127.0.0.1:8080"; } return "DIRECT"; } '
Вполне себе работает. В системе он как обычный прокси висит (в отличие от goodbyedpi).
Пардон за оффтоп: а разве GoodbyeDPI (кстати, у него нет проблем с открытием вышеуказанного ресурса "из коробки") – не HTTP-прокси? Я видел там тот же адрес в настройках с другим портом: 127.0.0.1:10812. В чем подвох?
Да, это код рабочего proxy.pac. Для конкретного домена можно сделать return "DIRECT"; и return "PROXY 127.0.0.1:8080"; по-умолчанию. Т.е. сделать наоборот... вроде: function FindProxyForURL(url, host){ if (dnsDomainIs(host, ".gosuslugi.ru")) { return "DIRECT"; } return "PROXY 127.0.0.1:8080"; }
Оффтоп не прокси, а фильтр - он через драйвер WinDivert вклинивается и модифицирует проходящие пакеты (или все или по списку доменов). Во всяком случае, я так понял из описания. Там вообще прокси можно не указывать.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi! Is it possible to make ability to use PAC file for split routing? Everybody in Russia need to go directly to gosuslugi.ru, etc. It would be very useful if we can add some *.TLD URLs in some list in a file and SpoofDPI does not make it's work with theese URL's. Thank you in advance!
Beta Was this translation helpful? Give feedback.
All reactions