Linux web0273.sh.tyo1 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64
Apache
: 127.0.0.1 | : 216.73.216.229
Cant Read [ /etc/named.conf ]
8.3.31
r2745769
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
/
usr /
share /
snmp /
[ HOME SHELL ]
Name
Size
Permission
Action
mib2c-data
[ DIR ]
drwxr-xr-x
mibs
[ DIR ]
drwxr-xr-x
snmpconf-data
[ DIR ]
drwxr-xr-x
mib2c.access_functions.conf
6.38
KB
-rw-r--r--
mib2c.array-user.conf
36.82
KB
-rw-r--r--
mib2c.check_values.conf
4.54
KB
-rw-r--r--
mib2c.check_values_local.conf
2.33
KB
-rw-r--r--
mib2c.column_defines.conf
330
B
-rw-r--r--
mib2c.column_enums.conf
602
B
-rw-r--r--
mib2c.column_storage.conf
728
B
-rw-r--r--
mib2c.conf
11.66
KB
-rw-r--r--
mib2c.container.conf
27.54
KB
-rw-r--r--
mib2c.create-dataset.conf
3.39
KB
-rw-r--r--
mib2c.emulation.conf
7.92
KB
-rw-r--r--
mib2c.genhtml.conf
8.3
KB
-rw-r--r--
mib2c.int_watch.conf
3.02
KB
-rw-r--r--
mib2c.iterate.conf
21.82
KB
-rw-r--r--
mib2c.iterate_access.conf
14.74
KB
-rw-r--r--
mib2c.mfd.conf
948
B
-rw-r--r--
mib2c.notify.conf
1.98
KB
-rw-r--r--
mib2c.old-api.conf
8.97
KB
-rw-r--r--
mib2c.perl.conf
8.57
KB
-rw-r--r--
mib2c.raw-table.conf
19.05
KB
-rw-r--r--
mib2c.row.conf
6.87
KB
-rw-r--r--
mib2c.scalar.conf
4.35
KB
-rw-r--r--
mib2c.table_data.conf
22.37
KB
-rw-r--r--
snmp_perl.pl
145
B
-rw-r--r--
snmp_perl_trapd.pl
431
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mib2c.check_values_local.conf
## -*- c -*- ###################################################################### ## Do the .h file ###################################################################### @open ${name}_checkfns_local.h@ /* * Note: this file originally auto-generated by mib2c using * : $Id$ * */ #ifndef $name.uc_CHECKFNS_H #define $name.uc_CHECKFNS_H @foreach $t table@ /* these functions are designed to check incoming values for columns in the $t table for legality with respect to datatype and value according to local conventions. You should modify them as appropriate. They will be called from parent check_value functions that are auto-generated using mib2c and the parent functions should NOT be modified. */ @foreach $i column@ @if $i.access =~ /(Write|Create)/@ int check_${i}_local(int type, $i.decl *val, size_t val_len, $i.decl *old_val, size_t old_val_len); @end@ @end@ @end@ #endif /* $name.uc_CHECKFNS_H */ ###################################################################### ## Do the .c file ###################################################################### @open ${name}_checkfns_local.c@ /* * Note: this file originally auto-generated by mib2c using * $Id$ */ /* standard headers */ #include <net-snmp/net-snmp-config.h> #include <net-snmp/net-snmp-includes.h> #include "${name}_checkfns.h" #include "${name}_enums.h" @run mib2c.column_enums.conf@ @foreach $t table@ @foreach $i column@ @if $i.access =~ /(Write|Create)/@ /** Decides if an incoming value for the $i mib node is legal, from a local implementation specific viewpoint. * @param type The incoming data type. * @param val The value to be checked. * @param val_len The length of data stored in val (in bytes). * @return 0 if the incoming value is legal, an SNMP error code otherwise. */ int check_${i}_local(int type, $i.decl *val, size_t val_len, $i.decl *old_val, size_t old_val_len) { /** XXX: you may want to check aspects of the new value that were not covered by the automatic checks by the parent function. */ /** XXX: you make want to check that the requested change from the old value to the new value is legal (ie, the transistion from one value to another is legal */ /** if everything looks ok, return SNMP_ERR_NOERROR */ return SNMP_ERR_NOERROR; } @end@ @end@ @end@
Close