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 /
[ HOME SHELL ]
Name
Size
Permission
Action
.libs
[ DIR ]
drwxr-xr-x
autom4te.cache
[ DIR ]
drwxr-xr-x
bin
[ DIR ]
drwxrwxr-x
build
[ DIR ]
drwxr-xr-x
devel
[ DIR ]
drwxrwxr-x
htdocs
[ DIR ]
drwxrwxr-x
include
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxrwxr-x
mod_assembler
[ DIR ]
drwxrwxr-x
mod_cacher
[ DIR ]
drwxrwxr-x
mod_coverager
[ DIR ]
drwxrwxr-x
mod_decoder
[ DIR ]
drwxrwxr-x
mod_disassembler
[ DIR ]
drwxrwxr-x
mod_encoder
[ DIR ]
drwxrwxr-x
mod_optimizer
[ DIR ]
drwxrwxr-x
modules
[ DIR ]
drwxr-xr-x
processor
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxrwxr-x
util
[ DIR ]
drwxrwxr-x
xcache
[ DIR ]
drwxrwxr-x
.deps
0
B
-rw-r--r--
AUTHORS
26
B
-rw-rw-r--
COPYING
1.47
KB
-rw-rw-r--
ChangeLog
11.9
KB
-rw-rw-r--
INSTALL
487
B
-rw-rw-r--
Makefile
23.56
KB
-rw-r--r--
Makefile.frag
2.05
KB
-rw-rw-r--
Makefile.frag.deps
5.49
KB
-rw-rw-r--
Makefile.fragments
9.8
KB
-rw-r--r--
Makefile.global
6.6
KB
-rw-r--r--
Makefile.objects
4.77
KB
-rw-r--r--
NEWS
3.51
KB
-rw-rw-r--
README
364
B
-rw-rw-r--
THANKS
385
B
-rw-rw-r--
acinclude.m4
78.62
KB
-rw-r--r--
aclocal.m4
303.59
KB
-rw-r--r--
config.guess
44.02
KB
-rwxr-xr-x
config.h
2.58
KB
-rw-r--r--
config.h.in
2.39
KB
-rw-r--r--
config.log
19.67
KB
-rw-r--r--
config.m4
4.59
KB
-rw-rw-r--
config.nice
118
B
-rwxr-xr-x
config.status
20.82
KB
-rwxr-xr-x
config.sub
34.94
KB
-rwxr-xr-x
config.w32
4.93
KB
-rw-rw-r--
configure
442.56
KB
-rwxr-xr-x
configure.in
4.58
KB
-rw-r--r--
gen_structinfo.awk
3.76
KB
-rwxrwxr-x
includes.c
108
B
-rw-rw-r--
includes.i
413.44
KB
-rw-r--r--
install-sh
0
B
-rw-r--r--
libtool
205.71
KB
-rwxr-xr-x
ltmain.sh
195.05
KB
-rw-r--r--
missing
0
B
-rw-r--r--
mkinstalldirs
0
B
-rw-r--r--
processor.out.c
498.99
KB
-rw-r--r--
run-tests.php
78.1
KB
-rw-r--r--
run-xcachetest
1.34
KB
-rwxrwxr-x
structinfo.m4
74.93
KB
-rw-r--r--
xc_processor.c.h
498.99
KB
-rw-r--r--
xc_processor.h
9.06
KB
-rw-r--r--
xcache-test.ini
656
B
-rw-rw-r--
xcache-zh-gb2312.ini
2.51
KB
-rw-rw-r--
xcache.c
25.44
KB
-rw-rw-r--
xcache.h
709
B
-rw-rw-r--
xcache.ini
3.04
KB
-rw-rw-r--
xcache.la
788
B
-rw-r--r--
xcache.lo
303
B
-rw-r--r--
xcache_globals.h
1.29
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gen_structinfo.awk
#! /usr/bin/awk -f # vim:ts=4:sw=4 BEGIN { brace = 0; incomment = 0; buffer_len = 0; } function printstruct(structname) { printf "define(`ELEMENTSOF_%s', `%s')\n", structname, ELEMENTSOF[structname]; printf "define(`COUNTOF_%s', `%s')\n", structname, COUNTOF[structname]; printf "define(`SIZEOF_%s', `( %s )')\n", structname, SIZEOF[structname]; } function countBrace(text, len, i, char, braceCount) { len = length(text); braceCount = 0; for (i = 1; i <= len; ++i) { char = substr(text, i, 1); if (char == "{") { braceCount = braceCount + 1; } else if (char == "}") { braceCount = braceCount - 1; } } return braceCount; } # multiline comment handling { # removes one line comment gsub(/\/\*(.+?)\*\//, " "); } /\*\// { if (incomment) { sub(/.*\*\//, ""); incomment = 0; } } incomment { next; } /\/\*/ { sub(/\/\*.*/, ""); incomment = 1; # fall through } # skip file/line mark here to be faster /^#/ { next; } /^}.*;/ { if (instruct) { sub(";", ""); structname = instruct; if (structname == 1 && $2) { structname = $2; } if (structname in typedefs) { structname = typedefs[structname]; } sizeinfo = ""; elms = ""; for (i = 0; i in buffer; i ++) { if (i) { sizeinfo = sizeinfo " + "; } sizeinfo = sizeinfo "sizeof(((" structname "*)NULL)->" buffer[i] ")"; if (i == 0) { elms = "\"" buffer[i] "\""; } else { elms = elms "," "\"" buffer[i] "\""; } } ELEMENTSOF[structname] = elms; COUNTOF[structname] = i; SIZEOF[structname] = sizeinfo; printstruct(structname); print "\n"; for (i in buffer) { delete buffer[i]; } buffer_len = 0; instruct = 0; } next; } /.[{}]/ { brace += countBrace($0); } { if (brace == 1 && instruct) { gsub(/(^[\t ]+|[\t ]+$)/, ""); # trim whitespaces sub(/.*[{}]/, ""); gsub(/\[[^\]]+\]/, ""); # ignore [...] gsub(/:[0-9]+/, ""); # ignore struct bit if (match($0, /^[^(]*\([ ]*\*([^)]+)\)/)) { sub(/ +/, "") sub(/^[^(]*\(\*/, ""); sub(/\).*/, ""); # function pointer buffer[buffer_len] = $0; buffer_len ++; } else { # process normal variables # ignore any ()s while (gsub(/(\([^)]*\))/, "")) { } if (match($0, /[()]/)) { next; } # unsigned int *a, b; int c; gsub(/[*]/, " "); # unsigned int a, b; int c; gsub(/ +/, " "); # unsigned int a, b; int c; gsub(/ *[,;]/, ";"); # unsigned int a; b; int c; if (!match($0, /;/)) { next; } # print "=DEBUG=" $0 "=="; split($0, chunks, ";"); # [unsigned int a, b, c] for (i = 1; i in chunks; i ++) { if (chunks[i] == "") { delete chunks[i]; continue; } split(chunks[i], pieces, " "); # [unsigned, int, a] # [b] # [c] last_piece = ""; for (j = 1; j in pieces; j ++) { last_piece = pieces[j]; delete pieces[j]; } if (last_piece == "") { # print "=ERROR=" chunks[i] "=="; delete chunks[i]; continue; } # a # b # c buffer[buffer_len] = last_piece; buffer_len ++; delete chunks[i] } last_piece = ""; } next; } } /^typedef struct [^{]*;/ { sub(";", ""); typename=$3; newtypename=$4; typedefs[typename] = newtypename; if (ELEMENTSOF[typename]) { ELEMENTSOF[newtypename] = ELEMENTSOF[typename]; COUNTOF[newtypename] = COUNTOF[typename]; sub(/.*/, SIZEOF[typename]); gsub(typename, newtypename); SIZEOF[newtypename] = $0; printstruct(newtypename); } next; } /^typedef struct .*\{[^}]*$/ { brace = countBrace($0); if (brace > 0) { instruct = 1; } else { brace = 0; instruct = 0; } for (i in buffer) { delete buffer[i]; } next; } /^struct .*\{.*/ { brace = countBrace($0); if (brace > 0) { instruct = $2; } else { brace = 0; instruct = 0; } for (i in buffer) { delete buffer[i]; } next; }
Close