Linux salto.nuvemidc.com 5.14.0-687.42.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 27 11:55:12 EDT 2026 x86_64
LiteSpeed
: 177.73.233.61 | : 216.73.217.116
Cant Read [ /etc/named.conf ]
7.4.33
agenci18
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 /
lib /
python3.9 /
site-packages /
tracer /
views /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
resource
[ DIR ]
drwxr-xr-x
__init__.py
517
B
-rw-r--r--
blocks.py
1.03
KB
-rw-r--r--
default.py
3.1
KB
-rw-r--r--
helper.py
2.86
KB
-rw-r--r--
interactive.py
854
B
-rw-r--r--
note_for_hidden.py
743
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : interactive.py
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()
Close