{"success":true,"data":{"ext":"sdw","name":"SDW","description":"StarOffice Writer Document (SDW) is a word-processing file format created by StarDivision and later maintained by Sun Microsystems as part of the StarOffice suite. It was used to store letters, reports, forms, and other text documents in StarOffice and early Apache OpenOffice-related workflows. SDW is a legacy format, and some modern office suites may open it with limited compatibility; files from untrusted sources should still be handled with standard caution.","mime":["application/vnd.stardivision.writer"],"risk_level":"Safe","signatures":[{"hex":"D0 CF 11 E0 A1 B1 1A E1","offset":0,"sources":[{"name":"Apache Tika","url":"https://raw.githubusercontent.com/apache/tika/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml"}]}],"related":[],"usage":{"python":"def is_sdw(file_path: str) -> bool:\n    \"\"\"Check if file is a valid SDW by magic bytes.\"\"\"\n    signature = bytes([0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1])\n    with open(file_path, \"rb\") as f:\n        return f.read(8) == signature","node":"function isSDW(buffer: Buffer): boolean {\n  const signature = Buffer.from([0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1]);\n  return buffer.subarray(0, 8).equals(signature);\n}","go":"func IsSDW(data []byte) bool {\n    signature := []byte{0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1}\n    if len(data) < 8 {\n        return false\n    }\n    return bytes.Equal(data[:8], signature)\n}"}}}