Linux s17.hosterpk.com 6.12.0-124.55.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:54:02 EDT 2026 x86_64
LiteSpeed
Server IP : 192.169.89.90 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : hamzalar
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
rpm /
Delete
Unzip
Name
Size
Permission
Date
Action
fileattrs
[ DIR ]
drwxr-xr-x
2026-05-27 07:01
lua
[ DIR ]
drwxr-xr-x
2026-02-06 00:00
macros.d
[ DIR ]
drwxr-xr-x
2026-05-27 07:02
platform
[ DIR ]
drwxr-xr-x
2026-02-06 00:00
redhat
[ DIR ]
drwxr-xr-x
2026-05-27 07:02
alt-nodejs14_native.req
70
B
-rwxr-xr-x
2026-05-20 00:00
alt-nodejs16_native.req
40
B
-rwxr-xr-x
2026-05-20 00:00
alt-nodejs18_native.req
40
B
-rwxr-xr-x
2026-05-20 00:00
alt-nodejs20_native.req
40
B
-rwxr-xr-x
2026-05-19 00:00
alt-nodejs22_native.req
44
B
-rwxr-xr-x
2026-03-24 00:00
alt-nodejs24_native.req
44
B
-rwxr-xr-x
2026-04-16 00:00
brp-boot-efi-times
1.43
KB
-rwxr-xr-x
2024-12-17 00:00
macros
45.54
KB
-rw-r--r--
2026-02-06 00:00
rpm.daily
296
B
-rw-r--r--
2024-02-07 13:36
rpm.log
61
B
-rw-r--r--
2024-02-07 13:36
rpm.supp
688
B
-rw-r--r--
2024-02-07 13:36
rpm2cpio.sh
1.56
KB
-rwxr-xr-x
2024-02-07 13:36
rpmdb_dump
41
B
-rwxr-xr-x
2024-02-07 13:36
rpmdb_load
41
B
-rwxr-xr-x
2024-02-07 13:36
rpmdb_migrate
1020
B
-rwxr-xr-x
2026-02-06 00:00
rpmpopt-4.19.1.1
11.41
KB
-rw-r--r--
2026-02-06 00:00
rpmrc
18.17
KB
-rw-r--r--
2026-02-06 00:00
sysusers.sh
3.79
KB
-rwxr-xr-x
2026-02-06 00:00
tgpg
937
B
-rwxr-xr-x
2024-02-07 13:36
Save
Rename
#!/usr/bin/bash -eu # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi if [[ ! -d "$RPM_BUILD_ROOT//boot/efi" ]] ; then exit 0 fi update() { local path="$1" local ctime=$(stat -c "%Z" "${path}") # we always want to touch it once... if [[ $((${ctime} % 2)) -eq 0 ]] ; then let ++ctime fi while [[ $((${ctime} % 2)) -eq 1 ]] ; do let ++ctime touch -h -c -d "@${ctime}" "${path}" ctime=$(stat -c "%Z" "${path}") done } declare -a dirs dirs=() || : cd "$RPM_BUILD_ROOT" while IFS= read -r -d $'\0' f; do if [[ -d "${f}" ]] ; then dirs[${#dirs[@]}]="${f}" else update "${f}" fi done < <(find ./boot/efi/ -print0) # sort the directory list lexicographically, longest-first, so a parent dir's # updated mtime won't be clobbered by the child dir being updated, if some day # someone actually makes that matter. # # I don't think we actually have to do this on linux, but # $RPM_BUILD_ROOT//boot/efi/ isn't going to have but so many files on # it. let i=0 || : let j=1 while [[ ${i} -lt ${#dirs[@]} ]] && [[ ${j} -lt ${#dirs[@]} ]] ; do if [[ "${dirs[$i]}" < "${dirs[$j]}" ]] ; then tmp="${dirs[$i]}" dirs[$i]="${dirs[$j]}" dirs[$j]="${tmp}" else let ++j fi if [[ ${j} -ge ${#dirs[@]} ]] ; then let ++i let ++j fi done # and now just process them just like files. if [[ ${#dirs[@]} -gt 0 ]] ; then for dir in "${dirs[@]}" ; do update "${dir}" done fi