Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.226.169.169
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
website /
uniclare /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
vendor
[ DIR ]
drwxr-sr-x
contact-form.js
2.55
KB
-rwxr-xr-x
counter.js
3.42
KB
-rwxr-xr-x
jquery-modal-video.min.js
6.15
KB
-rwxr-xr-x
jquery.ajaxchimp.js
5.46
KB
-rwxr-xr-x
jquery.sticky.js
9.75
KB
-rwxr-xr-x
main.js
7.79
KB
-rwxr-xr-x
maps.active.js
2.54
KB
-rwxr-xr-x
owl.carousel.min.js
39.46
KB
-rwxr-xr-x
slick.min.js
41.86
KB
-rwxr-xr-x
stellar.js
22.73
KB
-rwxr-xr-x
stellarnav.min.js
3.81
KB
-rwxr-xr-x
wow.min.js
8.23
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : maps.active.js
// When the window has finished loading create our google map below google.maps.event.addDomListener(window, 'load', init); function init() { // Basic options for a simple Google Map // For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions var mapOptions = { // How zoomed in you want the map to start at (always required) zoom: 11, scrollwheel: false, // The latitude and longitude to center the map (always required) center: new google.maps.LatLng(40.6700, -73.9400), // Replace latitude and longitude for your palce. styles: [{ "featureType": "administrative.country", "elementType": "labels.text.fill", "stylers": [{ "visibility": "on" }] }, { "featureType": "administrative.locality", "elementType": "labels.text.stroke", "stylers": [{ "visibility": "simplified" }] }, { "featureType": "poi", "elementType": "all", "stylers": [{ "visibility": "off" }] }, { "featureType": "road", "elementType": "all", "stylers": [{ "saturation": -100 }, { "lightness": 45 }] }, { "featureType": "road.highway", "elementType": "labels.icon", "stylers": [{ "visibility": "on" }] }] }; // Get the HTML DOM element that will contain your map // We are using a div with id="map" seen below in the <body> var mapElement = document.getElementById('map'); // Create the Google Map using our element and options defined above var map = new google.maps.Map(mapElement, mapOptions); // Let's also add a marker while we're at it var marker = new google.maps.Marker({ position: new google.maps.LatLng(40.6700, -73.9400), map: map, icon: 'img/map-marker.png', title: 'WEEDING DAY!' }); }
Close