Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.225.7.106
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
rpm /
Delete
Unzip
Name
Size
Permission
Date
Action
fileattrs
[ DIR ]
drwxr-xr-x
2022-01-26 17:32
macros.d
[ DIR ]
drwxr-xr-x
2022-01-26 17:32
platform
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
redhat
[ DIR ]
drwxr-xr-x
2022-01-26 14:48
gstreamer1.prov
954
B
-rwxr-xr-x
2017-08-02 22:32
kabi.sh
428
B
-rwxr-xr-x
2019-08-06 22:25
macros
37.33
KB
-rw-r--r--
2021-10-14 12:28
rpm.daily
296
B
-rw-r--r--
2021-10-14 12:28
rpm.log
61
B
-rw-r--r--
2021-10-14 12:28
rpm.supp
688
B
-rw-r--r--
2021-10-14 12:28
rpm2cpio.sh
1.3
KB
-rwxr-xr-x
2021-10-14 12:28
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-10-14 12:28
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-10-14 12:28
rpmrc
15.01
KB
-rw-r--r--
2021-10-14 12:28
tgpg
929
B
-rwxr-xr-x
2021-10-14 12:28
Save
Rename
#!/bin/sh # # Script to install in: # /usr/lib/rpm/redhat/find-provides.d # # Transform GStreamer auto install info into RPM provides # # Author: Bastien Nocera <hadess@hadess.net> # Based on other provides scripts from RPM # filelist=`grep -e '.so$' | sed "s/['\"]/\\\&/g"` # --- Alpha does not mark 64bit dependencies• case `uname -m` in alpha*) mark64="" ;; *) mark64="()(64bit)" ;; esac solist=$(echo $filelist | grep "libgst" | \ xargs file -L 2>/dev/null | grep "ELF.*shared object" | cut -d: -f1 ) function getmark() { lib64=`if file -L $1 2>/dev/null | \ grep "ELF 64-bit" >/dev/null; then echo -n "$mark64"; fi` } function libdir() { buildlibdir=`dirname $1` buildlibdir=`dirname $buildlibdir` } for so in $solist ; do getmark $so libdir $so LD_LIBRARY_PATH=$buildlibdir gst-inspect-1.0 --print-plugin-auto-install-info --rpm $so 2> /dev/null | while read line ; do echo -n "$line"; echo -n "$lib64" echo done done