Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
rh /
gcc-toolset-12 /
root /
usr /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
addr2line
27.89
KB
-rwxr-xr-x
2023-10-04 17:51
ar
56.23
KB
-rwxr-xr-x
2023-10-04 17:51
as
738.62
KB
-rwxr-xr-x
2023-10-04 17:51
c++
877.58
KB
-rwxr-xr-x
2024-09-03 14:54
c++filt
27.34
KB
-rwxr-xr-x
2023-10-04 17:51
cc
873.5
KB
-rwxr-xr-x
2024-09-03 14:54
cpp
873.59
KB
-rwxr-xr-x
2024-09-03 14:54
dwp
884.62
KB
-rwxr-xr-x
2023-10-04 17:51
elfedit
36.09
KB
-rwxr-xr-x
2023-10-04 17:51
g++
877.58
KB
-rwxr-xr-x
2024-09-03 14:54
gcc
873.5
KB
-rwxr-xr-x
2024-09-03 14:54
gcc-ar
28.19
KB
-rwxr-xr-x
2024-09-03 14:55
gcc-nm
28.2
KB
-rwxr-xr-x
2024-09-03 14:55
gcc-ranlib
28.19
KB
-rwxr-xr-x
2024-09-03 14:55
gcov
471.27
KB
-rwxr-xr-x
2024-09-03 14:55
gcov-dump
268.24
KB
-rwxr-xr-x
2024-09-03 14:55
gcov-tool
297.13
KB
-rwxr-xr-x
2024-09-03 14:55
gprof
101.64
KB
-rwxr-xr-x
2023-10-04 17:51
i686-redhat-linux-gcc-12
52
B
-rwxr-xr-x
2024-09-03 14:51
ld
1.52
MB
-rwxr-xr-x
2026-02-03 15:09
ld.bfd
1.52
MB
-rwxr-xr-x
2026-02-03 15:09
ld.gold
2.08
MB
-rwxr-xr-x
2023-10-04 17:51
lto-dump
28.48
MB
-rwxr-xr-x
2024-09-03 14:54
nm
45.06
KB
-rwxr-xr-x
2023-10-04 17:51
objcopy
181.6
KB
-rwxr-xr-x
2023-10-04 17:51
objdump
421.46
KB
-rwxr-xr-x
2023-10-04 17:51
ranlib
56.23
KB
-rwxr-xr-x
2023-10-04 17:51
readelf
795.89
KB
-rwxr-xr-x
2023-10-04 17:51
size
31.77
KB
-rwxr-xr-x
2023-10-04 17:51
strings
31.88
KB
-rwxr-xr-x
2023-10-04 17:51
strip
181.59
KB
-rwxr-xr-x
2023-10-04 17:51
sudo
1.13
KB
-r-xr-xr-x
2023-04-10 12:25
x86_64-redhat-linux-c++
877.58
KB
-rwxr-xr-x
2024-09-03 14:54
x86_64-redhat-linux-g++
877.58
KB
-rwxr-xr-x
2024-09-03 14:54
x86_64-redhat-linux-gcc
873.5
KB
-rwxr-xr-x
2024-09-03 14:54
x86_64-redhat-linux-gcc-12
873.5
KB
-rwxr-xr-x
2024-09-03 14:54
Save
Rename
#! /bin/bash # Emulate /usr/bin/sudo, so that SCL environment variables # are passed through via an /bin/env wrapper. # Includes work by Andy Fong <boringuy@gmail.com> cmd_started=false is_option_param_next=false for arg in "$@" do case "$arg" in *\'*) arg= ;; esac if [ "$cmd_started" = true ]; then cmd_options="$cmd_options '$arg'" elif [ "$is_option_param_next" = true ]; then sudo_options="$sudo_options $arg" is_option_param_next=false elif [[ $arg == -* ]]; then sudo_options="$sudo_options $arg" case "$arg" in # all the options that take a parameter "-g" | "-h" | "-p" | "-u" | "-U" | "-C" | "-s" | "-r" | "-t" | "-T") is_option_param_next=true ;; "--") cmd_started=true ;; esac elif [[ $arg == *=* ]]; then sudo_options="$sudo_options $arg" else cmd_options="$cmd_options '$arg'" cmd_started=true fi done if [ "$sudo_options" == "" ]; then sudo_options="-E" fi exec /usr/bin/sudo $sudo_options env LD_LIBRARY_PATH=$LD_LIBRARY_PATH PATH=$PATH scl enable gcc-toolset-12 "$cmd_options"