import bz2
import logging
from abc import ABC
from pathlib import Path
from typing import List, Optional
from credsweeper.credentials.candidate import Candidate
from credsweeper.deep_scanner.abstract_scanner import AbstractScanner
from credsweeper.file_handler.data_content_provider import DataContentProvider
from credsweeper.utils.util import Util
logger = logging.getLogger(__name__)
[docs]
class Bzip2Scanner(AbstractScanner, ABC):
"""Implements bzip2 scanning"""
[docs]
@staticmethod
def match(data: bytes | bytearray) -> bool:
"""According https://en.wikipedia.org/wiki/Bzip2"""
if data.startswith(b"\x42\x5A\x68") and 10 <= len(data) \
and 0x31 <= data[3] <= 0x39 \
and 4 == data.find(b"\x31\x41\x59\x26\x53\x59", 4, 10):
return True
return False
[docs]
def data_scan(
self, #
data_provider: DataContentProvider, #
depth: int, #
recursive_limit_size: int) -> Optional[List[Candidate]]:
"""Extracts data from bzip2 archive and launches data_scan"""
try:
file_path = Path(data_provider.file_path)
new_path = file_path.as_posix()
if ".bz2" == file_path.suffix:
new_path = new_path[:-4]
bzip2_content_provider = DataContentProvider(data=bz2.decompress(data_provider.data),
file_path=new_path,
file_type=Util.get_extension(new_path),
info=f"{data_provider.info}|BZIP2:{file_path}")
new_limit = recursive_limit_size - len(bzip2_content_provider.data)
bzip2_candidates = self.recursive_scan(bzip2_content_provider, depth, new_limit)
return bzip2_candidates
except Exception as bzip2_exc:
logger.warning("%s:%s", data_provider.file_path, bzip2_exc)
return None