{"success":true,"data":{"ext":"enc","name":"Mujahideen Secrets 2 encrypted file","description":"Mujahideen Secrets 2 encrypted file (.enc) is a proprietary encrypted file format associated with the Mujahideen Secrets 2 application, developed and maintained by its original publisher. It is used to store protected documents and other data intended for private exchange or local archival within the software. The format is legacy in nature and should be opened only with trusted tools, as encrypted files may be unreadable without the correct credentials.","mime":[],"risk_level":"Safe","signatures":[{"hex":"00 5C 41 B1 FF","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_enc(file_path: str) -> bool:\n    \"\"\"Check if file is a valid ENC by magic bytes.\"\"\"\n    signature = bytes([0x00, 0x5C, 0x41, 0xB1, 0xFF])\n    with open(file_path, \"rb\") as f:\n        return f.read(5) == signature","node":"function isENC(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x00, 0x5C, 0x41, 0xB1, 0xFF]);\n  return buffer.subarray(0, 5).equals(signature);\n}","go":"func IsENC(data []byte) bool {\n    signature := []byte{0x00, 0x5C, 0x41, 0xB1, 0xFF}\n    if len(data) < 5 {\n        return false\n    }\n    return bytes.Equal(data[:5], signature)\n}"}}}