{
    "title": "Database Prefix",
    "messages": {
        "success": {
            "title": "Custom Database Prefix",
            "details": "Your WordPress database is using a custom table prefix ({prefix}), which enhances security.",
            "steps": [
                "Continue monitoring database security",
                "Keep regular database backups",
                "Use strong database user passwords"
            ]
        },
        "error": {
            "title": "Default Database Prefix",
            "details": "Your WordPress database is using the default 'wp_' table prefix, which is less secure.",
            "steps": [
                "Create a database backup",
                "Use a database prefix change plugin",
                "Update wp-config.php with new prefix",
                "Verify site functionality after change"
            ]
        }
    },
    "learn_more": {
        "description": "The database prefix is used for all WordPress database tables. Using a custom prefix makes it harder for attackers to guess table names and execute automated SQL injection attacks.",
        "benefits": [
            "Protection against SQL injection attacks",
            "Harder for attackers to guess table names",
            "Better database organization",
            "Enhanced security through obscurity"
        ],
        "recommended_tools": [
            {
                "name": "Better WP Security",
                "type": "Security Plugin"
            },
            {
                "name": "WP-DBManager",
                "type": "Database Management Plugin"
            }
        ]
    }
}