{"success":true,"data":{"ext":"mny","name":"Microsoft Money file","description":"Microsoft Money file (MNY) is a proprietary personal finance data format created by Microsoft for the Money application. It was used to store budgets, account balances, investments, and transaction records for home and small-business financial management. Microsoft Money is a legacy, discontinued product, so these files are primarily encountered in archived data or when migrating older financial records; they are generally safe to open in trusted recovery or conversion tools.","mime":["application/x-msmoney"],"risk_level":"Safe","signatures":[{"hex":"00 01 00 00 4D 53 49 53 41 4D 20 44 61 74 61 62 61 73 65","offset":0,"sources":[{"name":"Apache Tika","url":"https://raw.githubusercontent.com/apache/tika/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml"},{"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":["accdb","mdb","ttc","ttf","dfont","tte"],"usage":{"python":"def is_mny(file_path: str) -> bool:\n    \"\"\"Check if file is a valid MNY by magic bytes.\"\"\"\n    signature = bytes([0x00, 0x01, 0x00, 0x00, 0x4D, 0x53, 0x49, 0x53, 0x41, 0x4D, 0x20, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65])\n    with open(file_path, \"rb\") as f:\n        return f.read(19) == signature","node":"function isMNY(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x00, 0x01, 0x00, 0x00, 0x4D, 0x53, 0x49, 0x53, 0x41, 0x4D, 0x20, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65]);\n  return buffer.subarray(0, 19).equals(signature);\n}","go":"func IsMNY(data []byte) bool {\n    signature := []byte{0x00, 0x01, 0x00, 0x00, 0x4D, 0x53, 0x49, 0x53, 0x41, 0x4D, 0x20, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65}\n    if len(data) < 19 {\n        return false\n    }\n    return bytes.Equal(data[:19], signature)\n}"},"category":"Fonts"}}