Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/043b1a0e46f1edfe4ad9ab954a1aff27812a535a?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
2 deletions
@ -22,6 +22,7 @@ namespace NzbDrone.Common.Test.InstrumentationTests
[TestCase(@" var authkey = ""2b51db35e1910123321025a12b9933d2"";")]
[TestCase(@"https://hd-space.org/index.php?page=login: uid=mySecret&pwd=mySecret")]
[TestCase(@"https://beyond-hd.me/api/torrents/2b51db35e1912ffc138825a12b9933d2")]
[TestCase(@"Req: [POST] https : //www3.yggtorrent.nz/user/login: id=mySecret&pass=mySecret&ci_csrf_token=2b51db35e1912ffc138825a12b9933d2")]
// NzbGet
[TestCase(@"{ ""Name"" : ""ControlUsername"", ""Value"" : ""mySecret"" }, { ""Name"" : ""ControlPassword"", ""Value"" : ""mySecret"" }, ")]
@ -11,8 +11,8 @@ namespace NzbDrone.Common.Instrumentation
private static readonly Regex [ ] CleansingRules = new [ ]
{
// Url
new Regex ( @"(?<= \?|&|: |;)(apikey|token|passkey|auth|authkey|user|uid|api|[a-z_]*apikey|account|passwd |pwd)=(?<secret>[^&=]+?)(?= |&|$)", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ,
new Regex ( @"(?<= \?|&| )[^=]*?(_?(?<!use)token|username|passwo?rd)=(?<secret>[^&=]+?)(?= |&|$)", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ,
new Regex ( @"(?<= [?&: ;])(apikey|token|pass(?:key|wd)?|auth|authkey|user|u?id|api|[a-z_]*apikey|account |pwd)=(?<secret>[^&=]+?)(?= |&|$)", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ,
new Regex ( @"(?<= [?& ] )[^=]*?(_?(?<!use)token|username|passwo?rd)=(?<secret>[^&=]+?)(?= |&|$)", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ,
new Regex ( @"rss\.torrentleech\.org/(?!rss)(?<secret>[0-9a-z]+)" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ,
new Regex ( @"rss\.torrentleech\.org/rss/download/[0-9]+/(?<secret>[0-9a-z]+)" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ,
new Regex ( @"iptorrents\.com/[/a-z0-9?&;]*?(?:[?&;](u|tp)=(?<secret>[^&=;]+?))+(?= |;|&|$)" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ,