{"success":true,"data":{"ext":"ens","name":"ENS","description":"EndNote Style (ENS) is a citation style file format used by EndNote, developed and maintained by Clarivate. It defines formatting rules for references, in-text citations, and bibliographies in academic writing, and is used in EndNote and compatible reference management workflows. ENS files are generally safe, though they may be exchanged with documents or libraries that depend on specific style settings; the format is long-standing rather than obsolete.","mime":["application/x-endnote-style"],"risk_level":"Safe","signatures":[{"hex":"00 08","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":[],"usage":{"python":"def is_ens(file_path: str) -> bool:\n    \"\"\"Check if file is a valid ENS by magic bytes.\"\"\"\n    signature = bytes([0x00, 0x08])\n    with open(file_path, \"rb\") as f:\n        return f.read(2) == signature","node":"function isENS(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x00, 0x08]);\n  return buffer.subarray(0, 2).equals(signature);\n}","go":"func IsENS(data []byte) bool {\n    signature := []byte{0x00, 0x08}\n    if len(data) < 2 {\n        return false\n    }\n    return bytes.Equal(data[:2], signature)\n}"}}}