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 : threading.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_MUTEX_H #define YR_MUTEX_H #if defined(_WIN32) || defined(__CYGWIN__) #include <windows.h> typedef DWORD YR_THREAD_ID; typedef DWORD YR_THREAD_STORAGE_KEY; typedef HANDLE YR_MUTEX; #define YR_TLS __declspec(thread) #else #include <pthread.h> typedef pthread_t YR_THREAD_ID; typedef pthread_key_t YR_THREAD_STORAGE_KEY; typedef pthread_mutex_t YR_MUTEX; #define YR_TLS __thread #endif YR_THREAD_ID yr_current_thread_id(void); int yr_mutex_create(YR_MUTEX*); int yr_mutex_destroy(YR_MUTEX*); int yr_mutex_lock(YR_MUTEX*); int yr_mutex_unlock(YR_MUTEX*); int yr_thread_storage_create(YR_THREAD_STORAGE_KEY*); int yr_thread_storage_destroy(YR_THREAD_STORAGE_KEY*); int yr_thread_storage_set_value(YR_THREAD_STORAGE_KEY*, void*); void* yr_thread_storage_get_value(YR_THREAD_STORAGE_KEY*); #endif
Close