Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
lms-api-8 /
vendor /
mpdf /
mpdf /
src /
Gif /
[ HOME SHELL ]
Name
Size
Permission
Action
ColorTable.php
1.59
KB
-rwxrwxr-x
FileHeader.php
1.9
KB
-rwxrwxr-x
Gif.php
1.25
KB
-rwxrwxr-x
Image.php
3.17
KB
-rwxrwxr-x
ImageHeader.php
1.71
KB
-rwxrwxr-x
Lzw.php
4.8
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Gif.php
<?php namespace Mpdf\Gif; /** * GIF Util - (C) 2003 Yamasoft (S/C) * * All Rights Reserved * * This file can be freely copied, distributed, modified, updated by anyone under the only * condition to leave the original address (Yamasoft, http://www.yamasoft.com) and this header. * * @link http://www.yamasoft.com */ class Gif { var $m_gfh; var $m_lpData; var $m_img; var $m_bLoaded; public function __construct() { $this->m_gfh = new FileHeader(); $this->m_img = new Image(); $this->m_lpData = ''; $this->m_bLoaded = false; } function ClearData() { $this->m_lpData = ''; unset($this->m_img->m_data); unset($this->m_img->m_lzw->Next); unset($this->m_img->m_lzw->Vals); unset($this->m_img->m_lzw->Stack); unset($this->m_img->m_lzw->Buf); } function loadFile(&$data, $iIndex) { if ($iIndex < 0) { return false; } $this->m_lpData = $data; // GET FILE HEADER $len = 0; if (!$this->m_gfh->load($this->m_lpData, $len)) { return false; } $this->m_lpData = substr($this->m_lpData, $len); do { $imgLen = 0; if (!$this->m_img->load($this->m_lpData, $imgLen)) { return false; } $this->m_lpData = substr($this->m_lpData, $imgLen); } while ($iIndex-- > 0); $this->m_bLoaded = true; return true; } }
Close