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.141.46.108
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 /
Front /
[ HOME SHELL ]
Name
Size
Permission
Action
AccessibilityDeclaration.page
8.89
KB
-rw-r--r--
AccessibilityDeclaration.php
130
B
-rw-r--r--
BookDetails.page
629
B
-rw-r--r--
BookDetails.php
1.65
KB
-rw-r--r--
BookList.page
777
B
-rw-r--r--
BookList.php
2.26
KB
-rw-r--r--
ClassDetails.page
1.48
KB
-rw-r--r--
ClassDetails.php
1.67
KB
-rw-r--r--
ContentItem.page
1.24
KB
-rw-r--r--
ContentItem.php
1.02
KB
-rw-r--r--
Error404.page
225
B
-rw-r--r--
Error404.php
178
B
-rw-r--r--
Home.page
1.32
KB
-rw-r--r--
Home.php
717
B
-rw-r--r--
Login.page
1.91
KB
-rw-r--r--
Login.php
866
B
-rw-r--r--
NewsArchive.page
1.3
KB
-rw-r--r--
NewsArchive.php
621
B
-rw-r--r--
NewsItem.page
533
B
-rw-r--r--
NewsItem.php
966
B
-rw-r--r--
PersonDetails.page
5.04
KB
-rw-r--r--
PersonDetails.php
3.02
KB
-rw-r--r--
PersonList.page
2.47
KB
-rw-r--r--
PersonList.php
1.57
KB
-rw-r--r--
Schedule.page
2.12
KB
-rw-r--r--
Schedule.php
2.78
KB
-rw-r--r--
Search.page
2.06
KB
-rw-r--r--
Search.php
1.63
KB
-rw-r--r--
SiteMap.page
742
B
-rw-r--r--
SiteMap.php
888
B
-rw-r--r--
config.xml
220
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Schedule.php
<?php class Schedule extends KPage { public static $days = array( 'Poniedziałek', 'Wtorek', 'Środa', 'Czwartek', 'Piątek' ); public function onLoad($p) { parent::onLoad($p); if (!$this->isPostBack) { $groupNames = array_keys(KClass::$_group_names); $this->GroupSelection->SelectedValue = array_shift($groupNames); if (isset($this->Request['_rg'])) { $this->GroupSelection->SelectedValue = $this->Request['_rg']; } $this->bindData(); $this->titlePrefix = 'Plany zajęć'; } } public function getScheduleLayouts() { $base = array( array( array(1, 'col'), array(2, 'col d-none d-lg-block'), array(3, 'col d-none d-lg-block'), array(4, 'col d-none d-xl-block'), array(5, 'col d-none d-xl-block') ), array(array(4, 'col d-none d-lg-block d-xl-none'), array(5, 'col d-none d-lg-block d-xl-none')), array(array(2, 'col d-lg-none')), array(array(3, 'col d-lg-none')), array(array(4, 'col d-lg-none')), array(array(5, 'col d-lg-none')), ); return $base; } public function getScheduleBlocks() { return array_keys(KScheduleEntry::$_block_hours); } public function bindData() { $this->GroupSelection->setDataSource(KClass::$_group_names); $this->GroupSelection->dataBind(); $this->ScheduleLayouts->setDataSource($this->getScheduleLayouts()); $this->ScheduleLayouts->dataBind(); } public function fillDays($sender, $param) { $item = $param->Item; $item->HourColumn->Style->CssClass = $item->Parent->Parent->Data[0][1].' col-4 col-md-3 col-lg-2 hour-block align-middle text-center'; $item->ScheduleDays->setDataSource($item->Parent->Parent->Data); $item->ScheduleDays->dataBind(); } public function fillBlocks($sender, $param) { $item = $param->Item; $item->ScheduleBlocks->setDataSource($this->getScheduleBlocks()); $item->ScheduleBlocks->dataBind(); } public function fillEntries($sender, $param) { $item = $param->Item; $day = $item->Data[0]; $block = $item->Parent->Parent->Data; $entryCode = $day * 10 + $block + 1; $item->Column->Style->CssClass = $item->Data[1].' text-center py-2'; $item->ScheduleEntries->setDataSource(KScheduleEntry::getEntries($entryCode, $this->GroupSelection->SelectedValue)); $item->ScheduleEntries->dataBind(); } public function switchSchedule($sender, $param) { $this->bindData(); } } ?>
Close