Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.118.173.146
Cant Read [ /etc/named.conf ]
8.1.13
www
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
/
www /
server /
php /
81 /
src /
ext /
zip /
[ HOME SHELL ]
Name
Size
Permission
Action
.libs
[ DIR ]
drwxr-xr-x
autom4te.cache
[ DIR ]
drwxr-xr-x
build
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
CREDITS
35
B
-rw-r--r--
Makefile
9.49
KB
-rw-r--r--
Makefile.fragments
0
B
-rw-r--r--
Makefile.objects
1
KB
-rw-r--r--
config.h
2.15
KB
-rw-r--r--
config.h.in
2.03
KB
-rw-r--r--
config.log
22.65
KB
-rw-r--r--
config.m4
1.81
KB
-rw-r--r--
config.nice
114
B
-rwxr-xr-x
config.status
20.85
KB
-rwxr-xr-x
config.w32
1.05
KB
-rw-r--r--
configure
456.13
KB
-rwxr-xr-x
configure.ac
5.17
KB
-rw-r--r--
libtool
206.17
KB
-rwxr-xr-x
php_zip.c
80.88
KB
-rw-r--r--
php_zip.dep
5.25
KB
-rw-r--r--
php_zip.h
2.46
KB
-rw-r--r--
php_zip.lo
305
B
-rw-r--r--
php_zip.stub.php
6.97
KB
-rw-r--r--
php_zip_arginfo.h
23.43
KB
-rw-r--r--
run-tests.php
137.54
KB
-rw-r--r--
zip.la
812
B
-rw-r--r--
zip_stream.c
7.75
KB
-rw-r--r--
zip_stream.dep
4.93
KB
-rw-r--r--
zip_stream.lo
311
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : php_zip.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Pierre-Alain Joye <pajoye@php.net> | +----------------------------------------------------------------------+ */ #ifndef PHP_ZIP_H #define PHP_ZIP_H extern zend_module_entry zip_module_entry; #define phpext_zip_ptr &zip_module_entry #ifdef ZTS #include "TSRM.h" #endif #include <zip.h> #ifndef ZIP_OVERWRITE #define ZIP_OVERWRITE ZIP_TRUNCATE #endif #define PHP_ZIP_VERSION "1.19.5" #define ZIP_OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename) typedef struct _ze_zip_rsrc { struct zip *za; zip_uint64_t index_current; zip_int64_t num_files; } zip_rsrc; typedef zip_rsrc * zip_rsrc_ptr; typedef struct _ze_zip_read_rsrc { struct zip_file *zf; struct zip_stat sb; } zip_read_rsrc; /* Extends zend object */ typedef struct _ze_zip_object { struct zip *za; char **buffers; HashTable *prop_handler; char *filename; int filename_len; int buffers_cnt; zip_int64_t last_id; int err_zip; int err_sys; #ifdef HAVE_PROGRESS_CALLBACK zval progress_callback; #endif #ifdef HAVE_CANCEL_CALLBACK zval cancel_callback; #endif zend_object zo; } ze_zip_object; static inline ze_zip_object *php_zip_fetch_object(zend_object *obj) { return (ze_zip_object *)((char*)(obj) - XtOffsetOf(ze_zip_object, zo)); } #define Z_ZIP_P(zv) php_zip_fetch_object(Z_OBJ_P((zv))) php_stream *php_stream_zip_opener(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, zend_string **opened_path, php_stream_context *context STREAMS_DC); php_stream *php_stream_zip_open(struct zip *arch, const char *path, const char *mode STREAMS_DC); extern const php_stream_wrapper php_stream_zip_wrapper; #endif /* PHP_ZIP_H */
Close