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.221.240.14
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 : work_entry_report.js
function load_page() { load_page_data( window.location.href.substr(window.location.href.lastIndexOf("/") + 1) ); clrs_data(); load_dept_data(); } function clrs_data() { $(function () { $("#txtworkdat1").datepicker({ dateFormat: "dd/mm/yy" }); }); $(function () { $("#txtworkdat2").datepicker({ dateFormat: "dd/mm/yy" }); }); $("#page-container-grid").empty(); document.getElementById("txtrepttype").focus(); document.getElementById("txtworkdat1").value = get_today_date(); document.getElementById("txtworkdat2").value = get_today_date(); document.getElementById("txtrepttype").value = "0"; } function load_dept_data() { $.ajax({ type: "POST", url: "src/work_entry_report.php", data: { load_data: "dept_data", }, cache: false, success: function (data) { $("#txtdeptcode").html(data); load_empl_data(); }, }); } function load_empl_data() { $.ajax({ type: "POST", url: "src/work_entry_report.php", data: { load_data: "empl_data", dept_code: document.getElementById("txtdeptcode").value, }, cache: false, success: function (data) { $("#txtemplcode").html(data); }, }); } function rept_data() { if (document.getElementById("txtdeptcode").value == "") { alert("Please select client!"); txtdeptcode.focus(); return false; } if (document.getElementById("txtemplcode").value == 0) { alert("Please select employee!"); txtemplcode.focus(); return false; } if (document.getElementById("txtrepttype").value == 0) { alert("Select report type"); txtrepttype.focus(); return false; } if (document.getElementById("txtrepttype").value == "work_done_list") { report_work_done_list(); } if (document.getElementById("txtrepttype").value == "work_done_assn") { report_work_done_assn(); } if (document.getElementById("txtrepttype").value == "work_done_empl") { report_work_done_empl(); } // if (document.getElementById("txtrepttype").value == "work_done_stat") { // report_work_done_stat(); // } } function report_work_done_stat() { $host = "oums"; $.ajax({ type: "POST", url: "src/work_entry_report_work_done_stat.php", dataType: "json", data: { dept_code: document.getElementById("txtdeptcode").value, empl_code: document.getElementById("txtemplcode").value, work_dat1: document.getElementById("txtworkdat1").value, work_dat2: document.getElementById("txtworkdat2").value, }, cache: false, beforeSend: function () { show_process(); }, success: function (data) { hide_process(); if (data.stat != "F") { window.open("src/" + data.file,'_blank'); } else { alert(data.mesg); } //$('#page-container-grid').html('Error: '+data); }, error: function (data) { hide_process(); //$('#page-container-grid').html('Error: '+data); }, }); } function report_work_done_list() { $host = "oums"; $.ajax({ type: "POST", url: "src/work_entry_report_work_done_list.php", dataType: "json", data: { dept_code: document.getElementById("txtdeptcode").value, empl_code: document.getElementById("txtemplcode").value, work_dat1: document.getElementById("txtworkdat1").value, work_dat2: document.getElementById("txtworkdat2").value, }, cache: false, beforeSend: function () { show_process(); }, success: function (data) { hide_process(); if (data.stat != "F") { window.open("src/" + data.file,'_blank'); } else { alert(data.mesg); } //$('#page-container-grid').html('Error: '+data); }, error: function (data) { hide_process(); //$('#page-container-grid').html('Error: '+data); }, }); } function report_work_done_assn() { $host = "oums"; $.ajax({ type: "POST", url: "src/work_entry_report_work_done_assigned.php", dataType: "json", data: { dept_code: document.getElementById("txtdeptcode").value, empl_code: document.getElementById("txtemplcode").value, work_dat1: document.getElementById("txtworkdat1").value, work_dat2: document.getElementById("txtworkdat2").value, }, cache: false, beforeSend: function () { show_process(); }, success: function (data) { hide_process(); if (data.stat != "F") { window.open("src/" + data.file,'_blank'); } else { alert(data.mesg); } //$('#page-container-grid').html('Error: '+data); }, error: function (data) { hide_process(); //$('#page-container-grid').html('Error: '+data); }, }); } function report_work_done_empl() { $host = "oums"; $.ajax({ type: "POST", url: "src/work_entry_report_work_done_employee.php", dataType: "json", data: { dept_code: document.getElementById("txtdeptcode").value, empl_code: document.getElementById("txtemplcode").value, work_dat1: document.getElementById("txtworkdat1").value, work_dat2: document.getElementById("txtworkdat2").value, }, cache: false, beforeSend: function () { show_process(); }, success: function (data) { hide_process(); if (data.stat != "F") { window.open("src/" + data.file,'_blank'); } else { alert(data.mesg); } //$('#page-container-grid').html('Error: '+data); }, error: function (data) { hide_process(); //$('#page-container-grid').html('Error: '+data); }, }); }
Close