Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
bin /
dhwp /
env /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
activate
2.11
KB
-rw-r--r--
activate.csh
1.42
KB
-rw-r--r--
activate.fish
2.97
KB
-rw-r--r--
activate.nu
1.27
KB
-rw-r--r--
activate.ps1
1.73
KB
-rw-r--r--
activate_this.py
1.17
KB
-rw-r--r--
cement
232
B
-rwxr-xr-x
deactivate.nu
333
B
-rw-r--r--
dhwp
940
B
-rwxr-xr-x
normalizer
244
B
-rwxr-xr-x
pip
239
B
-rwxr-xr-x
pip-3.10
239
B
-rwxr-xr-x
pip3
239
B
-rwxr-xr-x
pip3.10
239
B
-rwxr-xr-x
python
5.66
MB
-rwxr-xr-x
python3
5.66
MB
-rwxr-xr-x
python3.10
5.66
MB
-rwxr-xr-x
wheel
226
B
-rwxr-xr-x
wheel-3.10
226
B
-rwxr-xr-x
wheel3
226
B
-rwxr-xr-x
wheel3.10
226
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : activate_this.py
# -*- coding: utf-8 -*- """Activate virtualenv for current interpreter: Use exec(open(this_file).read(), {'__file__': this_file}). This can be used when you must use an existing Python interpreter, not the virtualenv bin/python. """ import os import site import sys try: abs_file = os.path.abspath(__file__) except NameError: raise AssertionError("You must use exec(open(this_file).read(), {'__file__': this_file}))") bin_dir = os.path.dirname(abs_file) base = bin_dir[: -len("bin") - 1] # strip away the bin part from the __file__, plus the path separator # prepend bin to PATH (this file is inside the bin directory) os.environ["PATH"] = os.pathsep.join([bin_dir] + os.environ.get("PATH", "").split(os.pathsep)) os.environ["VIRTUAL_ENV"] = base # virtual env is right above bin directory # add the virtual environments libraries to the host python import mechanism prev_length = len(sys.path) for lib in "../lib/python3.10/site-packages".split(os.pathsep): path = os.path.realpath(os.path.join(bin_dir, lib)) site.addsitedir(path.decode("utf-8") if "" else path) sys.path[:] = sys.path[prev_length:] + sys.path[0:prev_length] sys.real_prefix = sys.prefix sys.prefix = base
Close