{"success":true,"data":{"ext":"skf","name":"SkinCrafter skin file","description":"SkinCrafter skin file is a proprietary theme file format created and maintained by SkinCrafter, a Windows user interface skinning toolkit. It is used to define the appearance of application controls, windows, and dialogs in programs that support SkinCrafter-based customization for desktop applications. The format is generally considered safe, though its usefulness depends on legacy software that still includes SkinCrafter support.","mime":[],"risk_level":"Safe","signatures":[{"hex":"07 53 4B 46","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"},{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_skf(file_path: str) -> bool:\n    \"\"\"Check if file is a valid SKF by magic bytes.\"\"\"\n    signature = bytes([0x07, 0x53, 0x4B, 0x46])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isSKF(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x07, 0x53, 0x4B, 0x46]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsSKF(data []byte) bool {\n    signature := []byte{0x07, 0x53, 0x4B, 0x46}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"}}}