{"success":true,"data":{"ext":"ssp","name":"SSP","description":"SSP is a packet capture file format used by SmartSniff, a network monitoring utility developed by NirSoft. It stores captured network traffic for later review, analysis, and troubleshooting within SmartSniff and related packet inspection workflows. The format is generally safe, though it may contain sensitive network data; files should be handled carefully when shared, and older captures may reflect legacy network activity or outdated protocols.","mime":[],"risk_level":"Safe","signatures":[{"hex":"53 4D 53 4E 46 32 30 30","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"}]}],"related":[],"usage":{"python":"def is_ssp(file_path: str) -> bool:\n    \"\"\"Check if file is a valid SSP by magic bytes.\"\"\"\n    signature = bytes([0x53, 0x4D, 0x53, 0x4E, 0x46, 0x32, 0x30, 0x30])\n    with open(file_path, \"rb\") as f:\n        return f.read(8) == signature","node":"function isSSP(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x53, 0x4D, 0x53, 0x4E, 0x46, 0x32, 0x30, 0x30]);\n  return buffer.subarray(0, 8).equals(signature);\n}","go":"func IsSSP(data []byte) bool {\n    signature := []byte{0x53, 0x4D, 0x53, 0x4E, 0x46, 0x32, 0x30, 0x30}\n    if len(data) < 8 {\n        return false\n    }\n    return bytes.Equal(data[:8], signature)\n}"}}}