{"success":true,"data":{"ext":"mte","name":"TargetExpress target file","description":"TargetExpress target files are proprietary project files used by TargetExpress, a software product developed and maintained by MCW Technologies. They store target definitions and related configuration data for planning, analysis, and other application-specific workflows. The format is generally considered safe, but, as with any legacy application file, it should be opened only with trusted software because malformed or unexpected content may cause compatibility issues.","mime":[],"risk_level":"Safe","signatures":[{"hex":"4D 43 57 20 54 65 63 68 6E 6F 67 6F 6C 69 65 73","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_mte(file_path: str) -> bool:\n    \"\"\"Check if file is a valid MTE by magic bytes.\"\"\"\n    signature = bytes([0x4D, 0x43, 0x57, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6E, 0x6F, 0x67, 0x6F, 0x6C, 0x69, 0x65, 0x73])\n    with open(file_path, \"rb\") as f:\n        return f.read(16) == signature","node":"function isMTE(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x4D, 0x43, 0x57, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6E, 0x6F, 0x67, 0x6F, 0x6C, 0x69, 0x65, 0x73]);\n  return buffer.subarray(0, 16).equals(signature);\n}","go":"func IsMTE(data []byte) bool {\n    signature := []byte{0x4D, 0x43, 0x57, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6E, 0x6F, 0x67, 0x6F, 0x6C, 0x69, 0x65, 0x73}\n    if len(data) < 16 {\n        return false\n    }\n    return bytes.Equal(data[:16], signature)\n}"}}}