{"success":true,"data":{"ext":"snm","name":"Netscape Communicator","description":"The SNM format is a mailbox folder file used by Netscape Communicator, originally developed by Netscape Communications Corporation. It was used to store email messages and related folder data in Netscape Mail and other compatible internet suite applications. The format is now obsolete and may be encountered only in older user profiles or archival data; it generally poses little security risk beyond the usual caution required when opening legacy files.","mime":[],"risk_level":"Safe","signatures":[{"hex":"00 1E 84 90 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_snm(file_path: str) -> bool:\n    \"\"\"Check if file is a valid SNM by magic bytes.\"\"\"\n    signature = bytes([0x00, 0x1E, 0x84, 0x90, 0x00, 0x00, 0x00, 0x00])\n    with open(file_path, \"rb\") as f:\n        return f.read(8) == signature","node":"function isSNM(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x00, 0x1E, 0x84, 0x90, 0x00, 0x00, 0x00, 0x00]);\n  return buffer.subarray(0, 8).equals(signature);\n}","go":"func IsSNM(data []byte) bool {\n    signature := []byte{0x00, 0x1E, 0x84, 0x90, 0x00, 0x00, 0x00, 0x00}\n    if len(data) < 8 {\n        return false\n    }\n    return bytes.Equal(data[:8], signature)\n}"}}}