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 /
include /
net-snmp /
agent /
[ HOME SHELL ]
Name
Size
Permission
Action
util_funcs
[ DIR ]
drwxr-xr-x
agent_callbacks.h
801
B
-rw-r--r--
agent_handler.h
11.3
KB
-rw-r--r--
agent_index.h
1.49
KB
-rw-r--r--
agent_module_config.h
1.23
KB
-rw-r--r--
agent_read_config.h
1.19
KB
-rw-r--r--
agent_registry.h
5.86
KB
-rw-r--r--
agent_sysORTable.h
869
B
-rw-r--r--
agent_trap.h
2.37
KB
-rw-r--r--
all_helpers.h
1.19
KB
-rw-r--r--
auto_nlist.h
605
B
-rw-r--r--
baby_steps.h
3.4
KB
-rw-r--r--
bulk_to_next.h
563
B
-rw-r--r--
cache_handler.h
4.62
KB
-rw-r--r--
debug_handler.h
328
B
-rw-r--r--
ds_agent.h
3.77
KB
-rw-r--r--
instance.h
6.12
KB
-rw-r--r--
mfd.h
2.62
KB
-rw-r--r--
mib_module_config.h
34.89
KB
-rw-r--r--
mib_module_includes.h
14.06
KB
-rw-r--r--
mib_modules.h
428
B
-rw-r--r--
mode_end_call.h
871
B
-rw-r--r--
multiplexer.h
975
B
-rw-r--r--
net-snmp-agent-includes.h
756
B
-rw-r--r--
null.h
464
B
-rw-r--r--
old_api.h
1.39
KB
-rw-r--r--
read_only.h
540
B
-rw-r--r--
row_merge.h
1.32
KB
-rw-r--r--
scalar.h
783
B
-rw-r--r--
scalar_group.h
983
B
-rw-r--r--
serialize.h
600
B
-rw-r--r--
set_helper.h
542
B
-rw-r--r--
snmp_agent.h
11.89
KB
-rw-r--r--
snmp_get_statistic.h
836
B
-rw-r--r--
snmp_vars.h
4.58
KB
-rw-r--r--
stash_cache.h
1.4
KB
-rw-r--r--
stash_to_next.h
377
B
-rw-r--r--
struct.h
917
B
-rw-r--r--
sysORTable.h
2.4
KB
-rw-r--r--
table.h
7.34
KB
-rw-r--r--
table_array.h
5.33
KB
-rw-r--r--
table_container.h
3.96
KB
-rw-r--r--
table_data.h
5.47
KB
-rw-r--r--
table_dataset.h
7.73
KB
-rw-r--r--
table_iterator.h
6.76
KB
-rw-r--r--
table_tdata.h
6.54
KB
-rw-r--r--
util_funcs.h
3.24
KB
-rw-r--r--
var_struct.h
4.91
KB
-rw-r--r--
watcher.h
5.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : agent_registry.h
#ifndef AGENT_REGISTRY_H #define AGENT_REGISTRY_H /***********************************************************************/ /* * new version2 agent handler API structures */ /***********************************************************************/ #include <net-snmp/agent/snmp_agent.h> #include <net-snmp/library/fd_event_manager.h> #ifdef __cplusplus extern "C" { #endif /***********************************************************************/ /* * requests api definitions */ /***********************************************************************/ /* * the structure of parameters passed to registered ACM modules */ struct view_parameters { netsnmp_pdu *pdu; oid *name; size_t namelen; int test; int errorcode; /* Do not change unless you're specifying an error, as it starts in a success state. */ int check_subtree; }; struct register_parameters { oid *name; size_t namelen; int priority; int range_subid; oid range_ubound; int timeout; u_char flags; const char *contextName; netsnmp_session *session; netsnmp_handler_registration *reginfo; }; typedef struct subtree_context_cache_s { const char *context_name; struct netsnmp_subtree_s *first_subtree; struct subtree_context_cache_s *next; } subtree_context_cache; void setup_tree (void); void shutdown_tree (void); netsnmp_subtree *netsnmp_subtree_find (const oid *, size_t, netsnmp_subtree *, const char *context_name); netsnmp_subtree *netsnmp_subtree_find_next(const oid *, size_t, netsnmp_subtree *, const char *context_name); netsnmp_subtree *netsnmp_subtree_find_prev(const oid *, size_t, netsnmp_subtree *, const char *context_name); netsnmp_subtree *netsnmp_subtree_find_first(const char *context_name); netsnmp_session *get_session_for_oid (const oid *, size_t, const char *context_name); subtree_context_cache *get_top_context_cache(void); void netsnmp_set_lookup_cache_size(int newsize); int netsnmp_get_lookup_cache_size(void); #define MIB_REGISTERED_OK 0 #define MIB_DUPLICATE_REGISTRATION -1 #define MIB_REGISTRATION_FAILED -2 #define MIB_UNREGISTERED_OK 0 #define MIB_NO_SUCH_REGISTRATION -1 #define MIB_UNREGISTRATION_FAILED -2 #define DEFAULT_MIB_PRIORITY 127 int register_mib (const char *, struct variable *, size_t, size_t, const oid *, size_t); int register_mib_priority (const char *, struct variable *, size_t, size_t, const oid *, size_t, int); int register_mib_range (const char *, struct variable *, size_t, size_t, const oid *, size_t, int, int, oid, netsnmp_session *); int register_mib_context (const char *, struct variable *, size_t, size_t, const oid *, size_t, int, int, oid, netsnmp_session *, const char *, int, int); int netsnmp_register_mib_table_row (const char *, struct variable *, size_t, size_t, oid *, size_t, int, int, netsnmp_session *, const char *, int, int); int unregister_mib (oid *, size_t); int unregister_mib_priority (oid *, size_t, int); int unregister_mib_range (oid *, size_t, int, int, oid); int unregister_mib_context (oid *, size_t, int, int, oid, const char *); void clear_context (void); void unregister_mibs_by_session (netsnmp_session *); int netsnmp_unregister_mib_table_row (oid *mibloc, size_t mibloclen, int priority, int var_subid, oid range_ubound, const char *context); int compare_tree (const oid *, size_t, const oid *, size_t); int in_a_view (oid *, size_t *, netsnmp_pdu *, int); int check_access (netsnmp_pdu *pdu); int netsnmp_acm_check_subtree (netsnmp_pdu *, oid *, size_t); void register_mib_reattach (void); void register_mib_detach (void); /* * REGISTER_MIB(): This macro simply loads register_mib with less pain: * * descr: A short description of the mib group being loaded. * var: The variable structure to load. * vartype: The variable structure used to define it (variable[2, 4, ...]) * theoid: An *initialized* *exact length* oid pointer. * (sizeof(theoid) *must* return the number of elements!) */ #define REGISTER_MIB(descr, var, vartype, theoid) \ if (register_mib(descr, (struct variable *) var, sizeof(struct vartype), \ sizeof(var)/sizeof(struct vartype), \ theoid, sizeof(theoid)/sizeof(oid)) != MIB_REGISTERED_OK ) \ DEBUGMSGTL(("register_mib", "%s registration failed\n", descr)); #define NUM_EXTERNAL_SIGS 32 #define SIG_REGISTERED_OK 0 #define SIG_REGISTRATION_FAILED -2 #define SIG_UNREGISTERED_OK 0 extern int external_signal_scheduled[NUM_EXTERNAL_SIGS]; extern void (*external_signal_handler[NUM_EXTERNAL_SIGS])(int); int register_signal(int, void (*func)(int)); int unregister_signal(int); /* * internal API. Don't use this. Use netsnmp_register_handler instead */ struct netsnmp_handler_registration_s; int netsnmp_register_mib(const char *, struct variable *, size_t, size_t, oid *, size_t, int, int, oid, netsnmp_session *, const char *, int, int, struct netsnmp_handler_registration_s *, int); #ifdef __cplusplus } #endif #endif /* AGENT_REGISTRY_H */
Close