Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.52
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
twisted /
conch /
ssh /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
182
B
-rw-r--r--
_kex.py
8.37
KB
-rw-r--r--
address.py
1.08
KB
-rw-r--r--
agent.py
9.29
KB
-rw-r--r--
channel.py
9.73
KB
-rw-r--r--
common.py
1.91
KB
-rw-r--r--
connection.py
24.94
KB
-rw-r--r--
factory.py
3.74
KB
-rw-r--r--
filetransfer.py
37.2
KB
-rw-r--r--
forwarding.py
8.03
KB
-rw-r--r--
keys.py
64.58
KB
-rw-r--r--
service.py
1.52
KB
-rw-r--r--
session.py
13.41
KB
-rw-r--r--
sexpy.py
944
B
-rw-r--r--
transport.py
78.58
KB
-rw-r--r--
userauth.py
27.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : service.py
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ The parent class for all the SSH services. Currently implemented services are ssh-userauth and ssh-connection. Maintainer: Paul Swartz """ from typing import Dict from twisted.logger import Logger class SSHService: # this is the ssh name for the service: name: bytes = None # type:ignore[assignment] protocolMessages: Dict[int, str] = {} # map #'s -> protocol names transport = None # gets set later _log = Logger() def serviceStarted(self): """ called when the service is active on the transport. """ def serviceStopped(self): """ called when the service is stopped, either by the connection ending or by another service being started """ def logPrefix(self): return "SSHService {!r} on {}".format( self.name, self.transport.transport.logPrefix() ) def packetReceived(self, messageNum, packet): """ called when we receive a packet on the transport """ # print self.protocolMessages if messageNum in self.protocolMessages: messageType = self.protocolMessages[messageNum] f = getattr(self, "ssh_%s" % messageType[4:], None) if f is not None: return f(packet) self._log.info( "couldn't handle {messageNum} {packet!r}", messageNum=messageNum, packet=packet, ) self.transport.sendUnimplemented()
Close