{"success":true,"data":{"ext":"wallet","name":"MultiBit Bitcoin wallet file","description":"MultiBit Bitcoin wallet file is a wallet data format used by the MultiBit desktop Bitcoin client, developed by the MultiBit project. It stores private keys, account metadata, and transaction-related information for sending, receiving, and backing up Bitcoin funds. MultiBit is a legacy format associated with an abandoned wallet application, so files should be handled carefully and imported only into trusted software.","mime":[],"risk_level":"Safe","signatures":[{"hex":"0A 16 6F 72 67 2E 62 69 74 63 6F 69 6E 2E 70 72","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"},{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_wallet(file_path: str) -> bool:\n    \"\"\"Check if file is a valid WALLET by magic bytes.\"\"\"\n    signature = bytes([0x0A, 0x16, 0x6F, 0x72, 0x67, 0x2E, 0x62, 0x69, 0x74, 0x63, 0x6F, 0x69, 0x6E, 0x2E, 0x70, 0x72])\n    with open(file_path, \"rb\") as f:\n        return f.read(16) == signature","node":"function isWALLET(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x0A, 0x16, 0x6F, 0x72, 0x67, 0x2E, 0x62, 0x69, 0x74, 0x63, 0x6F, 0x69, 0x6E, 0x2E, 0x70, 0x72]);\n  return buffer.subarray(0, 16).equals(signature);\n}","go":"func IsWALLET(data []byte) bool {\n    signature := []byte{0x0A, 0x16, 0x6F, 0x72, 0x67, 0x2E, 0x62, 0x69, 0x74, 0x63, 0x6F, 0x69, 0x6E, 0x2E, 0x70, 0x72}\n    if len(data) < 16 {\n        return false\n    }\n    return bytes.Equal(data[:16], signature)\n}"}}}