{"success":true,"data":{"ext":"other","name":"OTHER","description":"Extensible Markup Language (XML) is a text-based markup format defined by the World Wide Web Consortium (W3C) for representing structured data in a platform-independent way. It is commonly used for configuration files, document storage, data interchange, web services, and syndication formats. XML itself is generally safe to process, but parsers can be affected by entity expansion, external entity, and malformed-input attacks if not properly configured.","mime":[],"risk_level":"Safe","signatures":[{"hex":"3C 3F 78 6D 6C 20","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"}]}],"related":["manifest","msc","xml","xsd","xsl","xul"],"usage":{"python":"def is_other(file_path: str) -> bool:\n    \"\"\"Check if file is a valid OTHER by magic bytes.\"\"\"\n    signature = bytes([0x3C, 0x3F, 0x78, 0x6D, 0x6C, 0x20])\n    with open(file_path, \"rb\") as f:\n        return f.read(6) == signature","node":"function isOTHER(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x3C, 0x3F, 0x78, 0x6D, 0x6C, 0x20]);\n  return buffer.subarray(0, 6).equals(signature);\n}","go":"func IsOTHER(data []byte) bool {\n    signature := []byte{0x3C, 0x3F, 0x78, 0x6D, 0x6C, 0x20}\n    if len(data) < 6 {\n        return false\n    }\n    return bytes.Equal(data[:6], signature)\n}"},"category":"Web & Config"}}