Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
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 /
local /
include /
yara /
[ HOME SHELL ]
Name
Size
Permission
Action
ahocorasick.h
2.61
KB
-rw-r--r--
arena.h
8.74
KB
-rw-r--r--
atoms.h
3.65
KB
-rw-r--r--
base64.h
1.82
KB
-rw-r--r--
bitmask.h
3.39
KB
-rw-r--r--
compiler.h
13.5
KB
-rw-r--r--
error.h
6.73
KB
-rw-r--r--
exec.h
7.64
KB
-rw-r--r--
exefiles.h
1.71
KB
-rw-r--r--
filemap.h
2.39
KB
-rw-r--r--
hash.h
3.74
KB
-rw-r--r--
integers.h
2.99
KB
-rw-r--r--
libyara.h
3.87
KB
-rw-r--r--
limits.h
5.94
KB
-rw-r--r--
mem.h
2.03
KB
-rw-r--r--
modules.h
14.3
KB
-rw-r--r--
notebook.h
356
B
-rw-r--r--
object.h
4.24
KB
-rw-r--r--
parser.h
3.98
KB
-rw-r--r--
proc.h
2.13
KB
-rw-r--r--
re.h
5.53
KB
-rw-r--r--
rules.h
4.94
KB
-rw-r--r--
scan.h
2.01
KB
-rw-r--r--
scanner.h
3.23
KB
-rw-r--r--
simple_str.h
489
B
-rw-r--r--
sizedstr.h
2.82
KB
-rw-r--r--
stack.h
2.2
KB
-rw-r--r--
stopwatch.h
2.3
KB
-rw-r--r--
stream.h
2.05
KB
-rw-r--r--
strutils.h
2.96
KB
-rw-r--r--
threading.h
2.26
KB
-rw-r--r--
types.h
29.34
KB
-rw-r--r--
unaligned.h
2.86
KB
-rw-r--r--
utils.h
4.95
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : object.h
/* Copyright (c) 2014. The YARA Authors. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef YR_OBJECT_H #define YR_OBJECT_H #ifdef _MSC_VER #include <float.h> #ifndef yr_isnan #define yr_isnan _isnan #endif #else #ifndef yr_isnan #define yr_isnan isnan #endif #endif #ifndef INFINITY #define INFINITY (DBL_MAX + DBL_MAX) #endif #ifndef NAN #define NAN (INFINITY - INFINITY) #endif #include <yara/sizedstr.h> #include <yara/types.h> #include <yara/utils.h> #define OBJECT_CREATE 1 #define OBJECT_TYPE_INTEGER 1 #define OBJECT_TYPE_STRING 2 #define OBJECT_TYPE_STRUCTURE 3 #define OBJECT_TYPE_ARRAY 4 #define OBJECT_TYPE_FUNCTION 5 #define OBJECT_TYPE_DICTIONARY 6 #define OBJECT_TYPE_FLOAT 7 int yr_object_create( int8_t type, const char* identifier, YR_OBJECT* parent, YR_OBJECT** object); void yr_object_set_canary(YR_OBJECT* object, int canary); int yr_object_function_create( const char* identifier, const char* arguments_fmt, const char* return_fmt, YR_MODULE_FUNC func, YR_OBJECT* parent, YR_OBJECT** function); int yr_object_from_external_variable( YR_EXTERNAL_VARIABLE* external, YR_OBJECT** object); void yr_object_destroy(YR_OBJECT* object); int yr_object_copy(YR_OBJECT* object, YR_OBJECT** object_copy); YR_OBJECT* yr_object_lookup_field(YR_OBJECT* object, const char* field_name); YR_OBJECT* yr_object_lookup( YR_OBJECT* root, int flags, const char* pattern, ...) YR_PRINTF_LIKE(3, 4); bool yr_object_has_undefined_value(YR_OBJECT* object, const char* field, ...) YR_PRINTF_LIKE(2, 3); double yr_object_get_float(YR_OBJECT* object, const char* field, ...) YR_PRINTF_LIKE(2, 3); int64_t yr_object_get_integer(YR_OBJECT* object, const char* field, ...) YR_PRINTF_LIKE(2, 3); SIZED_STRING* yr_object_get_string(YR_OBJECT* object, const char* field, ...) YR_PRINTF_LIKE(2, 3); int yr_object_set_integer( int64_t value, YR_OBJECT* object, const char* field, ...) YR_PRINTF_LIKE(3, 4); int yr_object_set_float(double value, YR_OBJECT* object, const char* field, ...) YR_PRINTF_LIKE(3, 4); int yr_object_set_string( const char* value, size_t len, YR_OBJECT* object, const char* field, ...) YR_PRINTF_LIKE(4, 5); int yr_object_array_length(YR_OBJECT* object); YR_OBJECT* yr_object_array_get_item(YR_OBJECT* object, int flags, int index); int yr_object_array_set_item(YR_OBJECT* object, YR_OBJECT* item, int index); YR_OBJECT* yr_object_dict_get_item( YR_OBJECT* object, int flags, const char* key); int yr_object_dict_set_item( YR_OBJECT* object, YR_OBJECT* item, const char* key); int yr_object_structure_set_member(YR_OBJECT* object, YR_OBJECT* member); YR_OBJECT* yr_object_get_root(YR_OBJECT* object); YR_API void yr_object_print_data( YR_OBJECT* object, int indent, int print_identifier); #endif
Close