Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.131.216
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
include /
libhashkit-1.0 /
[ HOME SHELL ]
Name
Size
Permission
Action
algorithm.h
2.74
KB
-rw-r--r--
behavior.h
1.8
KB
-rw-r--r--
configure.h
1.85
KB
-rw-r--r--
digest.h
2.08
KB
-rw-r--r--
function.h
2.53
KB
-rw-r--r--
has.h
1.84
KB
-rw-r--r--
hashkit.h
3.18
KB
-rw-r--r--
hashkit.hpp
2.73
KB
-rw-r--r--
str_algorithm.h
1.77
KB
-rw-r--r--
strerror.h
1.84
KB
-rw-r--r--
string.h
2.04
KB
-rw-r--r--
types.h
2.97
KB
-rw-r--r--
visibility.h
1.25
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : visibility.h
/* * Summary: interface for HashKit functions * Description: visibitliy macros for HashKit library * * Use and distribution licensed under the BSD license. See * the COPYING file in this directory for full text. * * Author: Monty Taylor */ /** * @file * @brief Visibility control macros */ #pragma once /** * * HASHKIT_API is used for the public API symbols. It either DLL imports or * DLL exports (or does nothing for static build). * * HASHKIT_LOCAL is used for non-api symbols. */ #if defined(BUILDING_HASHKIT) # if defined(HAVE_VISIBILITY) && HAVE_VISIBILITY # define HASHKIT_API __attribute__ ((visibility("default"))) # define HASHKIT_LOCAL __attribute__ ((visibility("hidden"))) # elif defined (__SUNPRO_C) && (__SUNPRO_C >= 0x550) # define HASHKIT_API __global # define HASHKIT_LOCAL __hidden # elif defined(_MSC_VER) # define HASHKIT_API extern __declspec(dllexport) # define HASHKIT_LOCAL # else # define HASHKIT_API # define HASHKIT_LOCAL # endif /* defined(HAVE_VISIBILITY) */ #else /* defined(BUILDING_HASHKIT) */ # if defined(_MSC_VER) # define HASHKIT_API extern __declspec(dllimport) # define HASHKIT_LOCAL # else # define HASHKIT_API # define HASHKIT_LOCAL # endif /* defined(_MSC_VER) */ #endif /* defined(BUILDING_HASHKIT) */
Close