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 : Simple.php
<?php /** * Simple: A lightweight skin with a simple white-background sidebar and no * top bar. * * @file * @ingroup Skins */ if( !defined( 'MEDIAWIKI' ) ) die( -1 ); /** */ require_once( dirname(__FILE__) . '/MonoBook.php' ); /** * Inherit main code from SkinTemplate, set the CSS and template filter. * @ingroup Skins */ class SkinSimple extends SkinTemplate { var $skinname = 'simple', $stylename = 'simple', $template = 'MonoBookTemplate', $useHeadElement = true; /** * @param $out OutputPage */ function setupSkinUserCss( OutputPage $out ) { parent::setupSkinUserCss( $out ); $out->addModuleStyles( 'skins.simple' ); /* Add some userprefs specific CSS styling */ $rules = array(); $underline = ""; if ( $this->getUser()->getOption( 'underline' ) < 2 ) { $underline = "text-decoration: " . $this->getUser()->getOption( 'underline' ) ? 'underline !important' : 'none' . ";"; } /* Also inherits from resourceloader */ if( !$this->getUser()->getOption( 'highlightbroken' ) ) { $rules[] = "a.new, a.stub { color: inherit; text-decoration: inherit;}"; $rules[] = "a.new:after { color: #CC2200; $underline;}"; $rules[] = "a.stub:after { $underline; }"; } $style = implode( "\n", $rules ); $out->addInlineStyle( $style, 'flip' ); } }
Close