{"success":true,"data":{"ext":"slob","name":"SLOB","description":"SLOB (Sorted List of Object Storages) is a read-only, compressed data storage format used by the LibreOffice and Apache OpenOffice projects. It is primarily used to package dictionaries and other structured content for integration with office-suite features such as spell checking and language tools. The format is generally considered safe to open, though it is a niche, project-specific container rather than a general-purpose document format.","mime":[],"risk_level":"Safe","signatures":[{"hex":"21 2D 31 53 4C 4F 42 1F","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"}]}],"related":[],"usage":{"python":"def is_slob(file_path: str) -> bool:\n    \"\"\"Check if file is a valid SLOB by magic bytes.\"\"\"\n    signature = bytes([0x21, 0x2D, 0x31, 0x53, 0x4C, 0x4F, 0x42, 0x1F])\n    with open(file_path, \"rb\") as f:\n        return f.read(8) == signature","node":"function isSLOB(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x21, 0x2D, 0x31, 0x53, 0x4C, 0x4F, 0x42, 0x1F]);\n  return buffer.subarray(0, 8).equals(signature);\n}","go":"func IsSLOB(data []byte) bool {\n    signature := []byte{0x21, 0x2D, 0x31, 0x53, 0x4C, 0x4F, 0x42, 0x1F}\n    if len(data) < 8 {\n        return false\n    }\n    return bytes.Equal(data[:8], signature)\n}"}}}