mirror of
https://github.com/kvazar-network/crawler.git
synced 2025-01-22 04:45:18 +00:00
skip base64 index
This commit is contained in:
parent
0acf603eac
commit
1420cb9750
@ -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'],
|
||||
|
Loading…
x
Reference in New Issue
Block a user