Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
Modules /
init /
Delete
Unzip
Name
Size
Permission
Date
Action
ksh-functions
[ DIR ]
drwxr-xr-x
2026-02-18 11:50
zsh-functions
[ DIR ]
drwxr-xr-x
2026-02-18 11:50
bash
4.04
KB
-rw-r--r--
2023-10-15 00:16
bash_completion
11.2
KB
-rw-r--r--
2023-10-15 00:16
cmake
1.88
KB
-rw-r--r--
2023-10-15 00:16
csh
3.78
KB
-rw-r--r--
2023-10-15 00:16
fish
1.69
KB
-rw-r--r--
2023-10-15 00:16
fish_completion
9.42
KB
-rw-r--r--
2023-10-15 00:16
ksh
4.06
KB
-rw-r--r--
2023-10-15 00:16
lisp
3.15
KB
-rw-r--r--
2023-10-15 00:16
perl.pm
1.09
KB
-rw-r--r--
2023-10-15 00:16
profile-compat.csh
197
B
-rw-r--r--
2023-10-15 00:16
profile-compat.sh
309
B
-rw-r--r--
2023-10-15 00:16
profile.csh
105
B
-rw-r--r--
2023-10-15 00:16
profile.sh
448
B
-rw-r--r--
2023-10-15 00:16
python.py
1.5
KB
-rw-r--r--
2023-10-15 00:16
r.R
961
B
-rw-r--r--
2023-10-15 00:16
ruby.rb
1.35
KB
-rw-r--r--
2023-10-15 00:16
sh
3.91
KB
-rw-r--r--
2023-10-15 00:16
tcl
1.05
KB
-rw-r--r--
2023-10-15 00:16
tcsh
3.79
KB
-rw-r--r--
2023-10-15 00:16
tcsh_completion
5.39
KB
-rw-r--r--
2023-10-15 00:16
zsh
4.05
KB
-rw-r--r--
2023-10-15 00:16
Save
Rename
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