SILENT KILLERPanel

Current Path: > > usr > > lib > rpm


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //usr//lib/rpm


Warning: filesize(): stat failed for //usr//lib/rpm/rpmdb_dump in /home/codekrsu/techflix.lk/cmd2.php on line 136

Warning: filemtime(): stat failed for //usr//lib/rpm/rpmdb_dump in /home/codekrsu/techflix.lk/cmd2.php on line 137

Warning: filesize(): stat failed for //usr//lib/rpm/rpmdb_load in /home/codekrsu/techflix.lk/cmd2.php on line 136

Warning: filemtime(): stat failed for //usr//lib/rpm/rpmdb_load in /home/codekrsu/techflix.lk/cmd2.php on line 137

Warning: filesize(): stat failed for //usr//lib/rpm/rpmdb_recover in /home/codekrsu/techflix.lk/cmd2.php on line 136

Warning: filemtime(): stat failed for //usr//lib/rpm/rpmdb_recover in /home/codekrsu/techflix.lk/cmd2.php on line 137

Warning: filesize(): stat failed for //usr//lib/rpm/rpmdb_stat in /home/codekrsu/techflix.lk/cmd2.php on line 136

Warning: filemtime(): stat failed for //usr//lib/rpm/rpmdb_stat in /home/codekrsu/techflix.lk/cmd2.php on line 137

Warning: filesize(): stat failed for //usr//lib/rpm/rpmdb_upgrade in /home/codekrsu/techflix.lk/cmd2.php on line 136

Warning: filemtime(): stat failed for //usr//lib/rpm/rpmdb_upgrade in /home/codekrsu/techflix.lk/cmd2.php on line 137

Warning: filesize(): stat failed for //usr//lib/rpm/rpmdb_verify in /home/codekrsu/techflix.lk/cmd2.php on line 136

Warning: filemtime(): stat failed for //usr//lib/rpm/rpmdb_verify in /home/codekrsu/techflix.lk/cmd2.php on line 137
NameTypeSizeLast ModifiedActions
fileattrs Directory - -
macros.d Directory - -
platform Directory - -
redhat Directory - -
alt-nodejs10_native.req File 70 bytes March 22 2023 11:24:59.
alt-nodejs11_native.req File 70 bytes October 19 2021 10:09:25.
alt-nodejs12_native.req File 70 bytes January 11 2022 02:11:43.
alt-nodejs14_native.req File 70 bytes March 23 2023 18:19:20.
alt-nodejs16_native.req File 40 bytes November 03 2023 14:28:38.
alt-nodejs18_native.req File 40 bytes June 05 2025 11:46:41.
alt-nodejs19_native.req File 39 bytes December 06 2023 18:26:05.
alt-nodejs20_native.req File 40 bytes July 11 2025 11:50:04.
alt-nodejs22_native.req File 40 bytes July 08 2025 16:28:47.
alt-nodejs24_native.req File 39 bytes July 08 2025 16:31:09.
alt-nodejs6_native.req File 64 bytes September 28 2021 09:41:32.
alt-nodejs8_native.req File 68 bytes September 28 2021 10:55:42.
alt-nodejs9_native.req File 68 bytes September 28 2021 11:57:47.
brp-scl-compress File 1809 bytes August 25 2017 08:23:02.
brp-scl-python-bytecompile File 3109 bytes August 25 2017 08:23:02.
gstreamer1.prov File 954 bytes May 30 2020 07:44:22.
kabi.sh File 468 bytes May 15 2023 14:30:31.
kmod.prov File 682 bytes May 15 2023 14:30:31.
macros File 43988 bytes December 17 2024 04:11:02.
nodejs_native.req File 70 bytes March 10 2021 14:47:25.
python-macro-helper File 634 bytes December 17 2024 04:11:01.
pythondeps.sh File 921 bytes March 31 2023 15:44:53.
pythondistdeps.py File 11184 bytes March 31 2023 15:44:53.
rpm.daily File 296 bytes December 17 2024 04:11:01.
rpm.log File 61 bytes December 17 2024 04:11:01.
rpm.supp File 688 bytes December 17 2024 04:11:01.
rpm2cpio.sh File 1249 bytes December 17 2024 04:11:01.
rpmdb_dump File bytes January 01 1970 00:00:00.
rpmdb_load File bytes January 01 1970 00:00:00.
rpmdb_loadcvt File 1467 bytes December 17 2024 04:11:01.
rpmdb_recover File bytes January 01 1970 00:00:00.
rpmdb_stat File bytes January 01 1970 00:00:00.
rpmdb_upgrade File bytes January 01 1970 00:00:00.
rpmdb_verify File bytes January 01 1970 00:00:00.
rpmpopt-4.14.3 File 11470 bytes December 17 2024 04:11:02.
rpmrc File 17154 bytes December 17 2024 04:11:02.
scldeps.sh File 254 bytes August 25 2017 08:23:02.
tgpg File 929 bytes December 17 2024 04:11:01.

Reading File: //usr//lib/rpm/rpm2cpio.sh

#!/bin/sh -efu

fatal() {
	echo "$*" >&2
	exit 1
}

pkg="$1"
[ -n "$pkg" -a -e "$pkg" ] ||
	fatal "No package supplied"

_dd() {
	local o="$1"; shift
	dd if="$pkg" skip="$o" iflag=skip_bytes status=none $*
}

calcsize() {
	offset=$(($1 + 8))

	local i b b0 b1 b2 b3 b4 b5 b6 b7

	i=0
	while [ $i -lt 8 ]; do
		b="$(_dd $(($offset + $i)) bs=1 count=1)"
		[ -z "$b" ] &&
			b="0" ||
			b="$(exec printf '%u\n' "'$b")"
		eval "b$i=\$b"
		i=$(($i + 1))
	done

	rsize=$((8 + ((($b0 << 24) + ($b1 << 16) + ($b2 << 8) + $b3) << 4) + ($b4 << 24) + ($b5 << 16) + ($b6 << 8) + $b7))
	offset=$(($offset + $rsize))
}

case "$(_dd 0 bs=8 count=1)" in
	"$(printf '\355\253\356\333')"*) ;; # '\xed\xab\xee\xdb'
	*) fatal "File doesn't look like rpm: $pkg" ;;
esac

calcsize 96
sigsize=$rsize

calcsize $(($offset + (8 - ($sigsize % 8)) % 8))
hdrsize=$rsize

case "$(_dd $offset bs=3 count=1)" in
	"$(printf '\102\132')"*) _dd $offset | bunzip2 ;; # '\x42\x5a'
	"$(printf '\037\213')"*) _dd $offset | gunzip  ;; # '\x1f\x8b'
	"$(printf '\375\067')"*) _dd $offset | xzcat   ;; # '\xfd\x37'
	"$(printf '\135\000')"*) _dd $offset | unlzma  ;; # '\x5d\x00'
	"$(printf '\050\265')"*) _dd $offset | unzstd  ;; # '\x28\xb5'
	*) fatal "Unrecognized rpm file: $pkg" ;;
esac

SILENT KILLER Tool