{"success":true,"data":{"ext":"axx","name":"AXX","description":"AXX is an encrypted archive file format created and maintained by AxCrypt, the file encryption utility for Windows and related platforms. It is used to protect individual files or bundles of files for secure storage, transfer, and sharing, and is typically opened within AxCrypt or compatible decryption tools. The format is generally considered safe, but access depends on the correct password or key, and older archives may require legacy software support.","mime":["application/x-axcrypt"],"risk_level":"Safe","signatures":[{"hex":"C0 B9 07 2E 4F 93 F1 46 A0 15 79 2C A1 D9 E8 21","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_axx(file_path: str) -> bool:\n    \"\"\"Check if file is a valid AXX by magic bytes.\"\"\"\n    signature = bytes([0xC0, 0xB9, 0x07, 0x2E, 0x4F, 0x93, 0xF1, 0x46, 0xA0, 0x15, 0x79, 0x2C, 0xA1, 0xD9, 0xE8, 0x21])\n    with open(file_path, \"rb\") as f:\n        return f.read(16) == signature","node":"function isAXX(buffer: Buffer): boolean {\n  const signature = Buffer.from([0xC0, 0xB9, 0x07, 0x2E, 0x4F, 0x93, 0xF1, 0x46, 0xA0, 0x15, 0x79, 0x2C, 0xA1, 0xD9, 0xE8, 0x21]);\n  return buffer.subarray(0, 16).equals(signature);\n}","go":"func IsAXX(data []byte) bool {\n    signature := []byte{0xC0, 0xB9, 0x07, 0x2E, 0x4F, 0x93, 0xF1, 0x46, 0xA0, 0x15, 0x79, 0x2C, 0xA1, 0xD9, 0xE8, 0x21}\n    if len(data) < 16 {\n        return false\n    }\n    return bytes.Equal(data[:16], signature)\n}"}}}