{"success":true,"data":{"ext":"sct","name":"SPSS Statistics","description":"SPSS Statistics template files are a document format associated with IBM SPSS Statistics, maintained as part of its statistical analysis software. They are used to store reusable templates for charts, tables, and report layouts in research, business analytics, and social science workflows. The format is generally safe, though files from untrusted sources should still be opened with current software because legacy SPSS files may reflect older application versions.","mime":[],"risk_level":"Safe","signatures":[{"hex":"57 04 00 00 53 50 53 53 20 74 65 6D 70 6C 61 74","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_sct(file_path: str) -> bool:\n    \"\"\"Check if file is a valid SCT by magic bytes.\"\"\"\n    signature = bytes([0x57, 0x04, 0x00, 0x00, 0x53, 0x50, 0x53, 0x53, 0x20, 0x74, 0x65, 0x6D, 0x70, 0x6C, 0x61, 0x74])\n    with open(file_path, \"rb\") as f:\n        return f.read(16) == signature","node":"function isSCT(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x57, 0x04, 0x00, 0x00, 0x53, 0x50, 0x53, 0x53, 0x20, 0x74, 0x65, 0x6D, 0x70, 0x6C, 0x61, 0x74]);\n  return buffer.subarray(0, 16).equals(signature);\n}","go":"func IsSCT(data []byte) bool {\n    signature := []byte{0x57, 0x04, 0x00, 0x00, 0x53, 0x50, 0x53, 0x53, 0x20, 0x74, 0x65, 0x6D, 0x70, 0x6C, 0x61, 0x74}\n    if len(data) < 16 {\n        return false\n    }\n    return bytes.Equal(data[:16], signature)\n}"}}}