Browse Source

skip base64 index

main
ghost 9 months ago
parent
commit
1420cb9750
  1. 12
      src/index.php

12
src/index.php

@ -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) if (false === mb_detect_encoding((string) $namespace, null, true)
|| ||
false === mb_detect_encoding((string) $key, null, true) false === mb_detect_encoding((string) $key, null, true)
@ -351,6 +351,16 @@ for ($block = $state; $block <= $blocks; $block++)
continue; 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 // Add index record
$index->add( $index->add(
$raw['time'], $raw['time'],

Loading…
Cancel
Save