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.12.73.221
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 /
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
3.96
KB
-rw-r--r--
GlobalDutiesList.page
3.25
KB
-rw-r--r--
GlobalDutiesList.php
3.21
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.05
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
4.31
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--
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
10.97
KB
-rw-r--r--
UserEdit.php
11.55
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 : ContentBrowse.php
<?php class ContentBrowse extends KAdminPage { private $_ContentItem; public function onLoad($p) { parent::onLoad($p); $this->requireAdminRights(); $this->bindMenuItems(); } public function bindMenuItems() { $crit = new TActiveRecordCriteria; $crit->OrdersBy['sort_pos'] = 'asc'; $crit->Condition = "menu_item = -1 AND lang = '".$this->getSelectedLang()."'"; $this->menuItems->setDataSource(KContentItem::finder()->findAll($crit)); $this->menuItems->dataBind(); } public function fillSubMenu($sender, $param) { $crit=new TActiveRecordCriteria; $crit->Condition = "lang = '".$this->getSelectedLang()."' 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 editItem($sender, $param) { $this->_ContentItem = KContentItem::finder()->findByPk($param->CommandParameter); $this->createEditControls(); $this->fillEditControls(); } public function createEditControls() { // "formatselect,bold,italic,underline,separator,justifyleft,justifycenter,justifyright,justifyfull,forecolor,|, bullist, numlist,|,link, unlink, anchor, separator", // toolbar2 : "inserttable", // toolbar3 : "pasteword", switch ($this->ContentItem->type) { case KContentItem::TYPE_INTERNAL: case KContentItem::TYPE_BLANK: $this->controlHolder->Controls[] = "<i>(strona nieedytowalna)</i>"; break; case KContentItem::TYPE_TEXT: $control = new THtmlArea4; $control->Width = "820px"; $control->Height = "550px"; $control->setCustomPluginPath("js/tinymceplugins/"); $control->Options = ' language: "pl", content_css : "themes/front/base.css", plugins : "table, link, paste, image, responsivefilemanager, contextmenu", toolbar1 : "undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist | link image | responsivefilemanager | pastetext", relative_urls: false, extended_valid_elements : "img[hspace|vspace|other|style|src|width|height]", contextmenu: "link image responsivefilemanager inserttable | cell row column deletetable" tools: "inserttable", external_filemanager_path: "lib/filemanager/", filemanager_title: "Menedżer plików" '; $this->controlHolder->Controls[] = "Treść:<br/>"; $this->controlHolder->Controls[] = $control; break; case KContentItem::TYPE_EXTERNAL_LINK: $control = new TTextBox; $control->Style->CustomStyle = "height: 16px; width: 85%"; $this->controlHolder->Controls[] = "Adres strony: "; $this->controlHolder->Controls[] = $control; break; } } public function fillEditControls($from_viewstate = false) { switch ($this->ContentItem->type) { case KContentItem::TYPE_TEXT: case KContentItem::TYPE_EXTERNAL_LINK: if ($from_viewstate) $this->controlHolder->Controls[1]->Data = $this->Request[str_replace('_','$', $this->controlHolder->Controls[1]->ClientID)]; else $this->controlHolder->Controls[1]->Data = $this->ContentItem->content; break; } } public function getSelectedLang() { return $this->langSelect->SelectedValue; } public function getContentItem() { return $this->_ContentItem; } public function saveItem() { $this->_ContentItem = KContentItem::finder()->findByPk($this->itemId->Value); $this->bindMenuItems(); $this->createEditControls(); $this->fillEditControls(true); if ($this->ContentItem instanceof KContentItem) { $this->ContentItem->title = $this->FTitle->SafeText; if(isset($this->controlHolder->Controls[1]) && $this->controlHolder->Controls[1] instanceof TControl) $this->ContentItem->content = $this->controlHolder->Controls[1]->Text; $this->ContentItem->save(); $this->Master->messageSuccess("Zapisano zmiany"); } } } ?>
Close