{"success":true,"data":{"ext":"cod","name":"Agent newsreader character map file","description":"The Agent newsreader character map file is a configuration file used by Agent, the Usenet and email client developed by Forte and later maintained by ESET. It stores character set mappings and display rules that help the application interpret text correctly in different encodings. The format is a legacy application-specific file and generally poses little security risk, though it should only be opened by trusted software because malformed configuration files may affect program behavior.","mime":[],"risk_level":"Safe","signatures":[{"hex":"4E 61 6D 65 3A 20","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_cod(file_path: str) -> bool:\n    \"\"\"Check if file is a valid COD by magic bytes.\"\"\"\n    signature = bytes([0x4E, 0x61, 0x6D, 0x65, 0x3A, 0x20])\n    with open(file_path, \"rb\") as f:\n        return f.read(6) == signature","node":"function isCOD(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x4E, 0x61, 0x6D, 0x65, 0x3A, 0x20]);\n  return buffer.subarray(0, 6).equals(signature);\n}","go":"func IsCOD(data []byte) bool {\n    signature := []byte{0x4E, 0x61, 0x6D, 0x65, 0x3A, 0x20}\n    if len(data) < 6 {\n        return false\n    }\n    return bytes.Equal(data[:6], signature)\n}"}}}