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.2
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 /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
609
B
-rw-r--r--
cred_anonymous.py
958
B
-rw-r--r--
cred_file.py
1.77
KB
-rw-r--r--
cred_memory.py
2.23
KB
-rw-r--r--
cred_sshkeys.py
1.39
KB
-rw-r--r--
cred_unix.py
5.81
KB
-rw-r--r--
dropin.cache
5.49
KB
-rwxr-xr-x
twisted_conch.py
530
B
-rw-r--r--
twisted_core.py
550
B
-rw-r--r--
twisted_ftp.py
212
B
-rw-r--r--
twisted_inet.py
262
B
-rw-r--r--
twisted_mail.py
224
B
-rw-r--r--
twisted_names.py
236
B
-rw-r--r--
twisted_portforward.py
277
B
-rw-r--r--
twisted_reactors.py
1.73
KB
-rw-r--r--
twisted_runner.py
280
B
-rw-r--r--
twisted_socks.py
236
B
-rw-r--r--
twisted_trial.py
3.44
KB
-rw-r--r--
twisted_web.py
331
B
-rw-r--r--
twisted_words.py
940
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cred_sshkeys.py
# -*- test-case-name: twisted.test.test_strcred -*- # # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Cred plugin for ssh key login. """ from zope.interface import implementer from twisted import plugin from twisted.cred.strcred import ICheckerFactory sshKeyCheckerFactoryHelp = """ This allows SSH public key authentication, based on public keys listed in authorized_keys and authorized_keys2 files in user .ssh/ directories. """ try: from twisted.conch.checkers import SSHPublicKeyChecker, UNIXAuthorizedKeysFiles @implementer(ICheckerFactory, plugin.IPlugin) class SSHKeyCheckerFactory: """ Generates checkers that will authenticate a SSH public key """ authType = "sshkey" authHelp = sshKeyCheckerFactoryHelp argStringFormat = "No argstring required." credentialInterfaces = SSHPublicKeyChecker.credentialInterfaces def generateChecker(self, argstring=""): """ This checker factory ignores the argument string. Everything needed to authenticate users is pulled out of the public keys listed in user .ssh/ directories. """ return SSHPublicKeyChecker(UNIXAuthorizedKeysFiles()) theSSHKeyCheckerFactory = SSHKeyCheckerFactory() except ImportError: # if checkers can't be imported, then there should be no SSH cred plugin pass
Close