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
/
usr /
share /
phpmyadmin /
libraries /
gis /
[ HOME SHELL ]
Name
Size
Permission
Action
GISFactory.php
1.31
KB
-rw-r--r--
GISGeometry.php
12.36
KB
-rw-r--r--
GISGeometrycollection.php
12.31
KB
-rw-r--r--
GISLinestring.php
10.66
KB
-rw-r--r--
GISMultilinestring.php
13.59
KB
-rw-r--r--
GISMultipoint.php
12.37
KB
-rw-r--r--
GISMultipolygon.php
19.63
KB
-rw-r--r--
GISPoint.php
10.39
KB
-rw-r--r--
GISPolygon.php
18.88
KB
-rw-r--r--
GISVisualization.php
20.09
KB
-rw-r--r--
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 */ namespace PMA\libraries\gis; use PMA; /** * 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 GISGeometry 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