{"success":true,"data":{"ext":"tox","name":"TOX","description":"TOX is an open-source portable voxel file format maintained by the Tox project. It is used to store and exchange voxel-based 3D models for games, editors, and other graphics tools that work with block-based scenes. The format is generally considered safe, with no widely documented security concerns, although files from untrusted sources should still be validated by the software that imports them.","mime":[],"risk_level":"Safe","signatures":[{"hex":"74 6F 78 33","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"}]}],"related":[],"usage":{"python":"def is_tox(file_path: str) -> bool:\n    \"\"\"Check if file is a valid TOX by magic bytes.\"\"\"\n    signature = bytes([0x74, 0x6F, 0x78, 0x33])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isTOX(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x74, 0x6F, 0x78, 0x33]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsTOX(data []byte) bool {\n    signature := []byte{0x74, 0x6F, 0x78, 0x33}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"}}}