{"success":true,"data":{"ext":"log","name":"Symantec Wise Installer log file","description":"Symantec Wise Installer log file is a plain text record format produced and maintained by Symantec Wise Installer, a Windows software packaging tool. It is used to document installation steps, track actions performed during setup, and assist with troubleshooting or auditing installer behavior. The format is associated with legacy installer workflows and is generally safe to inspect, though as with any log file, content should be reviewed carefully when received from untrusted sources.","mime":["text/plain"],"risk_level":"Safe","signatures":[{"hex":"2A 2A 2A 20 20 49 6E 73 74 61 6C 6C 61 74 69 6F 6E 20 53 74 61 72 74 65 64 20","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_log(file_path: str) -> bool:\n    \"\"\"Check if file is a valid LOG by magic bytes.\"\"\"\n    signature = bytes([0x2A, 0x2A, 0x2A, 0x20, 0x20, 0x49, 0x6E, 0x73, 0x74, 0x61, 0x6C, 0x6C, 0x61, 0x74, 0x69, 0x6F, 0x6E, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x20])\n    with open(file_path, \"rb\") as f:\n        return f.read(26) == signature","node":"function isLOG(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x2A, 0x2A, 0x2A, 0x20, 0x20, 0x49, 0x6E, 0x73, 0x74, 0x61, 0x6C, 0x6C, 0x61, 0x74, 0x69, 0x6F, 0x6E, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x20]);\n  return buffer.subarray(0, 26).equals(signature);\n}","go":"func IsLOG(data []byte) bool {\n    signature := []byte{0x2A, 0x2A, 0x2A, 0x20, 0x20, 0x49, 0x6E, 0x73, 0x74, 0x61, 0x6C, 0x6C, 0x61, 0x74, 0x69, 0x6F, 0x6E, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x20}\n    if len(data) < 26 {\n        return false\n    }\n    return bytes.Equal(data[:26], signature)\n}"}}}