{"success":true,"data":{"ext":"enw","name":"ENW","description":"ENW is an EndNote reference file format used by EndNote, a bibliographic management product maintained by Clarivate. It stores citation and metadata records for importing, exporting, and exchanging references in research workflows, and is commonly used with EndNote and compatible reference managers. The format is generally safe, although files from untrusted sources should still be handled cautiously because they may be processed by desktop applications that support external links or imported content.","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":["enr"],"usage":{"python":"def is_enw(file_path: str) -> bool:\n    \"\"\"Check if file is a valid ENW 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 isENW(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x25, 0x41, 0x20]);\n  return buffer.subarray(0, 3).equals(signature);\n}","go":"func IsENW(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}"}}}