{"success":true,"data":{"ext":"psafe3","name":"PSAFE3","description":"PSAFE3 is an encrypted password database format used by Password Gorilla, a password manager maintained by its open-source project. It stores login credentials, notes, and other sensitive records for personal or organizational password management. Because the file contains confidential information, it should be protected with a strong master password and handled carefully when transferred or backed up; older databases may still appear in systems that previously used the format.","mime":[],"risk_level":"Safe","signatures":[{"hex":"50 57 53 33","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"}]}],"related":[],"usage":{"python":"def is_psafe3(file_path: str) -> bool:\n    \"\"\"Check if file is a valid PSAFE3 by magic bytes.\"\"\"\n    signature = bytes([0x50, 0x57, 0x53, 0x33])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isPSAFE3(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x50, 0x57, 0x53, 0x33]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsPSAFE3(data []byte) bool {\n    signature := []byte{0x50, 0x57, 0x53, 0x33}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"}}}