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

/home/webmaster/bottegadicalabria/test/vendor/bin/

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

File Path : /home/webmaster/bottegadicalabria/test/vendor/bin/static-review.php

#!/usr/bin/env php <?php /* * This file is part of StaticReview * * Copyright (c) 2014 Samuel Parkinson <@samparkinson_> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @see http://github.com/sjparkinson/static-review/blob/master/LICENSE.md */ $included = include file_exists(__DIR__ . '/../vendor/autoload.php') ? __DIR__ . '/../vendor/autoload.php' : __DIR__ . '/../../../autoload.php'; if (! $included) { echo 'You must set up the project dependencies, run the following commands:' . PHP_EOL . 'curl -sS https://getcomposer.org/installer | php' . PHP_EOL . 'php composer.phar install' . PHP_EOL; exit(1); } use StaticReview\Command\HookInstallCommand; use StaticReview\Command\HookListCommand; use StaticReview\Command\HookRunCommand; use Symfony\Component\Console\Application; $name = 'StaticReview Command Line Tool'; $version = '3.0.0'; $console = new Application($name, $version); $console->addCommands([ new HookListCommand(), new HookInstallCommand(), new HookRunCommand(), ]); $console->run();