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.14.136.121 | Time @ Server : 19 Oct 2024 05:28:14
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

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

<?php /** * Credis_Module * * Implements Redis Modules support. see http://redismodules.com * * @author Igor Veremchuk <igor.veremchuk@gmail.com> * @license http://www.opensource.org/licenses/mit-license.php The MIT License * @package Credis_Module */ class Credis_Module { const MODULE_COUNTING_BLOOM_FILTER = 'CBF'; /** @var Credis_Client */ protected $client; /** @var string */ protected $moduleName; /** * @param Credis_Client $client * @param string $module */ public function __construct(Credis_Client $client, $module = null) { $client->forceStandalone(); // Redis Modules command not currently supported by phpredis $this->client = $client; if (isset($module)) { $this->setModule($module); } } /** * Clean up client on destruct */ public function __destruct() { $this->client->close(); } /** * @param $moduleName * @return $this */ public function setModule($moduleName) { $this->moduleName = (string) $moduleName; return $this; } /** * @param string $name * @param string $args * @return mixed */ public function __call($name, $args) { if ($this->moduleName === null) { throw new \LogicException('Module must be set.'); } return call_user_func(array($this->client, sprintf('%s.%s', $this->moduleName, $name)), $args); } }