Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 3.22.171.120
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lionsclub /
core /
resources /
views /
dashboard /
[ HOME SHELL ]
Name
Size
Permission
Action
analytics
[ DIR ]
drwxr-xr-x
banners
[ DIR ]
drwxr-xr-x
categories
[ DIR ]
drwxr-xr-x
contacts
[ DIR ]
drwxr-xr-x
events
[ DIR ]
drwxr-xr-x
inbox
[ DIR ]
drwxr-xr-x
layouts
[ DIR ]
drwxr-xr-x
menus
[ DIR ]
drwxr-xr-x
permissions
[ DIR ]
drwxr-xr-x
settings
[ DIR ]
drwxr-xr-x
topics
[ DIR ]
drwxr-xr-x
users
[ DIR ]
drwxr-xr-x
webmaster
[ DIR ]
drwxr-xr-x
.DS_Store
10
KB
-rw-r--r--
home.blade.php
38.23
KB
-rw-r--r--
search.blade.php
12.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : search.blade.php
@extends('dashboard.layouts.master') @section('title', Helper::GeneralSiteSettings("site_title_".@Helper::currentLanguage()->code)) @section('content') <div class="padding"> {{Form::open(['route'=>['adminFind'],'method'=>'POST', 'class' => "m-b-md" ])}} <div class="input-group input-group-lg"> <input type="text" name="q" value="{{ $search_word }}" class="form-control" placeholder="{{ __('backend.search') }}..." required> <span class="input-group-btn"> <button class="btn b-a no-shadow white" type="submit">{{ __('backend.search') }}</button> </span> </div> {{Form::close()}} <p class="m-b-md"> <strong>{{ $totalcount = count($Topics) + count($Sections) + count($Contacts) + count($Events) + count($Webmails) }}</strong> {{ __('backend.resultsFoundFor') }} : <strong>{{ $search_word }}</strong></p> <ul class="nav nav-sm nav-pills nav-active-primary clearfix"> @if(count($Topics)>0) <li class="nav-item"> <a class="nav-link {{ ($active_tab==1) ? "active":"" }}" href data-toggle="tab" data-target="#tab_1"> {{ __('backend.pages') }} <span class="label label-xs primary m-l-xs">{{count($Topics)}}</span></a> </li> @endif @if(count($Sections)>0) <li class="nav-item"> <a class="nav-link {{ ($active_tab==2) ? "active":"" }}" href data-toggle="tab" data-target="#tab_2"> {{ __('backend.categories') }} <span class="label label-xs primary m-l-xs">{{count($Sections)}}</span></a> </li> @endif @if(count($Contacts)>0) <li class="nav-item"> <a class="nav-link {{ ($active_tab==3) ? "active":"" }}" href data-toggle="tab" data-target="#tab_3"> {{ __('backend.newsletter') }} <span class="label label-xs primary m-l-xs">{{count($Contacts)}}</span></a> </li> @endif @if(count($Events)>0) <li class="nav-item"> <a class="nav-link {{ ($active_tab==4) ? "active":"" }}" href data-toggle="tab" data-target="#tab_4"> {{ __('backend.notesEvents') }} <span class="label label-xs primary m-l-xs">{{count($Events)}}</span></a> </li> @endif @if(count($Webmails)>0) <li class="nav-item"> <a class="nav-link {{ ($active_tab==5) ? "active":"" }}" href data-toggle="tab" data-target="#tab_5"> {{ __('backend.inbox') }} <span class="label label-xs primary m-l-xs">{{count($Webmails)}}</span></a> </li> @endif </ul> <div class="tab-content"> @if(count($Topics)>0) <div class="tab-pane p-v-sm {{ ($active_tab==1) ? "active":"" }}" id="tab_1"> <?php $title_var = "title_" . @Helper::currentLanguage()->code; $title_var2 = "title_" . env('DEFAULT_LANGUAGE'); $details_var = "details_" . @Helper::currentLanguage()->code; ?> @foreach($Topics as $Topic) <?php if ($Topic->$title_var != "") { $title = $Topic->$title_var; } else { $title = $Topic->$title_var2; } $section = ""; try { if ($Topic->section->$title_var != "") { $section = $Topic->section->$title_var; } else { $section = $Topic->section->$title_var2; } } catch (Exception $e) { $section = ""; } if (strlen(stripcslashes(strip_tags($Topic->$details_var))) > 300) { $details = mb_substr(stripcslashes(strip_tags($Topic->$details_var)), 0, 300, 'UTF-8') . "..."; } else { $details = stripcslashes(strip_tags($Topic->$details_var)); } ?> <div class="box m-t p-a-sm"> <ul class="list m-b-0"> <li class="list-item"> @if($Topic->photo_file !="") <div class="pull-left pull-none-xs m-r m-b w p-a-xs b-a"> <img src="{{ asset('uploads/topics/'.$Topic->photo_file) }}" style="height: 40px" alt="{{ $title }}" class="w-full"> </div> @endif <div class="clear"> <h5 class="m-a-0 m-b-sm text-primary"><a href="{{ route("topicsEdit",["webmasterId"=>$Topic->webmaster_id,"id"=>$Topic->id]) }}">{{ $title }}</a> </h5> <p class="text-muted m-b-0">{!! $details !!}</p> <p><span class="label m-r">{!! $section !!}</span> </p> </div> </li> </ul> </div> @endforeach </div> @endif @if(count($Sections)>0) <div class="tab-pane p-v-sm {{ ($active_tab==2) ? "active":"" }}" id="tab_2"> <div class="box m-t p-a-sm"> <ul class="list m-b-0"> <?php $title_var = "title_" . @Helper::currentLanguage()->code; $title_var2 = "title_" . env('DEFAULT_LANGUAGE'); ?> @foreach($Sections as $Section) <?php if ($Section->$title_var != "") { $title = $Section->$title_var; } else { $title = $Section->$title_var2; } ?> <li class="list-item"> <div class="clear"> <h5 class="m-a-0 m-b-sm text-primary"><a href="{{ route("categoriesEdit",["webmasterId"=>$Section->webmaster_id,"id"=>$Section->id]) }}">{{ $title }}</a> </h5> </div> </li> @endforeach </ul> </div> </div> @endif @if(count($Contacts)>0) <div class="tab-pane p-v-sm {{ ($active_tab==3) ? "active":"" }}" id="tab_3"> <div class="m-t"> <div class="row row-sm"> @foreach($Contacts as $Contact) <div class="col-xs-6 col-lg-4"> <div class="list-item box r m-b"> <a href="{{ route("contactsEdit",["id"=>$Contact->id]) }}" class="list-left"> <span class="w-40 avatar"> @if($Contact->photo!="") <img src="{{ asset('uploads/contacts/'.$Contact->photo) }}" class="on b-white bottom"> @else <img src="{{ asset('uploads/contacts/profile.jpg') }}" class="on b-white bottom" style="opacity: 0.5"> @endif </span> </a> <div class="list-body"> <div class="text-ellipsis"><a href="{{ route("contactsEdit",["id"=>$Contact->id]) }}">{{ $Contact->first_name }} {{ $Contact->last_name }}</a> </div> <small class="text-muted text-ellipsis"> <span dir="ltr">{{ $Contact->phone }}</span> </small> </div> </div> </div> @endforeach </div> </div> </div> @endif @if(count($Events)>0) <div class="tab-pane p-v-sm {{ ($active_tab==4) ? "active":"" }}" id="tab_4"> @foreach($Events as $Event) <div class="box m-t p-a-sm"> <ul class="list m-b-0"> <li class="list-item"> <div class="clear"> <h5 class="m-a-0 m-b-sm text-primary"> <span class="label m-r" style="margin-bottom: 5px;"> @if($Event->type ==3 || $Event->type ==2) {{ date('d M Y h:i A', strtotime($Event->start_date)) }} @else {{ date('d M Y', strtotime($Event->start_date)) }} @endif </span><br> <a href="{{ route("calendarEdit",["id"=>$Event->id]) }}">{{ $Event->title }}</a> </h5> <p class="text-muted m-b-0">{!! nl2br($Event->details) !!}</p> </div> </li> </ul> </div> @endforeach </div> @endif @if(count($Webmails)>0) <div class="tab-pane p-v-sm {{ ($active_tab==5) ? "active":"" }}" id="tab_5"> @foreach($Webmails as $Webmail) <?php if (strlen(stripcslashes(strip_tags($Webmail->details))) > 300) { $details = mb_substr(stripcslashes(strip_tags($Webmail->details)), 0, 300, 'UTF-8') . "..."; } else { $details = stripcslashes(strip_tags($Webmail->details)); } ?> <div class="box m-t p-a-sm"> <ul class="list m-b-0"> <li class="list-item"> <div class="clear"><span class="label m-r"> {{ date('d M Y', strtotime($Webmail->date)) }} </span> <h5 class="m-a-0 m-b-sm text-primary"><a href="{{ route("webmailsEdit",["id"=>$Webmail->id]) }}">{{ $Webmail->title }}</a> </h5> <p class="text-muted m-b-0">{!! $Webmail->details !!}</p> </div> </li> </ul> </div> @endforeach </div> @endif </div> </div> @endsection
Close