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.145.88.241 | Time @ Server : 19 Oct 2024 08:26:59
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/consolidation/robo/src/

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

File Path : /home/webmaster/firofichi/www/vendor/consolidation/robo/src/TaskAccessor.php

<?php namespace Robo; use Robo\Common\BuilderAwareTrait; trait TaskAccessor { use BuilderAwareTrait; /** * Provides the collection builder with access to all of the * protected 'task' methods available on this object. * * @param string $fn * @param array $args * * @return null|\Robo\Collection\CollectionBuilder */ public function getBuiltTask($fn, $args) { if (preg_match('#^task[A-Z]#', $fn)) { return call_user_func_array([$this, $fn], $args); } } /** * Alternative access to instantiate. Use: * * $this->task(Foo::class, $a, $b); * * instead of: * * $this->taskFoo($a, $b); * * The later form is preferred. * * @return \Robo\Collection\CollectionBuilder */ protected function task() { $args = func_get_args(); $name = array_shift($args); $collectionBuilder = $this->collectionBuilder(); return $collectionBuilder->build($name, $args); } }