Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Users /
VEGETA /
Envs /
CÓDIGOSOLT /
Scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
activate
2.1
KB
-rw-rw-rw-
2023-03-18 06:31
activate.bat
1008
B
-rwxrwxrwx
2023-03-18 06:31
activate.fish
2.96
KB
-rw-rw-rw-
2023-03-18 06:31
activate.nu
2.52
KB
-rw-rw-rw-
2023-03-18 06:31
activate.ps1
1.72
KB
-rw-rw-rw-
2023-03-18 06:31
activate_this.py
1.14
KB
-rw-rw-rw-
2023-03-18 06:31
deactivate.bat
511
B
-rwxrwxrwx
2023-03-18 06:31
deactivate.nu
682
B
-rw-rw-rw-
2023-03-18 06:31
pip-3.11.exe
105.87
KB
-rwxrwxrwx
2023-03-18 06:31
pip.exe
105.87
KB
-rwxrwxrwx
2023-03-18 06:31
pip3.11.exe
105.87
KB
-rwxrwxrwx
2023-03-18 06:31
pip3.exe
105.87
KB
-rwxrwxrwx
2023-03-18 06:31
pydoc.bat
24
B
-rwxrwxrwx
2023-03-18 06:31
python.exe
264.27
KB
-rwxrwxrwx
2023-03-18 06:31
pythonw.exe
253.27
KB
-rwxrwxrwx
2023-03-18 06:31
wheel-3.11.exe
105.86
KB
-rwxrwxrwx
2023-03-18 06:31
wheel.exe
105.86
KB
-rwxrwxrwx
2023-03-18 06:31
wheel3.11.exe
105.86
KB
-rwxrwxrwx
2023-03-18 06:31
wheel3.exe
105.86
KB
-rwxrwxrwx
2023-03-18 06:31
Save
Rename
"""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("Scripts") - 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\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