{"success":true,"data":{"ext":"info","name":"MultiBit Bitcoin wallet information file","description":"MultiBit Bitcoin wallet information file (.info) is a metadata file format used by the MultiBit wallet software, developed and maintained by the MultiBit project for storing wallet-related information. It is used to record details such as wallet settings, account data, and synchronization information for opening and managing Bitcoin wallets in the application. MultiBit is now a legacy, discontinued wallet, but .info files are generally safe and contain non-executable data; users should still handle files from unknown sources cautiously.","mime":[],"risk_level":"Safe","signatures":[{"hex":"54 68 69 73 20 69 73 20","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]},{"hex":"6D 75 6C 74 69 42 69 74 2E 69 6E 66 6F","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]},{"hex":"7A 62 65 78","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]},{"hex":"E3 10 00 01 00 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_info(file_path: str) -> bool:\n    \"\"\"Check if file is a valid INFO by magic bytes.\"\"\"\n    signature = bytes([0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20])\n    with open(file_path, \"rb\") as f:\n        return f.read(8) == signature","node":"function isINFO(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20]);\n  return buffer.subarray(0, 8).equals(signature);\n}","go":"func IsINFO(data []byte) bool {\n    signature := []byte{0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20}\n    if len(data) < 8 {\n        return false\n    }\n    return bytes.Equal(data[:8], signature)\n}"}}}