{"success":true,"data":{"ext":"ind","name":"AOL client preferences/settings file","description":"The IND file format is an AOL client preferences and settings file maintained by America Online for its legacy software. It stores user configuration data such as account options, interface preferences, and connection settings, and was used by AOL desktop clients to preserve personalized behavior between sessions. As a legacy format, it is generally safe and contains configuration data rather than executable content, though files from outdated installations may no longer be supported.","mime":[],"risk_level":"Safe","signatures":[{"hex":"41 4F 4C 49 44 58","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":["abi"],"usage":{"python":"def is_ind(file_path: str) -> bool:\n    \"\"\"Check if file is a valid IND by magic bytes.\"\"\"\n    signature = bytes([0x41, 0x4F, 0x4C, 0x49, 0x44, 0x58])\n    with open(file_path, \"rb\") as f:\n        return f.read(6) == signature","node":"function isIND(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x41, 0x4F, 0x4C, 0x49, 0x44, 0x58]);\n  return buffer.subarray(0, 6).equals(signature);\n}","go":"func IsIND(data []byte) bool {\n    signature := []byte{0x41, 0x4F, 0x4C, 0x49, 0x44, 0x58}\n    if len(data) < 6 {\n        return false\n    }\n    return bytes.Equal(data[:6], signature)\n}"}}}