Steganos Security Suite virtual secure drive
application/octet-stream
Magic Bytes
Offset: 0
41 43 53 44
The Steganos Security Suite virtual secure drive (SLE) is a proprietary disk image format developed by Steganos Software GmbH for encrypted data storage. These files serve as virtual encrypted containers that appear as physical drives when mounted, allowing users to secure sensitive files and folders from unauthorized access. Although newer versions of the software favor the EDF format, SLE remains a recognizable legacy format for older encrypted volumes created within the Steganos ecosystem.
Validation Code
How to validate .sle files in Python
Python
def is_sle(file_path: str) -> bool:
"""Check if file is a valid SLE by magic bytes."""
signature = bytes([0x41, 0x43, 0x53, 0x44])
with open(file_path, "rb") as f:
return f.read(4) == signature
How to validate .sle files in Node.js
Node.js
function isSLE(buffer: Buffer): boolean {
const signature = Buffer.from([0x41, 0x43, 0x53, 0x44]);
return buffer.subarray(0, 4).equals(signature);
}
Go
func IsSLE(data []byte) bool {
signature := []byte{0x41, 0x43, 0x53, 0x44}
if len(data) < 4 {
return false
}
return bytes.Equal(data[:4], signature)
}
API Endpoint
GET
/api/v1/sle
curl https://filesignature.org/api/v1/sle