diff --git a/README.md b/README.md index fb6ddc5..067ff41 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Although we strive to maintain a high quality of filtering primarily through rul ## What AdGuard applications use these filtering lists? -Currently, they apply to AdGuard for Android. +Currently, they apply to AdGuard for Android and AdGuard for Windows. ## How do these lists get updated in the AdGuard apps? @@ -77,3 +77,27 @@ Here’s a simple steps to help you sort things out. - [`ipv4_routes_exclusions_fujitsu.txt`](android/routes_exclusions/ipv4_routes_exclusions_fujitsu.txt) - A list of IPv4 ranges excluded from routing on problematic devices. This list applies on Fujitsu devices: F-01J, F-01K, F-01L, F-02H, F-03H, F-03K, F-04H, F-04K. - [`ipv6_routes_exclusions.txt`](android/routes_exclusions/ipv6_routes_exclusions.txt) - A list of IPv6 ranges excluded from routing. + +## Compatibility configuration for AdGuard for Windows + +- [`http_filtering_exclusions_apps.json`](windows/http_filtering_exclusions_apps.json) - A list of app executables where traffic filtering is disabled (App Management -> Filter traffic). + +- [`route_exclusions_apps.json`](windows/route_exclusions_apps.json) - A list of app executables where routing through AdGuard is disabled (App Management -> Route traffic through AdGuard). + +- [`browsers.json`](windows/browsers.json) - A list of browsers where HTTPS traffic filtering is enabled by default (App Management -> Filter HTTPS traffic). + +- [`https_filtering_apps.json`](windows/https_filtering_apps.json) - A list of non-browser apps where HTTPS traffic filtering is enabled by default (App Management -> Filter HTTPS traffic). + +### Application model structure + +Each application entry in the JSON files uses the following structure: + +- `name` - Application or browser display name +- `file_description` - File description (optional, can be empty) +- `executable_names` - Array of executable file names associated with the application +- `installed_conditions` - Array of conditions to detect if the application is installed. Each condition has: + - `type` - Type of condition: `"RegistryKey"` or `"FilePath"` + - `pattern` - Registry key path or file path pattern (supports environment variables like `%LOCALAPPDATA%`, `%PROGRAMFILES%`, etc.) +- `public_issue_url` - Link to the public GitHub issue (optional) +- `private_issue_id` - Internal issue ID (optional) + diff --git a/windows/browsers.json b/windows/browsers.json new file mode 100644 index 0000000..f765f8c --- /dev/null +++ b/windows/browsers.json @@ -0,0 +1,942 @@ +[ + { + "name": "Google Chrome", + "file_description": "Google Chrome", + "executable_names": [ + "chrome.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Google Chrome" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Google Chrome" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Google\\Chrome SxS\\Application\\chrome.exe" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Google\\Chrome" + } + ] + }, + { + "name": "Chromium", + "file_description": "Chromium", + "executable_names": [ + "chrome.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Chromium" + } + ] + }, + { + "name": "Mozilla Firefox", + "file_description": "Firefox", + "executable_names": [ + "firefox.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Mozilla Firefox" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Nightly" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Mozilla\\Firefox Developer Edition" + }, + { + "type": "FilePath", + "pattern": "%APPDATA%\\Mozilla\\Firefox" + } + ] + }, + { + "name": "Internet Explorer", + "file_description": "", + "executable_names": [ + "iexplore.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%ProgramFiles%\\Internet Explorer\\iexplore.exe" + } + ] + }, + { + "name": "Safari", + "file_description": "", + "executable_names": [ + "safari.exe", + "webkit2webprocess.exe" + ], + "installed_conditions": [] + }, + { + "name": "Opera", + "file_description": "", + "executable_names": [ + "opera.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Opera" + }, + { + "type": "FilePath", + "pattern": "%APPDATA%\\Opera Software\\Opera Stable" + } + ] + }, + { + "name": "Microsoft Edge Legacy", + "file_description": "", + "executable_names": [ + "microsoftedgecp.exe", + "microsoftedge.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%WINDIR%\\SystemApps\\Microsoft.MicrosoftEdge_8wekyb3d8bbwe" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Microsoft\\Edge\\Application" + } + ] + }, + { + "name": "Microsoft Edge", + "file_description": "", + "executable_names": [ + "msedge.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%PROGRAMFILES%\\Microsoft\\Edge Beta\\Application" + }, + { + "type": "FilePath", + "pattern": "%PROGRAMFILES(x86)%\\Microsoft\\Edge Beta\\Application" + }, + { + "type": "FilePath", + "pattern": "%PROGRAMFILES%\\Microsoft\\Edge Dev\\Application" + }, + { + "type": "FilePath", + "pattern": "%PROGRAMFILES%\\Microsoft\\Edge\\Application" + }, + { + "type": "FilePath", + "pattern": "%PROGRAMFILES(x86)%\\Microsoft\\Edge Dev\\Application" + }, + { + "type": "FilePath", + "pattern": "%PROGRAMFILES(x86)%\\Microsoft\\Edge\\Application" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Microsoft\\Edge SxS\\Application" + } + ] + }, + { + "name": "Maxthon", + "file_description": "", + "executable_names": [ + "maxthon.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Maxthon" + } + ] + }, + { + "name": "Yandex with voice assistant Alice", + "file_description": "Yandex with voice assistant Alice", + "executable_names": [ + "browser.exe", + "yabrowser.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Yandex\\YandexBrowser\\Application\\browser.exe" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\YandexBrowserService" + } + ] + }, + { + "name": "Sputnik", + "file_description": "Sputnik", + "executable_names": [ + "browser.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Sputnik\\Sputnik\\Application\\browser.exe" + } + ] + }, + { + "name": "Avira Scout", + "file_description": "", + "executable_names": [ + "Avira-Scout.exe" + ], + "installed_conditions": [] + }, + { + "name": "Netscape Navigator", + "file_description": "", + "executable_names": [ + "netscape.exe" + ], + "installed_conditions": [] + }, + { + "name": "Flock", + "file_description": "", + "executable_names": [ + "flock.exe" + ], + "installed_conditions": [] + }, + { + "name": "SRWare Iron", + "file_description": "SRWare Iron", + "executable_names": [ + "chrome.exe", + "iron.exe" + ], + "installed_conditions": [] + }, + { + "name": "Lunascape", + "file_description": "", + "executable_names": [ + "lunascape.exe" + ], + "installed_conditions": [] + }, + { + "name": "K-Meleon", + "file_description": "", + "executable_names": [ + "kmeleon.exe", + "k-meleon.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\K-Meleon" + } + ] + }, + { + "name": "GreenBrowser", + "file_description": "", + "executable_names": [ + "greenbrowser.exe" + ], + "installed_conditions": [] + }, + { + "name": "Orca", + "file_description": "", + "executable_names": [ + "orca.exe" + ], + "installed_conditions": [] + }, + { + "name": "MyIE", + "file_description": "", + "executable_names": [ + "myie.exe" + ], + "installed_conditions": [] + }, + { + "name": "Comodo Dragon", + "file_description": "", + "executable_names": [ + "dragon.exe" + ], + "installed_conditions": [] + }, + { + "name": "Chromodo", + "file_description": "", + "executable_names": [ + "chromodo.exe" + ], + "installed_conditions": [] + }, + { + "name": "SeaMonkey", + "file_description": "", + "executable_names": [ + "seamonkey.exe" + ], + "installed_conditions": [] + }, + { + "name": "Pale Moon", + "file_description": "", + "executable_names": [ + "palemoon.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Pale Moon" + }, + { + "type": "FilePath", + "pattern": "%PROGRAMFILES%\\Pale Moon\\palemoon.exe" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\PaleMoonURL" + } + ] + }, + { + "name": "Avant", + "file_description": "", + "executable_names": [ + "avant.exe", + "ybrowser.exe", + "xbrowser.exe", + "webkit.exe", + "gecko.exe" + ], + "installed_conditions": [] + }, + { + "name": "Nichrome", + "file_description": "", + "executable_names": [ + "nichrome.exe" + ], + "installed_conditions": [] + }, + { + "name": "FlashPeak SlimBrowser", + "file_description": "", + "executable_names": [ + "SBRender.exe" + ], + "installed_conditions": [] + }, + { + "name": "Waterfox", + "file_description": "", + "executable_names": [ + "waterfox.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%APPDATA%\\Waterfox" + } + ] + }, + { + "name": "Sleipnir", + "file_description": "", + "executable_names": [ + "sleipnir_engine_cv.exe" + ], + "installed_conditions": [] + }, + { + "name": "QtWeb Internet Browser", + "file_description": "", + "executable_names": [ + "QtWeb.exe" + ], + "installed_conditions": [] + }, + { + "name": "Comodo IceDragon", + "file_description": "", + "executable_names": [ + "icedragon.exe" + ], + "installed_conditions": [] + }, + { + "name": "CyberFox Browser", + "file_description": "", + "executable_names": [ + "cyberfox.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SOFTWARE\\8pecxstudios\\Cyberfox" + } + ] + }, + { + "name": "Tor", + "file_description": "", + "executable_names": [ + "tor.exe" + ], + "installed_conditions": [] + }, + { + "name": "Tor Browser", + "file_description": "Tor Browser", + "executable_names": [ + "tbb-firefox.exe", + "firefox.exe" + ], + "installed_conditions": [] + }, + { + "name": "Amigo", + "file_description": "", + "executable_names": [ + "amigo.exe" + ], + "installed_conditions": [] + }, + { + "name": "Superbird", + "file_description": "", + "executable_names": [ + "superbird.exe" + ], + "installed_conditions": [] + }, + { + "name": "360Browser", + "file_description": "", + "executable_names": [ + "360browser.exe" + ], + "installed_conditions": [] + }, + { + "name": "Maxthon Nitro", + "file_description": "", + "executable_names": [ + "MxNitro.exe" + ], + "installed_conditions": [] + }, + { + "name": "Vivaldi", + "file_description": "", + "executable_names": [ + "vivaldi.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Vivaldi\\Application\\vivaldi.exe" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Vivaldi" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\SOFTWARE\\Vivaldi" + } + ] + }, + { + "name": "Kinza", + "file_description": "", + "executable_names": [ + "kinza.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Kinza" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Kinza\\Application\\kinza.exe" + } + ] + }, + { + "name": "Atom", + "file_description": "", + "executable_names": [ + "atom.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Mail.Ru Atom" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Mail.Ru\\Atom\\Application\\atom.exe" + } + ] + }, + { + "name": "Epic", + "file_description": "", + "executable_names": [ + "epic.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Epic Privacy Browser" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Epic Privacy Browser\\Application\\epic.exe" + } + ] + }, + { + "name": "Iridium", + "file_description": "", + "executable_names": [ + "iridium.exe" + ], + "installed_conditions": [] + }, + { + "name": "Slimjet", + "file_description": "", + "executable_names": [ + "slimjet.exe" + ], + "installed_conditions": [] + }, + { + "name": "7 Star Browser", + "file_description": "", + "executable_names": [ + "7chrome.exe" + ], + "installed_conditions": [] + }, + { + "name": "360 Chrome", + "file_description": "", + "executable_names": [ + "360chrome.exe" + ], + "installed_conditions": [] + }, + { + "name": "UC Browser", + "file_description": "", + "executable_names": [ + "UCBrowser.exe" + ], + "installed_conditions": [] + }, + { + "name": "Midori", + "file_description": "", + "executable_names": [ + "midori.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Midori" + } + ] + }, + { + "name": "Cent Browser", + "file_description": "Cent Browser", + "executable_names": [ + "chrome.exe", + "centbrowser.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\CentBrowser\\Application\\chrome.exe" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\CentBrowser\\Application\\centbrowser.exe" + } + ] + }, + { + "name": "Uran", + "file_description": "", + "executable_names": [ + "uran.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\uCozMedia\\Uran\\Application\\uran.exe" + } + ] + }, + { + "name": "Otter Browser", + "file_description": "", + "executable_names": [ + "otter-browser.exe" + ], + "installed_conditions": [] + }, + { + "name": "AOL Shield", + "file_description": "", + "executable_names": [ + "AOLShield.exe" + ], + "installed_conditions": [] + }, + { + "name": "Telekom-Browser 7.0", + "file_description": "", + "executable_names": [ + "Browser7.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\Browser7.exe" + } + ] + }, + { + "name": "Brave", + "file_description": "", + "executable_names": [ + "Brave.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Brave" + } + ] + }, + { + "name": "Sidekick", + "file_description": "", + "executable_names": [ + "sidekick.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\SOFTWARE\\Sidekick" + } + ] + }, + { + "name": "HAL", + "file_description": "", + "executable_names": [ + "Hal.exe" + ], + "installed_conditions": [] + }, + { + "name": "Salam Browser", + "file_description": "Salam", + "executable_names": [ + "chrome.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\SBRO\\Update\\proxy\\source" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\SBRO\\Salam\\User Data\\Default\\databases\\Databases.db" + } + ] + }, + { + "name": "Orbitum", + "file_description": "", + "executable_names": [ + "orbitum.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\Orbitum\\Update\\path" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Orbitum\\Application\\OrbitumUpdater\\OrbitumUpdater.exe" + } + ] + }, + { + "name": "Opera Neon", + "file_description": "", + "executable_names": [ + "neon.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\OperaSoftware" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Opera Software\\Opera Neon" + } + ] + }, + { + "name": "Cliqz", + "file_description": "", + "executable_names": [ + "cliqz.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%APPDATA%\\CLIQZ" + } + ] + }, + { + "name": "Torch", + "file_description": "", + "executable_names": [ + "torch.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Torch\\Uninstall.exe" + } + ] + }, + { + "name": "Whale", + "file_description": "", + "executable_names": [ + "whale.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Naver\\Naver Whale\\User Data\\First Run" + } + ] + }, + { + "name": "Swing browser", + "file_description": "", + "executable_names": [ + "swing.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\SwingBrowser" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\SwingBrowser\\Application\\starter.exe" + }, + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\SwingBrowser\\Application\\swing.exe" + } + ] + }, + { + "name": "CCleaner Browser", + "file_description": "CCleaner Browser", + "executable_names": [ + "CCleanerBrowser.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%PROGRAMFILES(x86)%\\CCleaner Browser\\Application\\CCleanerBrowser.exe" + }, + { + "type": "FilePath", + "pattern": "%PROGRAMFILES%\\CCleaner Browser\\Application\\CCleanerBrowser.exe" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\CCleanerHTML" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\Piriform\\Browser" + } + ] + }, + { + "name": "Thorium", + "file_description": "Thorium", + "executable_names": [ + "thorium.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Thorium\\Application\\thorium.exe" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Thorium" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Thorium" + } + ] + }, + { + "name": "Catsxp", + "file_description": "Catsxp", + "executable_names": [ + "catsxp.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%PROGRAMFILES%\\CatsxpSoftware\\Catsxp-Browser\\Application\\catsxp.exe" + } + ] + }, + { + "name": "360 Browser", + "file_description": "", + "executable_names": [ + "360se.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%APPDATA%\\360se6\\Application\\360se.exe" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\360seURL" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\SOFTWARE\\360" + } + ] + }, + { + "name": "Arc", + "file_description": "", + "executable_names": [ + "Arc.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Microsoft\\WindowsApps\\Arc.exe" + } + ] + }, + { + "name": "Floorp", + "file_description": "", + "executable_names": [ + "Floorp.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Applications\\floorp.exe" + } + ] + }, + { + "name": "Comet", + "file_description": "", + "executable_names": [ + "comet.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Perplexity\\Comet\\Application\\comet.exe" + } + ] + }, + { + "name": "Zen Browser", + "file_description": "", + "executable_names": [ + "zen.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\SOFTWARE\\Mozilla\\Zen" + } + ] + }, + { + "name": "IceWeasel", + "file_description": "", + "executable_names": [ + "iceweasel.exe" + ], + "installed_conditions": [] + }, + { + "name": "Helium", + "file_description": "Helium", + "executable_names": [ + "chrome.exe", + "helium.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\imput\\Helium\\Application\\chrome.exe" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\imput Helium" + } + ] + } +] diff --git a/windows/http_filtering_exclusions_apps.json b/windows/http_filtering_exclusions_apps.json new file mode 100644 index 0000000..afd408a --- /dev/null +++ b/windows/http_filtering_exclusions_apps.json @@ -0,0 +1,31 @@ +[ + { + "name": "Discord", + "file_description": "", + "executable_names": [ + "Discord.exe" + ], + "installed_conditions": [], + "private_issue_id": "AG-43457", + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5524" + }, + { + "name": "Atom", + "file_description": "", + "executable_names": [ + "atom.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/2988" + }, + { + "name": "Ubisoft Connect", + "file_description": "", + "executable_names": [ + "upc.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5611", + "private_issue_id": "AG-45307" + } +] \ No newline at end of file diff --git a/windows/https_filtering_apps.json b/windows/https_filtering_apps.json new file mode 100644 index 0000000..bea5a30 --- /dev/null +++ b/windows/https_filtering_apps.json @@ -0,0 +1,355 @@ +[ + { + "name": "BitTorrent", + "file_description": "", + "executable_names": [ + "BitTorrent.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%APPDATA%\\BitTorrent\\BitTorrent.exe" + } + ] + }, + { + "name": "Modern UI hosted apps", + "file_description": "", + "executable_names": [ + "WWAHost.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%systemroot%\\System32\\WWAHost.exe" + } + ] + }, + { + "name": "Skype", + "file_description": "", + "executable_names": [ + "skype.exe", + "skypebrowserhost.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Skype" + } + ] + }, + { + "name": "uTorrent", + "file_description": "", + "executable_names": [ + "utorrent.exe", + "utorrentie.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%APPDATA%\\uTorrent\\uTorrent.exe" + } + ] + }, + { + "name": "Atom Editor", + "file_description": "", + "executable_names": [ + "atom.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Atom\\atom.exe" + } + ] + }, + { + "name": "MediaGet", + "file_description": "", + "executable_names": [ + "mediaget.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\MediaGet2\\mediaget.exe" + } + ] + }, + { + "name": "Yahoo Messenger", + "file_description": "", + "executable_names": [ + "YahooMessenger.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Yahoo! Messenger" + } + ] + }, + { + "name": "Zona", + "file_description": "", + "executable_names": [ + "Zona.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Zona" + } + ] + }, + { + "name": "Windows 10 pre-installed apps", + "file_description": "", + "executable_names": [ + "Microsoft.Msn.Money.exe", + "Microsoft.Msn.News.exe", + "Microsoft.Msn.Sports.exe" + ], + "installed_conditions": [] + }, + { + "name": "RSSOwl", + "file_description": "", + "executable_names": [ + "RSSOwl.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\RSSOwl" + } + ] + }, + { + "name": "BitComet", + "file_description": "", + "executable_names": [ + "BitComet.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\BitComet" + } + ] + }, + { + "name": "The Weather Channel", + "file_description": "", + "executable_names": [ + "TWC.WindowsUniversal.exe" + ], + "installed_conditions": [] + }, + { + "name": "Microsoft Solitaire Collection", + "file_description": "", + "executable_names": [ + "Solitaire.exe" + ], + "installed_conditions": [] + }, + { + "name": "Microsoft Mahjong", + "file_description": "", + "executable_names": [ + "Mahjong.exe" + ], + "installed_conditions": [] + }, + { + "name": "freda epub ebook reader", + "file_description": "", + "executable_names": [ + "Freda_W10.exe" + ], + "installed_conditions": [] + }, + { + "name": "Messages for web", + "file_description": "", + "executable_names": [ + "Android Messages.exe" + ], + "installed_conditions": [] + }, + { + "name": "EasyMail for Gmail", + "file_description": "", + "executable_names": [ + "EasyMailReLaunch.exe" + ], + "installed_conditions": [] + }, + { + "name": "GOM Player", + "file_description": "", + "executable_names": [ + "GOM.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\GOM Player" + } + ] + }, + { + "name": "PotPlayer", + "file_description": "", + "executable_names": [ + "PotPlayer.exe", + "PotPlayerMini.exe", + "PotPlayer64.exe", + "PotPlayerMini64.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\DAUM\\PotPlayer" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\DAUM\\PotPlayer64" + } + ] + }, + { + "name": "Steam", + "file_description": "", + "executable_names": [ + "steamwebhelper.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Valve\\Steam" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Valve\\Steam" + } + ] + }, + { + "name": "KMPlayer", + "file_description": "", + "executable_names": [ + "KMPlayer.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\KMPlayer" + } + ] + }, + { + "name": "ACEStream", + "file_description": "", + "executable_names": [ + "ace_engine.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%APPDATA%\\ACEStream\\engine\\ace_engine.exe" + } + ] + }, + { + "name": "Alyac", + "file_description": "", + "executable_names": [ + "ALYac.aye" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\ESTsoft\\ALYac" + }, + { + "type": "FilePath", + "pattern": "%PROGRAMFILES%\\ESTsoft\\ALYac\\ALYac.aye" + } + ] + }, + { + "name": "Bandizip", + "file_description": "Bandizip", + "executable_names": [ + "Bandizip.exe", + "Updater.exe" + ], + "installed_conditions": [] + }, + { + "name": "Viber", + "file_description": "Viber", + "executable_names": [ + "Viber.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%LOCALAPPDATA%\\Viber\\Viber.exe" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\Viber\\Viber" + } + ] + }, + { + "name": "SafeVisit", + "file_description": "", + "executable_names": [ + "safevisit.exe", + "safevisits.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\safevisit" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\safevisit" + } + ] + }, + { + "name": "Edge WebView", + "file_description": "Microsoft Edge WebView2", + "executable_names": [ + "msedgewebview2.exe" + ], + "installed_conditions": [ + { + "type": "FilePath", + "pattern": "%PROGRAMFILES(x86)%\\Microsoft\\EdgeWebView\\Application" + } + ] + }, + { + "name": "Discord", + "file_description": "", + "executable_names": [ + "Discord.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Discord" + } + ] + } +] diff --git a/windows/route_exclusions_apps.json b/windows/route_exclusions_apps.json new file mode 100644 index 0000000..fb81b72 --- /dev/null +++ b/windows/route_exclusions_apps.json @@ -0,0 +1,174 @@ +[ + { + "name": "iTunes", + "file_description": "", + "executable_names": [ + "iTunes.exe" + ], + "installed_conditions": [], + "private_issue_id": "AG-47576" + }, + { + "name": "Apple Music", + "file_description": "", + "executable_names": [ + "AppleMusic.exe" + ], + "installed_conditions": [], + "private_issue_id": "AG-47576" + }, + { + "name": "iCloud", + "file_description": "", + "executable_names": [ + "iCloudHome.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5523", + "private_issue_id": "AG-43455" + }, + { + "name": "Dart", + "file_description": "", + "executable_names": [ + "dart.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5553", + "private_issue_id": "AG-44280" + }, + { + "name": "Windscribe", + "file_description": "", + "executable_names": [ + "Windscribe.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5611", + "private_issue_id": "AG-45307" + }, + { + "name": "KakaoTalk", + "file_description": "", + "executable_names": [ + "KakaoTalk.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5611" + }, + { + "name": "Logi Options+", + "file_description": "", + "executable_names": [ + "logioptionsplus.exe", + "logioptionsplus_updater.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5611" + }, + { + "name": "NVIDIA Container", + "file_description": "", + "executable_names": [ + "nvcontainer.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5611" + }, + { + "name": "NVIDIA App", + "file_description": "", + "executable_names": [ + "NVIDIA app.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5611" + }, + { + "name": "GCC", + "file_description": "", + "executable_names": [ + "GCC.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5611" + }, + { + "name": "Microsoft Edge Update", + "file_description": "", + "executable_names": [ + "MicrosoftEdgeUpdate.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5611" + }, + { + "name": "ZenServer", + "file_description": "", + "executable_names": [ + "zenserver.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5705" + }, + { + "name": "Battle.net", + "file_description": "", + "executable_names": [ + "Battle.net.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5721" + }, + { + "name": "Visual Studio", + "file_description": "", + "executable_names": [ + "devenv.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5719" + }, + { + "name": "AutoUpdate", + "file_description": "", + "executable_names": [ + "AutoUpdate.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5773" + }, + { + "name": "VirtualBox", + "file_description": "", + "executable_names": [ + "VirtualBoxVM.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5764" + }, + { + "name": "Steam", + "file_description": "", + "executable_names": [ + "steam.exe", + "steamservice.exe", + "steamwebhelper.exe", + "steamwebhelper64.exe", + "steamerrorreporter64.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5794" + }, + { + "name": "PUBG", + "file_description": "", + "executable_names": [ + "TslGame.exe", + "TslGame_ZK.exe", + "ExecPubg.exe" + ], + "installed_conditions": [], + "public_issue_url": "https://github.com/AdguardTeam/AdguardForWindows/issues/5794" + } +] \ No newline at end of file