shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Jobs
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
HandleEntrySchedule.php
<?php namespace Statamic\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Support\Collection; use Statamic\Entries\MinuteEntries; use Statamic\Events\EntryScheduleReached; class HandleEntrySchedule implements ShouldQueue { use Dispatchable, InteractsWithQueue, Queueable; public function handle() { $this->entries()->each(fn ($entry) => EntryScheduleReached::dispatch($entry)); } private function entries(): Collection { // We want to target the PREVIOUS minute because we can be sure that any entries that // were scheduled for then would now be considered published. If we were targeting // the current minute and the entry has defined a time with seconds later in the // same minute, it may still be considered scheduled when it gets dispatched. $minute = now()->subMinute(); return (new MinuteEntries($minute))(); } }
© 2026 UnknownSec