{"success":true,"data":{"ext":"tib","name":"Acronis True Image file","description":"Acronis True Image file (TIB) is a backup archive format created and maintained by Acronis for disk imaging and system recovery. It is used to store full system backups, partition images, and file-level restore points for personal and enterprise recovery workflows. The format is generally safe, though restoration should be performed with trusted Acronis tools, and older archives may require compatible versions of the software.","mime":[],"risk_level":"Safe","signatures":[{"hex":"B4 6E 68 44","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]},{"hex":"CE 24 B9 A2 20 00 00 00","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_tib(file_path: str) -> bool:\n    \"\"\"Check if file is a valid TIB by magic bytes.\"\"\"\n    signature = bytes([0xB4, 0x6E, 0x68, 0x44])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isTIB(buffer: Buffer): boolean {\n  const signature = Buffer.from([0xB4, 0x6E, 0x68, 0x44]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsTIB(data []byte) bool {\n    signature := []byte{0xB4, 0x6E, 0x68, 0x44}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"}}}