{"success":true,"data":{"ext":"dsn","name":"CD Stomper Pro label file","description":"CD Stomper Pro label file is a legacy document format used by the CD Stomper Pro label-design software, originally distributed by Memorex. It stores layout data for printable disc labels, inserts, and related packaging artwork used in home and small-office publishing workflows. The format is generally safe, but support is limited in modern software and files may require older applications or conversion tools to open.","mime":[],"risk_level":"Safe","signatures":[{"hex":"4D 56","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":[],"usage":{"python":"def is_dsn(file_path: str) -> bool:\n    \"\"\"Check if file is a valid DSN by magic bytes.\"\"\"\n    signature = bytes([0x4D, 0x56])\n    with open(file_path, \"rb\") as f:\n        return f.read(2) == signature","node":"function isDSN(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x4D, 0x56]);\n  return buffer.subarray(0, 2).equals(signature);\n}","go":"func IsDSN(data []byte) bool {\n    signature := []byte{0x4D, 0x56}\n    if len(data) < 2 {\n        return false\n    }\n    return bytes.Equal(data[:2], signature)\n}"}}}