Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.52
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
usr /
share /
phpmyadmin /
libraries /
classes /
Gis /
[ HOME SHELL ]
Name
Size
Permission
Action
GisFactory.php
1.27
KB
-rw-r--r--
GisGeometry.php
12.92
KB
-rw-r--r--
GisGeometryCollection.php
12.53
KB
-rw-r--r--
GisLineString.php
11.16
KB
-rw-r--r--
GisMultiLineString.php
14.12
KB
-rw-r--r--
GisMultiPoint.php
13.27
KB
-rw-r--r--
GisMultiPolygon.php
20.39
KB
-rw-r--r--
GisPoint.php
11.24
KB
-rw-r--r--
GisPolygon.php
19.46
KB
-rw-r--r--
GisVisualization.php
21.57
KB
-rw-r--r--
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 * * @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