{"success":true,"data":{"ext":"org","name":"AOL personal file cabinet","description":"AOL Personal File Cabinet (PFC) is a legacy file format created by America Online for storing user data within AOL client software. It was used to archive items such as address books, mail, and other account-related information in older AOL applications. The format is largely obsolete and may appear in historical archives; files are generally safe, though opening them now typically requires legacy-compatible software.","mime":[],"risk_level":"Safe","signatures":[{"hex":"41 4F 4C 56 4D 31 30 30","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":["aby","art","bag","dci","pfc"],"usage":{"python":"def is_org(file_path: str) -> bool:\n    \"\"\"Check if file is a valid ORG by magic bytes.\"\"\"\n    signature = bytes([0x41, 0x4F, 0x4C, 0x56, 0x4D, 0x31, 0x30, 0x30])\n    with open(file_path, \"rb\") as f:\n        return f.read(8) == signature","node":"function isORG(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x41, 0x4F, 0x4C, 0x56, 0x4D, 0x31, 0x30, 0x30]);\n  return buffer.subarray(0, 8).equals(signature);\n}","go":"func IsORG(data []byte) bool {\n    signature := []byte{0x41, 0x4F, 0x4C, 0x56, 0x4D, 0x31, 0x30, 0x30}\n    if len(data) < 8 {\n        return false\n    }\n    return bytes.Equal(data[:8], signature)\n}"}}}