KiwiFlare is strict about sending a UUID so removed the placeholder value and replaced it with a random GUID.

This commit is contained in:
barelyprofessional
2025-08-19 21:47:58 -05:00
parent 7889f50486
commit b2ef7df91b

View File

@@ -47,9 +47,9 @@ public class KfTokenService
{
var clearanceCookie = _cookies.GetAllCookies()["sssg_clearance"];
_logger.Debug($"Got clearance cookie with value: {clearanceCookie}");
if (await _kiwiFlare.CheckAuth("nigger"))
if (await _kiwiFlare.CheckAuth(Guid.NewGuid().ToString()))
{
_logger.Debug("KiwiFlare has been turned off as it's accepting a nigger sssg_clearance");
_logger.Debug("KiwiFlare has been turned off as it's accepting a non-existent sssg_clearance");
return;
};
if (clearanceCookie != null)