using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Net; using System.Reflection; using System.Text.RegularExpressions; namespace Jackett.Common.Utils { public static class CookieUtil { // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie // NOTE: we are not checking non-ascii characters and we should private static readonly Regex _CookieRegex = new Regex(@"([^\(\)<>@,;:\\""/\[\]\?=\{\}\s]+)=([^,;\\""\s]+)"); private static readonly char[] InvalidKeyChars = { '(', ')', '<', '>', '@', ',', ';', ':', '\\', '"', '/', '[', ']', '?', '=', '{', '}', ' ', '\t', '\n' }; private static readonly char[] InvalidValueChars = { '"', ',', ';', '\\', ' ', '\t', '\n' }; public static Dictionary CookieHeaderToDictionary(string cookieHeader) { var cookieDictionary = new Dictionary(); if (cookieHeader == null) return cookieDictionary; var matches = _CookieRegex.Match(cookieHeader); while (matches.Success) { if (matches.Groups.Count > 2) cookieDictionary[matches.Groups[1].Value] = matches.Groups[2].Value; matches = matches.NextMatch(); } return cookieDictionary; } public static string CookieDictionaryToHeader(Dictionary cookieDictionary) { if (cookieDictionary == null) return ""; foreach (var kv in cookieDictionary) if (kv.Key.IndexOfAny(InvalidKeyChars) > -1 || kv.Value.IndexOfAny(InvalidValueChars) > -1) throw new FormatException($"The cookie '{kv.Key}={kv.Value}' is malformed."); return string.Join("; ", cookieDictionary.Select(kv => kv.Key + "=" + kv.Value)); } /// /// Remove all the cookies from a CookieContainer. That includes all domains and protocols. /// /// A cookie container public static void RemoveAllCookies(CookieContainer cookieJar) { var table = (Hashtable)cookieJar .GetType() .InvokeMember("m_domainTable", BindingFlags.NonPublic | BindingFlags.GetField | BindingFlags.Instance, null, cookieJar, Array.Empty()); foreach (var tableKey in table.Keys) { var domain = (string)tableKey; if (domain.StartsWith(".")) { domain = domain.Substring(1); } var list = (SortedList)table[tableKey] .GetType() .InvokeMember("m_list", BindingFlags.NonPublic | BindingFlags.GetField | BindingFlags.Instance, null, table[tableKey], Array.Empty()); foreach (var listKey in list.Keys) { foreach (Cookie cookie in cookieJar.GetCookies(new Uri($"http://{domain}{listKey}"))) { cookie.Expired = true; } foreach (Cookie cookie in cookieJar.GetCookies(new Uri($"https://{domain}{listKey}"))) { cookie.Expired = true; } } foreach (Cookie cookie in cookieJar.GetCookies(new Uri($"http://{domain}"))) { cookie.Expired = true; } foreach (Cookie cookie in cookieJar.GetCookies(new Uri($"https://{domain}"))) { cookie.Expired = true; } } } } }