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 /
lib /
python3.6 /
site-packages /
tracer /
views /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-02-18 14:19
resource
[ DIR ]
drwxr-xr-x
2026-02-18 14:19
__init__.py
517
B
-rw-r--r--
2023-10-05 05:49
blocks.py
1.03
KB
-rw-r--r--
2023-10-05 05:49
default.py
3.1
KB
-rw-r--r--
2023-10-05 05:49
helper.py
2.86
KB
-rw-r--r--
2023-10-05 05:49
interactive.py
854
B
-rw-r--r--
2023-10-05 05:49
note_for_hidden.py
743
B
-rw-r--r--
2023-10-05 05:49
Save
Rename
from __future__ import unicode_literals from . import View from tracer.resources.lang import _ from tracer.views.note_for_hidden import NoteForHiddenView class InteractiveView(View): def render(self): if self.args.applications: print(_("You should restart:")) i = 1 digits = len(str(len(self.args.applications))) for application in self.args.applications: n = "[{0}]".format(i).ljust(digits + 2) print("{} {}".format(n, application.name)) i += 1 if not self.args.args.all: if self.args.applications and (self.args.session_count or self.args.static_count): print("") view = NoteForHiddenView() view.assign("args", self.args.args) view.assign("total_count", self.args.total_count) view.assign("session_count", self.args.session_count) view.assign("static_count", self.args.static_count) view.render()