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 | : 52.15.233.83
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 /
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
6.6
KB
-rw-r--r--
KImageManager.php
1.75
KB
-rw-r--r--
KNewsItem.php
4.2
KB
-rw-r--r--
KPage.php
1.59
KB
-rw-r--r--
KPaper.php
13.88
KB
-rw-r--r--
KScheduleEntry.php
3.66
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 : KContentItem.php
<?php class KContentItem extends TActiveRecord { const TYPE_BLANK = 1; const TYPE_INTERNAL = 10; const TYPE_LINK = 15; const TYPE_TEXT = 20; const TYPE_EXTERNAL_LINK = 30; const TABLE='ifk_contentitems'; private $_id; private $_lang; private $_menu_item; private $_type; private $_title; private $_content; private $_sort_pos; private static $_item_paths = null; public function getId() {return $this->_id;} public function setId($value) {$this->_id = TPropertyValue::ensureInteger($value);} public function getLang() {return $this->_lang;} public function setLang($value) {$this->_lang = TPropertyValue::ensureString($value);} public function getMenu_item() {return $this->_menu_item;} public function setMenu_item($value) {$this->_menu_item = TPropertyValue::ensureInteger($value);} public function getType() {return $this->_type;} public function setType($value) {$this->_type = TPropertyValue::ensureInteger($value);} public function getTitle() {return $this->_title;} public function setTitle($value) {$this->_title = TPropertyValue::ensureString($value);} public function getContent() {return $this->_content;} public function setContent($value) {$this->_content = TPropertyValue::ensureString($value);} public function getSort_pos() {return $this->_sort_pos;} public function setSort_pos($value) {$this->_sort_pos = TPropertyValue::ensureInteger($value);} public function getCanonicalUrl() { $canonicalUrl = Prado::getApplication()->Parameters['BASE_URL'].$this->getLink(); return $canonicalUrl; } private function getItemPath() { if (self::$_item_paths == null) { $sql = Prado::getApplication()->getModule('db')->getDbConnection()->createCommand( "select `ci`.`id`, `pci`.`title` as `t`, `ci`.`title` as `p` from `ifk_contentitems` as `ci` left join `ifk_contentitems` as `pci` on (`pci`.`id` = `ci`.`menu_item`)" ); $res = $sql->query(); foreach($res as $row) { if(empty($row["t"])) self::$_item_paths[$row["id"]] = KPage::urlify($row["p"]); else self::$_item_paths[$row["id"]] = KPage::urlify($row["t"])."/".KPage::urlify($row["p"]); } } return self::$_item_paths[$this->id]; } public function getLink() { switch($this->type) { case self::TYPE_BLANK: return '#'; break; case self::TYPE_INTERNAL: return Prado::getApplication()->Service->constructUrl($this->content); break; case self::TYPE_LINK: $original_item = KContentItem::finder()->findByPk($this->content); return $original_item->getLink(); break; case self::TYPE_TEXT: return Prado::getApplication()->Service->constructUrl('Front.ContentItem', array('cid'=>$this->id, 'path'=>$this->getItemPath()), true, false); break; case self::TYPE_EXTERNAL_LINK: return $this->content; break; } } public function getCover() { if (!($this->_cover instanceof KImage) && is_null($this->photo_id)) { $this->_cover = new KImage; } elseif (!($this->_cover instanceof KImage)) { $this->_cover = new KImage; $this->_cover->load($this->photo_id); } return $this->_cover; } public static function finder($className=__CLASS__) { return parent::finder($className); } } ?>
Close