{"success":true,"data":{"ext":"p10","name":"Intel PROset/Wireless Profile","description":"Intel PROSet/Wireless Profile is a configuration file format used by Intel PROSet/Wireless software, developed and maintained by Intel for storing Wi‑Fi connection profiles and settings. It is used to save network credentials, security parameters, and adapter preferences for Intel wireless clients on Windows systems. The format is generally safe, though profiles may contain sensitive connection information; it is mainly a legacy component of Intel's wireless management utilities.","mime":[],"risk_level":"Safe","signatures":[{"hex":"64 00 00 00","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_p10(file_path: str) -> bool:\n    \"\"\"Check if file is a valid P10 by magic bytes.\"\"\"\n    signature = bytes([0x64, 0x00, 0x00, 0x00])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isP10(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x64, 0x00, 0x00, 0x00]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsP10(data []byte) bool {\n    signature := []byte{0x64, 0x00, 0x00, 0x00}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"}}}