Linux gator3097.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Apache
Server IP : 192.185.227.195 & Your IP : 216.73.216.0
Domains :
Cant Read [ /etc/named.conf ]
User : mave78
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
usr /
lib /
rpm /
Delete
Unzip
Name
Size
Permission
Date
Action
fileattrs
[ DIR ]
drwxr-xr-x
2025-08-06 08:02
macros.d
[ DIR ]
drwxr-xr-x
2025-08-06 08:01
platform
[ DIR ]
drwxr-xr-x
2025-08-06 07:49
redhat
[ DIR ]
drwxr-xr-x
2025-08-06 08:02
brp-scl-compress
1.77
KB
-rwxr-xr-x
2018-10-30 19:17
brp-scl-python-bytecompile
3.04
KB
-rwxr-xr-x
2018-10-30 19:17
kabi.sh
428
B
-rwxr-xr-x
2019-08-06 22:25
macros
37.33
KB
-rw-r--r--
2021-11-24 16:33
rpm.daily
296
B
-rw-r--r--
2021-11-24 16:33
rpm.log
61
B
-rw-r--r--
2021-11-24 16:33
rpm.supp
688
B
-rw-r--r--
2021-11-24 16:33
rpm2cpio.sh
1.3
KB
-rwxr-xr-x
2021-11-24 16:33
rpmdb_dump
15.33
KB
-rwxr-xr-x
2019-08-09 00:18
rpmdb_load
27.51
KB
-rwxr-xr-x
2019-08-09 00:18
rpmdb_loadcvt
1.43
KB
-rwxr-xr-x
2021-11-24 16:33
rpmdb_recover
11.33
KB
-rwxr-xr-x
2019-08-09 00:18
rpmdb_stat
15.26
KB
-rwxr-xr-x
2019-08-09 00:18
rpmdb_upgrade
11.23
KB
-rwxr-xr-x
2019-08-09 00:18
rpmdb_verify
11.25
KB
-rwxr-xr-x
2019-08-09 00:18
rpmpopt-4.11.3
9.51
KB
-rw-r--r--
2021-11-24 16:33
rpmrc
15.01
KB
-rw-r--r--
2021-11-24 16:33
scldeps.sh
179
B
-rwxr-xr-x
2018-10-30 19:17
tgpg
929
B
-rwxr-xr-x
2021-11-24 16:33
Save
Rename
#!/bin/sh for pkg in $* do if [ "$pkg" = "" -o ! -e "$pkg" ]; then echo "no package supplied" 1>&2 exit 1 fi plaintext=`mktemp ${TMPDIR:-/tmp}/tgpg-$$.XXXXXX` detached=`mktemp ${TMPDIR:-/tmp}/tgpg-$$.XXXXXX` # --- Extract detached signature rpm -qp -vv --qf '%{siggpg:armor}' $pkg > $detached # --- Figger the offset of header+payload in the package leadsize=96 o=`expr $leadsize + 8` set `od -j $o -N 8 -t u1 $pkg` il=`expr 256 \* \( 256 \* \( 256 \* $2 + $3 \) + $4 \) + $5` dl=`expr 256 \* \( 256 \* \( 256 \* $6 + $7 \) + $8 \) + $9` sigsize=`expr 8 + 16 \* $il + $dl` o=`expr $o + $sigsize + \( 8 - \( $sigsize \% 8 \) \) \% 8` # --- Extract header+payload dd if=$pkg ibs=$o skip=1 2>/dev/null > $plaintext # --- Verify DSA signature using gpg gpg --batch -vv --debug 0xfc02 --verify $detached $plaintext # --- Clean up rm -f $detached $plaintext done