skip base64 index

This commit is contained in:
ghost 2024-02-13 14:43:09 +02:00
parent 0acf603eac
commit 1420cb9750

View File

@ -341,7 +341,7 @@ for ($block = $state; $block <= $blocks; $block++)
);
}
// Skip binary content
// Skip binary index
if (false === mb_detect_encoding((string) $namespace, null, true)
||
false === mb_detect_encoding((string) $key, null, true)
@ -351,6 +351,16 @@ for ($block = $state; $block <= $blocks; $block++)
continue;
}
// Skip base64 index
if ((strlen($namespace) % 4 == 0 && base64_encode(base64_decode($namespace, true)) === $namespace)
||
(strlen($key) % 4 == 0 && base64_encode(base64_decode($key, true)) === $key)
||
(strlen($value) % 4 == 0 && base64_encode(base64_decode($value, true)) === $value))
{
continue;
}
// Add index record
$index->add(
$raw['time'],