using System; using System.Linq; using System.Net.Http; using System.Security.Cryptography.X509Certificates; using System.Threading.Tasks; using System.Windows.Forms; using Bunifu.UI.WinForms; using CefSharp; using CefSharp.WinForms; namespace XeroBrowser { public class RequestHandler : CefSharp.Handler.RequestHandler { // Define arrays with domain names only private readonly string[] blockedDrms = { "netflix.com", "www.netflix.com", "disneyplus.com", "twitch.tv", "tiktok.com", "www.tiktok.com" }; private readonly string[] incompatibleExtSites = { "chrome.google.com", "addons.mozilla.org", "chromewebstore.google.com" }; private string[] adDomains = Array.Empty(); private string[] maliciousDomains = Array.Empty(); public RequestHandler() { FetchAdDomainsAsync().ContinueWith(t => adDomains = t.Result); FetchMaliciousDomainsAsync().ContinueWith(t => maliciousDomains = t.Result); } public async Task FetchAdDomainsAsync() { string[] adDomains = Array.Empty(); try { using (HttpClient client = new HttpClient()) { string url = "https://diamondcreeper.org/web-filtering/lists/ads.txt"; HttpResponseMessage response = await client.GetAsync(url); if (response.IsSuccessStatusCode) { string content = await response.Content.ReadAsStringAsync(); adDomains = content.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries); } } } catch (Exception ex) { MessageBox.Show($"Error fetching ad domains: {ex.Message}"); } return adDomains; } public async Task FetchMaliciousDomainsAsync() { string[] maliciousDomains = Array.Empty(); try { using (HttpClient client = new HttpClient()) { string url = "https://diamondcreeper.org/web-filtering/lists/malicious.txt"; HttpResponseMessage response = await client.GetAsync(url); if (response.IsSuccessStatusCode) { string content = await response.Content.ReadAsStringAsync(); maliciousDomains = content.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries); } } } catch (Exception ex) { MessageBox.Show($"Error fetching malicious domains: {ex.Message}"); } return maliciousDomains; } protected override bool OnBeforeBrowse(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, bool userGesture, bool isRedirect) { Uri requestUri = new Uri(request.Url); string domain = requestUri.Host.ToLower(); if (blockedDrms.Contains(domain)) { // Cancel the navigation or sub-request chromiumWebBrowser.LoadHtml("

Error!

The requested site requires a DRM (Digital Rights Management) which Xero Browser does not support!

"); return true; } else if (incompatibleExtSites.Contains(domain)) { // Cancel the navigation or sub-request chromiumWebBrowser.LoadHtml("

Error!

Browser extensions are not supported!

"); return true; } else if (adDomains.Contains(domain)) { chromiumWebBrowser.LoadHtml("

Ads are blocked!

Ads are blocked in xero browser

"); return true; } else if (maliciousDomains.Contains(domain)) { chromiumWebBrowser.LoadHtml("

Visiting a dangerous website has been prevented!

Navigation to the malicious website designed to infect your computer, reduce its performance, break the system or cause other harm has been blocked.\r\n\r\nYou were protected from visiting this website. You can close this window with no risk.

"); return true; } return false; } } }