{"success":true,"data":{"ext":"enr","name":"ENR","description":"ENR is a reference file format associated with EndNote, a citation management system originally developed by Thomson Reuters and now maintained by Clarivate. It is used to store bibliographic entries and citation data for importing, exporting, and exchanging references with EndNote and compatible academic tools. The format is legacy-oriented and generally safe, although files from untrusted sources should still be reviewed before import because they can alter reference libraries.","mime":["application/x-endnote-refer"],"risk_level":"Safe","signatures":[{"hex":"25 41 20","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"}]}],"related":["enw"],"usage":{"python":"def is_enr(file_path: str) -> bool:\n    \"\"\"Check if file is a valid ENR by magic bytes.\"\"\"\n    signature = bytes([0x25, 0x41, 0x20])\n    with open(file_path, \"rb\") as f:\n        return f.read(3) == signature","node":"function isENR(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x25, 0x41, 0x20]);\n  return buffer.subarray(0, 3).equals(signature);\n}","go":"func IsENR(data []byte) bool {\n    signature := []byte{0x25, 0x41, 0x20}\n    if len(data) < 3 {\n        return false\n    }\n    return bytes.Equal(data[:3], signature)\n}"}}}