Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
twisted /
web /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-06-04 06:40
__init__.py
107
B
-rw-r--r--
2026-05-22 14:58
_util.py
3.26
KB
-rw-r--r--
2026-05-22 14:58
injectionhelpers.py
5.46
KB
-rw-r--r--
2026-05-22 14:58
requesthelper.py
15.07
KB
-rw-r--r--
2026-05-22 14:58
test_agent.py
119.75
KB
-rw-r--r--
2026-05-22 14:58
test_cgi.py
14.76
KB
-rw-r--r--
2026-05-22 14:58
test_client.py
1.52
KB
-rw-r--r--
2026-05-22 14:58
test_distrib.py
17.58
KB
-rw-r--r--
2026-05-22 14:58
test_domhelpers.py
11.18
KB
-rw-r--r--
2026-05-22 14:58
test_error.py
16.37
KB
-rw-r--r--
2026-05-22 14:58
test_flatten.py
25.67
KB
-rw-r--r--
2026-05-22 14:58
test_html.py
1.21
KB
-rw-r--r--
2026-05-22 14:58
test_http.py
153.63
KB
-rw-r--r--
2026-05-22 14:58
test_http2.py
105.17
KB
-rw-r--r--
2026-05-22 14:58
test_http_headers.py
24.38
KB
-rw-r--r--
2026-05-22 14:58
test_httpauth.py
23.23
KB
-rw-r--r--
2026-05-22 14:58
test_newclient.py
106.8
KB
-rw-r--r--
2026-05-22 14:58
test_pages.py
3.56
KB
-rw-r--r--
2026-05-22 14:58
test_proxy.py
19.57
KB
-rw-r--r--
2026-05-22 14:58
test_resource.py
10.37
KB
-rw-r--r--
2026-05-22 14:58
test_script.py
3.91
KB
-rw-r--r--
2026-05-22 14:58
test_soap.py
3.04
KB
-rw-r--r--
2026-05-22 14:58
test_stan.py
7.08
KB
-rw-r--r--
2026-05-22 14:58
test_static.py
66.6
KB
-rw-r--r--
2026-05-22 14:58
test_tap.py
11.86
KB
-rw-r--r--
2026-05-22 14:58
test_template.py
28.38
KB
-rw-r--r--
2026-05-22 14:58
test_util.py
14.76
KB
-rw-r--r--
2026-05-22 14:58
test_vhost.py
7.49
KB
-rw-r--r--
2026-05-22 14:58
test_web.py
67.52
KB
-rw-r--r--
2026-05-22 14:58
test_web__responses.py
837
B
-rw-r--r--
2026-05-22 14:58
test_webclient.py
11.52
KB
-rw-r--r--
2026-05-22 14:58
test_wsgi.py
73.83
KB
-rw-r--r--
2026-05-22 14:58
test_xml.py
42.28
KB
-rw-r--r--
2026-05-22 14:58
test_xmlrpc.py
29.85
KB
-rw-r--r--
2026-05-22 14:58
Save
Rename
# # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. # """Test SOAP support.""" from unittest import skipIf from twisted.internet import defer, reactor from twisted.trial.unittest import TestCase from twisted.web import error, server try: import SOAPpy from twisted.web import soap from twisted.web.soap import SOAPPublisher except ImportError: SOAPpy = None SOAPPublisher = object # type: ignore[misc,assignment] class Test(SOAPPublisher): def soap_add(self, a, b): return a + b def soap_kwargs(self, a=1, b=2): return a + b soap_kwargs.useKeywords = True # type: ignore[attr-defined] def soap_triple(self, string, num): return [string, num, None] def soap_struct(self): return SOAPpy.structType({"a": "c"}) def soap_defer(self, x): return defer.succeed(x) def soap_deferFail(self): return defer.fail(ValueError()) def soap_fail(self): raise RuntimeError def soap_deferFault(self): return defer.fail(ValueError()) def soap_complex(self): return {"a": ["b", "c", 12, []], "D": "foo"} def soap_dict(self, map, key): return map[key] @skipIf(not SOAPpy, "SOAPpy not installed") class SOAPTests(TestCase): def setUp(self): self.publisher = Test() self.p = reactor.listenTCP( 0, server.Site(self.publisher), interface="127.0.0.1" ) self.port = self.p.getHost().port def tearDown(self): return self.p.stopListening() def proxy(self): return soap.Proxy("http://127.0.0.1:%d/" % self.port) def testResults(self): inputOutput = [ ("add", (2, 3), 5), ("defer", ("a",), "a"), ("dict", ({"a": 1}, "a"), 1), ("triple", ("a", 1), ["a", 1, None]), ] dl = [] for meth, args, outp in inputOutput: d = self.proxy().callRemote(meth, *args) d.addCallback(self.assertEqual, outp) dl.append(d) # SOAPpy kinda blows. d = self.proxy().callRemote("complex") d.addCallback(lambda result: result._asdict()) d.addCallback(self.assertEqual, {"a": ["b", "c", 12, []], "D": "foo"}) dl.append(d) # We now return to our regularly scheduled program, # already in progress. return defer.DeferredList(dl, fireOnOneErrback=True) def testMethodNotFound(self): """ Check that a non existing method return error 500. """ d = self.proxy().callRemote("doesntexist") self.assertFailure(d, error.Error) def cb(err): self.assertEqual(int(err.status), 500) d.addCallback(cb) return d def testLookupFunction(self): """ Test lookupFunction method on publisher, to see available remote methods. """ self.assertTrue(self.publisher.lookupFunction("add")) self.assertTrue(self.publisher.lookupFunction("fail")) self.assertFalse(self.publisher.lookupFunction("foobar"))