{"success":true,"data":{"ext":"sle","name":"Steganos Security Suite virtual secure drive","description":"Steganos Security Suite virtual secure drive (SLE) is a disk image format used by Steganos Security Suite, a product maintained by Steganos Software. It stores an encrypted virtual drive that can be mounted for protecting documents, archives, and other personal data. The format is associated with legacy Steganos encryption workflows; opening files from untrusted sources should still be done with caution, although the format itself is generally considered safe.","mime":[],"risk_level":"Safe","signatures":[{"hex":"3A 56 45 52 53 49 4F 4E","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]},{"hex":"41 43 76","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_sle(file_path: str) -> bool:\n    \"\"\"Check if file is a valid SLE by magic bytes.\"\"\"\n    signature = bytes([0x3A, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4F, 0x4E])\n    with open(file_path, \"rb\") as f:\n        return f.read(8) == signature","node":"function isSLE(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x3A, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4F, 0x4E]);\n  return buffer.subarray(0, 8).equals(signature);\n}","go":"func IsSLE(data []byte) bool {\n    signature := []byte{0x3A, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4F, 0x4E}\n    if len(data) < 8 {\n        return false\n    }\n    return bytes.Equal(data[:8], signature)\n}"}}}