shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Forms
/
Metrics
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
AbstractMetric.php
<?php namespace Statamic\Forms\Metrics; use Statamic\Contracts\Forms\Form; use Statamic\Contracts\Forms\Metric; use Statamic\Support\Arr; use Statamic\Support\Str; abstract class AbstractMetric implements Metric { /** * @var Form */ private $form; /** * @var array */ private $config; /** * Create a new Metric. * * @param array $config */ public function __construct(Form $form, $config = []) { $this->form = $form; $this->config = $config; } /** * Get the config. * * @return array */ public function config() { return $this->config; } /** * Get a value from the config. * * @param string $key * @param mixed $default * @return mixed */ public function get($key, $default = null) { return Arr::get($this->config(), $key, $default); } /** * Get the form. * * @return Form */ public function form() { return $this->form; } /** * Get the form submissions. * * @return Illuminate\Support\Collection */ public function submissions() { return $this->form()->submissions(); } /** * Get the metric label. * * @return string */ public function label() { return $this->get('label', Str::title($this->get('type'))); } /** * Get the metric result. * * @return mixed */ abstract public function result(); }
© 2026 UnknownSec