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 /
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 $optionsWithArgs = array( 'fake-job', 'procs' ); require( dirname( __FILE__ ) . '/../commandLine.inc' ); require( dirname( __FILE__ ) . '/gearman.inc' ); ini_set( 'memory_limit', '150M' ); if ( isset( $options['procs'] ) ) { $procs = $options['procs']; if ( $procs < 1 || $procs > 1000 ) { echo "Invalid number of processes, please specify a number between 1 and 1000\n"; exit( 1 ); } $fc = new ForkController( $procs, ForkController::RESTART_ON_ERROR ); if ( $fc->start() != 'child' ) { exit( 0 ); } } if ( !$args ) { $args = array( 'localhost' ); } if ( isset( $options['fake-job'] ) ) { $params = unserialize( $options['fake-job'] ); MWGearmanJob::runNoSwitch( $params ); } $worker = new NonScaryGearmanWorker( $args ); $worker->addAbility( 'mw_job' ); $worker->beginWork( 'wfGearmanMonitor' ); function wfGearmanMonitor( $idle, $lastJob ) { static $lastSleep = 0; $interval = 5; $now = time(); if ( $now - $lastSleep >= $interval ) { wfWaitForSlaves(); $lastSleep = $now; } return false; }