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.223.121.54
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 /
80 /
src /
ext /
phar /
[ HOME SHELL ]
Name
Size
Permission
Action
phar
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
CREDITS
43
B
-rw-r--r--
Makefile.frag
2.71
KB
-rw-r--r--
Makefile.frag.w32
180
B
-rw-r--r--
build_precommand.php
1.24
KB
-rw-r--r--
config.m4
851
B
-rw-r--r--
config.w32
1.46
KB
-rw-r--r--
dirstream.c
19.9
KB
-rw-r--r--
dirstream.h
2.16
KB
-rw-r--r--
func_interceptors.c
35.86
KB
-rw-r--r--
func_interceptors.h
1.44
KB
-rw-r--r--
gdbhelp
2.79
KB
-rw-r--r--
makestub.php
3.78
KB
-rw-r--r--
phar.1.in
10.54
KB
-rw-r--r--
phar.c
104.36
KB
-rw-r--r--
phar.phar.1.in
16
B
-rw-r--r--
phar_internal.h
22.69
KB
-rw-r--r--
phar_object.c
147.54
KB
-rw-r--r--
phar_object.stub.php
14.2
KB
-rw-r--r--
phar_object_arginfo.h
28.73
KB
-rw-r--r--
phar_path_check.c
5.08
KB
-rw-r--r--
phar_path_check.re
3.03
KB
-rw-r--r--
pharzip.h
11.23
KB
-rw-r--r--
php_phar.h
1.61
KB
-rw-r--r--
shortarc.php
8.95
KB
-rw-r--r--
stream.c
32.59
KB
-rw-r--r--
stream.h
2.45
KB
-rw-r--r--
stub.h
8.45
KB
-rw-r--r--
tar.c
43.48
KB
-rw-r--r--
tar.h
3.89
KB
-rw-r--r--
util.c
53.45
KB
-rw-r--r--
zip.c
52.61
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : phar_path_check.re
/* +----------------------------------------------------------------------+ | phar php single-file executable PHP extension | +----------------------------------------------------------------------+ | 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: | | http://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. | +----------------------------------------------------------------------+ | Authors: Marcus Boerger <helly@php.net> | +----------------------------------------------------------------------+ */ #include "phar_internal.h" phar_path_check_result phar_path_check(char **s, size_t *len, const char **error) { const unsigned char *p = (const unsigned char*)*s; const unsigned char *m; if (*len == 1 && *p == '.') { *error = "current directory reference"; return pcr_err_curr_dir; } else if (*len == 2 && p[0] == '.' && p[1] == '.') { *error = "upper directory reference"; return pcr_err_up_dir; } #define YYCTYPE unsigned char #define YYCURSOR p #define YYLIMIT p+*len #define YYMARKER m #define YYFILL(n) do {} while (0) loop: /*!re2c END = "\x00"; NEWLINE = "\r"? "\n"; UTF8T = [\x80-\xBF] ; UTF8_1 = [\x1A-\x7F] ; UTF8_2 = [\xC2-\xDF] UTF8T ; UTF8_3A = "\xE0" [\xA0-\xBF] UTF8T ; UTF8_3B = [\xE1-\xEC] UTF8T{2} ; UTF8_3C = "\xED" [\x80-\x9F] UTF8T ; UTF8_3D = [\xEE-\xEF] UTF8T{2} ; UTF8_3 = UTF8_3A | UTF8_3B | UTF8_3C | UTF8_3D ; UTF8_4A = "\xF0"[\x90-\xBF] UTF8T{2} ; UTF8_4B = [\xF1-\xF3] UTF8T{3} ; UTF8_4C = "\xF4" [\x80-\x8F] UTF8T{2} ; UTF8_4 = UTF8_4A | UTF8_4B | UTF8_4C ; UTF8 = UTF8_1 | UTF8_2 | UTF8_3 | UTF8_4 ; EOS = "/" | END; ANY = . | NEWLINE; "//" { *error = "double slash"; return pcr_err_double_slash; } "/.." EOS { *error = "upper directory reference"; return pcr_err_up_dir; } "/." EOS { *error = "current directory reference"; return pcr_err_curr_dir; } "\\" { *error = "back-slash"; return pcr_err_back_slash; } "*" { *error = "star"; return pcr_err_star; } "?" { if (**s == '/') { (*s)++; } *len = (p - (const unsigned char*)*s) -1; *error = NULL; return pcr_use_query; } UTF8 { goto loop; } END { if (**s == '/') { (*s)++; (*len)--; } if ((p - (const unsigned char*)*s) - 1 != *len) { *error ="illegal character"; return pcr_err_illegal_char; } *error = NULL; return pcr_is_ok; } ANY { *error ="illegal character"; return pcr_err_illegal_char; } */ }
Close