Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.191.205.149
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
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
/
home /
ifk /
web.back /
v2021 /
protected /
Common /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
KAdminPage.php
346
B
-rw-r--r--
KApplication.php
313
B
-rw-r--r--
KAuthor.php
1.3
KB
-rw-r--r--
KBooleanColumn.php
1.57
KB
-rw-r--r--
KClass.php
1.85
KB
-rw-r--r--
KClassGiver.php
1.04
KB
-rw-r--r--
KClassMaterialFile.php
2.81
KB
-rw-r--r--
KContentItem.php
3.3
KB
-rw-r--r--
KDuty.php
2.82
KB
-rw-r--r--
KImage.php
7.01
KB
-rw-r--r--
KImageManager.php
1.73
KB
-rw-r--r--
KNewsItem.php
4.27
KB
-rw-r--r--
KPage.php
1.96
KB
-rw-r--r--
KPaper.php
13.62
KB
-rw-r--r--
KRightBox.php
2.82
KB
-rw-r--r--
KScheduleEntry.php
3.67
KB
-rw-r--r--
KUser.php
1.55
KB
-rw-r--r--
KUserRecord.php
10.81
KB
-rw-r--r--
PEmailer.php
445
B
-rw-r--r--
PErrorHandler.php
4.3
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : KImageManager.php
<?php class KImageManager extends TComponent { public static function openImage($filename) { $imageinfo = getimagesize($filename); switch($imageinfo[2]) { case IMAGETYPE_GIF: $image = imagecreatefromgif($filename); break; case IMAGETYPE_JPEG: $image = imagecreatefromjpeg($filename); break; case IMAGETYPE_PNG: $image = imagecreatefrompng($filename); break; default: return false; } return $image; } public static function refineImage($image, $image_type) { if (!$image_type->isValidImageType) throw new TInvalidDataValueException("KImageManager->RefineImage: invalid 'image_type'"); $width = imagesx($image); $height = imagesy($image); if ((int)$image_type->Width === -1 || (int)$image_type->Height === -1) { $new_width = $width; $new_height = $height; } else { $max_width = $image_type->Width; $max_height = $image_type->Height; $ratioH = $max_height/$height; $ratioW = $max_width/$width; $ratio = min($ratioH, $ratioW); $new_width = $ratio * $width; $new_height = $ratio * $height; } $dest_image = imagecreatetruecolor($new_width, $new_height); imagecopyresampled($dest_image, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); /*$sharpenMatrix = array( array( -1, -1, -1 ), array( -1, 16, -1 ), array( -1, -1, -1 ) ); $divisor = 8; $offset = 0; imageconvolution($dest_image, $sharpenMatrix, $divisor, $offset);*/ return $dest_image; } public static function cropImage($image, $x1, $y1, $x2, $y2) { $cropped = imagecreatetruecolor($x2-$x1, $y2-$y1); imagecopy($cropped, $image, 0, 0, $x1, $y1, $x2-$x1, $y2-$y1); return $cropped; } public static function saveImage($image, $filename) { imagejpeg($image, $filename, 100); } } ?>
Close