Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > prospector > tools
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
bandit | Directory | - | - | |
dodgy | Directory | - | - | |
mccabe | Directory | - | - | |
mypy | Directory | - | - | |
profile_validator | Directory | - | - | |
pycodestyle | Directory | - | - | |
pydocstyle | Directory | - | - | |
pyflakes | Directory | - | - | |
pylint | Directory | - | - | |
pyright | Directory | - | - | |
pyroma | Directory | - | - | |
vulture | Directory | - | - | |
__init__.py | File | 2651 bytes | April 17 2025 13:10:59. | |
base.py | File | 1575 bytes | April 17 2025 13:10:59. | |
exceptions.py | File | 170 bytes | April 17 2025 13:10:59. | |
utils.py | File | 1161 bytes | April 17 2025 13:10:59. |
import sys class CaptureStream: def __init__(self): self.contents = "" def write(self, text): self.contents += text def close(self): pass def flush(self): pass class CaptureOutput: def __init__(self, hide): self.hide = hide self._prev_streams = None self.stdout, self.stderr = None, None def __enter__(self): if self.hide: self._prev_streams = [ sys.stdout, sys.stderr, sys.__stdout__, sys.__stderr__, ] self.stdout = CaptureStream() self.stderr = CaptureStream() sys.stdout, sys.__stdout__ = self.stdout, self.stdout sys.stderr, sys.__stderr__ = self.stderr, self.stderr return self def get_hidden_stdout(self): return self.stdout.contents def get_hidden_stderr(self): return self.stderr.contents def __exit__(self, exc_type, exc_val, exc_tb): if self.hide: sys.stdout, sys.stderr, sys.__stdout__, sys.__stderr__ = self._prev_streams del self._prev_streams
SILENT KILLER Tool