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.85
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
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 -eu if [ -z "$RPM_BUILD_ROOT" ] || [ "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi CLANG_FLAGS=$@ NCPUS=${RPM_BUILD_NCPUS:-1} check_convert_bitcode () { local file_name=$(realpath ${1}) local file_type=$(file ${file_name}) shift CLANG_FLAGS="$@" if [[ "${file_type}" == *"LLVM IR bitcode"* ]]; then # Check the output of llvm-strings for the command line, which is in the LLVM bitcode because # we pass -frecord-gcc-switches. # Check for a line that has "-flto" after (or without) "-fno-lto". llvm-strings ${file_name} | while read line ; do flto=$(echo $line | grep -o -b -e -flto | tail -n 1 | cut -d : -f 1) fnolto=$(echo $line | grep -o -b -e -fno-lto | tail -n 1 | cut -d : -f 1) if test -n "$flto" && { test -z "$fnolto" || test "$flto" -gt "$fnolto"; } ; then echo "Compiling LLVM bitcode file ${file_name}." clang ${CLANG_FLAGS} -fno-lto -Wno-unused-command-line-argument \ -x ir ${file_name} -c -o ${file_name} break fi done elif [[ "${file_type}" == *"current ar archive"* ]]; then echo "Unpacking ar archive ${file_name} to check for LLVM bitcode components." # create archive stage for objects local archive_stage=$(mktemp -d) local archive=${file_name} pushd ${archive_stage} ar x ${archive} for archived_file in $(find -not -type d); do check_convert_bitcode ${archived_file} ${CLANG_FLAGS} echo "Repacking ${archived_file} into ${archive}." ar r ${archive} ${archived_file} done popd fi } echo "Checking for LLVM bitcode artifacts" export -f check_convert_bitcode # Deduplicate by device:inode to avoid processing hardlinks in parallel. find "$RPM_BUILD_ROOT" -type f -name "*.[ao]" -printf "%D:%i %p\n" | \ awk '!seen[$1]++' | cut -d" " -f2- | \ xargs -d"\n" -r -n1 -P$NCPUS sh -c "check_convert_bitcode \$@ $CLANG_FLAGS" ARG0