OXIESEC PANEL
- Current Dir:
/
/
home
/
cubot
/
docroot
/
edash
/
jscripts_main
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/03/2023 07:49:02 AM
rwxr-xr-x
📄
.navigate.js.swo
52 KB
08/14/2022 11:11:46 AM
rw-r--r--
📄
access.js
1.53 KB
08/14/2022 11:11:46 AM
rw-r--r--
📄
ajax.js
7.17 KB
08/14/2022 11:11:46 AM
rw-r--r--
📄
dragdrop.js
36.78 KB
08/14/2022 11:11:46 AM
rw-r--r--
📄
dtpick.html
10.86 KB
08/14/2022 11:11:46 AM
rwxr-xr-x
📄
dtree.js
15.2 KB
08/14/2022 11:11:46 AM
rw-r--r--
📄
jquery.js
242.42 KB
08/14/2022 11:11:46 AM
rw-r--r--
📄
navigate.js
40.62 KB
08/14/2022 11:11:46 AM
rw-r--r--
📄
sorttable.js
16.52 KB
08/14/2022 11:11:46 AM
rw-r--r--
📄
tools.js
1.26 KB
08/14/2022 11:11:46 AM
rw-r--r--
📄
validate.js
10.53 KB
08/14/2022 11:11:46 AM
rw-r--r--
📄
validate_admin.js
4.7 KB
08/14/2022 11:11:46 AM
rw-r--r--
Editing: access.js
Close
/* User Functionality Access*/ var USER_ANALYSE=0x00001, USER_PRINT= 0x00002, USER_SPREADSHEET=004, USER_DETAILS=0x00008, USER_ANALYSE_TARGETS=0x00010, USER_DEFINE_MEASURE=0x00020, USER_NEVER_LOGOUT=0x00040, USER_DASHBOARD=0x00200, USER_ALERT=0x00400, USER_PORTAL=0x10000; Uaccess=0; function setUaccess(val){ Uaccess=val; } function UseCubot(){ return true; } function Analyze(){ if(Uaccess & USER_ANALYSE) return true; else return false; } function PrintReport(){ if(Uaccess & USER_PRINT) return true; else return false; } function ExportReport(){ if(Uaccess & USER_SPREADSHEET) return true; else return false; } function DetailReport(){ if(Uaccess & USER_DETAILS) return true; else return false; } function AnalyzeTarget(){ if(Uaccess & USER_ANALYSE_TARGETS) return true; else return false; } function CreateMeasure(){ if(Uaccess & USER_DEFINE_MEASURE) return true; else return false; } function DisableSession(){ if(Uaccess & USER_NEVER_LOGOUT) return true; else return false; } function Dashboard () { if(Uaccess & USER_DASHBOARD) return true; else return false; } function isAlert() { if(Uaccess & USER_ALERT) return true; else return false; } function isPortal() { if(Uaccess & USER_PORTAL) return true; else return false; } /*function addLiToUl(UlName, id, className, content ){ var container = document.getElementById(UlName); var new_element = document.createElement("li"); new_element.innerHTML = content ; new_element.setAttribute("id",id); container.appendChild(new_element); }*/