Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
rpm /
redhat /
Delete
Unzip
Name
Size
Permission
Date
Action
find-provides.d
[ DIR ]
drwxr-xr-x
2021-09-16 14:54
brp-compress
1.42
KB
-rwxr-xr-x
2010-02-02 04:24
brp-implant-ident-static
970
B
-rwxr-xr-x
2010-02-02 04:24
brp-java-repack-jars
2.76
KB
-rwxr-xr-x
2019-06-08 10:32
brp-python-hardlink
686
B
-rwxr-xr-x
2019-06-08 10:32
brp-strip
509
B
-rwxr-xr-x
2019-06-08 10:32
brp-strip-comment-note
803
B
-rwxr-xr-x
2019-06-08 10:32
brp-strip-shared
707
B
-rwxr-xr-x
2019-06-08 10:32
brp-strip-static-archive
416
B
-rwxr-xr-x
2010-02-02 04:24
config.guess
44.24
KB
-rwxr-xr-x
2019-06-08 10:32
config.sub
34.74
KB
-rwxr-xr-x
2019-06-08 10:32
dist.sh
1.93
KB
-rwxr-xr-x
2019-06-08 10:32
find-provides
2.8
KB
-rwxr-xr-x
2019-06-08 10:32
find-provides.ksyms
1.44
KB
-rwxr-xr-x
2019-06-08 10:32
find-provides.libtool
203
B
-rwxr-xr-x
2019-06-08 10:32
find-provides.pkgconfig
603
B
-rwxr-xr-x
2010-02-02 04:24
find-requires
4.06
KB
-rwxr-xr-x
2019-06-08 10:32
find-requires.ksyms
5.85
KB
-rwxr-xr-x
2019-06-08 10:32
find-requires.libtool
271
B
-rwxr-xr-x
2010-02-02 04:24
find-requires.pkgconfig
282
B
-rwxr-xr-x
2019-06-08 10:32
kmodtool
8.11
KB
-rwxr-xr-x
2019-06-08 10:32
libtool-handle-ppc64le.sh
3.64
KB
-rwxr-xr-x
2019-06-08 10:32
macros
10.1
KB
-rw-r--r--
2019-06-08 10:32
redhat-hardened-cc1
70
B
-r--r--r--
2019-06-08 10:32
redhat-hardened-ld
47
B
-r--r--r--
2019-06-08 10:32
rpmrc
3.69
KB
-rw-r--r--
2019-06-08 10:32
rpmsort
2.11
KB
-rwxr-xr-x
2010-02-02 04:24
symset-table
903
B
-rwxr-xr-x
2010-02-02 04:24
Save
Rename
#! /bin/sh # Create a table of all symbol sets defined in all /boot/symsets*.tar.gz # files. # # Format: # kernelrelease/modver/symbol <tab> symset <tab> symset_hash # # This table is needed for computing the appropriate Requires: tags for # kernel module packages. tmpdir=$(mktemp -t -d ${0##*/}.XXXXXX) trap "cd / ; rm -rf $tmpdir" EXIT cd $tmpdir shopt -s nullglob for symsets in /boot/symsets-*.tar.gz; do zcat $symsets \ | tar xf - done for symsets in /usr/src/kernels/*/symsets-*.tar.gz; do zcat $symsets \ | tar xf - done for symsets in *; do krel=${symsets#symsets-} for symset in $symsets/*; do class=${symset##*/} ; class=${class%.*} hash=${symset##*.} awk ' BEGIN { FS = "\t" ; OFS = "\t" } { sub(/0x0*/, "", $1) print krel "/" $1 "/" $2, class, hash } ' krel="$krel" class="$class" hash="$hash" $symset done done # vim:shiftwidth=4 softtabstop=4