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 : unaligned.h
/* Copyright (c) 2016. 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_UNALIGNED_H #define YR_UNALIGNED_H #include <yara/integers.h> #pragma pack(push) #pragma pack(1) typedef struct { uint16_t val; } uint16_una_t; typedef struct { uint32_t val; } uint32_una_t; typedef struct { uint64_t val; } uint64_una_t; typedef struct { int16_t val; } int16_una_t; typedef struct { int32_t val; } int32_una_t; typedef struct { int64_t val; } int64_una_t; typedef struct { char *val; } charp_una_t; #pragma pack(pop) static inline uint16_t yr_unaligned_u16(const void *ptr) { const uint16_una_t *tmp = (const uint16_una_t *) ptr; return tmp->val; } static inline uint32_t yr_unaligned_u32(const void *ptr) { const uint32_una_t *tmp = (const uint32_una_t *) ptr; return tmp->val; } static inline uint64_t yr_unaligned_u64(const void *ptr) { const uint64_una_t *tmp = (const uint64_una_t *) ptr; return tmp->val; } static inline uint16_t yr_unaligned_i16(const void *ptr) { const int16_una_t *tmp = (const int16_una_t *) ptr; return tmp->val; } static inline uint32_t yr_unaligned_i32(const void *ptr) { const int32_una_t *tmp = (const int32_una_t *) ptr; return tmp->val; } static inline uint64_t yr_unaligned_i64(const void *ptr) { const int64_una_t *tmp = (const int64_una_t *) ptr; return tmp->val; } static inline char *yr_unaligned_char_ptr(const void *ptr) { const charp_una_t *tmp = (const charp_una_t *) ptr; return tmp->val; } #endif
Close