__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
def parse(s):
s = s.strip()
expr = []
while s:
if s[0:1] == b"(":
newSexp = []
if expr:
expr[-1].append(newSexp)
expr.append(newSexp)
s = s[1:]
continue
if s[0:1] == b")":
aList = expr.pop()
s = s[1:]
if not expr:
assert not s
return aList
continue
i = 0
while s[i : i + 1].isdigit():
i += 1
assert i
length = int(s[:i])
data = s[i + 1 : i + 1 + length]
expr[-1].append(data)
s = s[i + 1 + length :]
assert False, "this should not happen"
def pack(sexp):
return b"".join(
b"(%b)" % (pack(o),)
if type(o) in (type(()), type([]))
else b"%d:%b" % (len(o), o)
for o in sexp
)
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| __init__.py | File | 182 B | 0644 |
|
| _kex.py | File | 8.37 KB | 0644 |
|
| address.py | File | 1.08 KB | 0644 |
|
| agent.py | File | 9.29 KB | 0644 |
|
| channel.py | File | 9.73 KB | 0644 |
|
| common.py | File | 1.91 KB | 0644 |
|
| connection.py | File | 24.96 KB | 0644 |
|
| factory.py | File | 4.13 KB | 0644 |
|
| filetransfer.py | File | 37.19 KB | 0644 |
|
| forwarding.py | File | 8.03 KB | 0644 |
|
| keys.py | File | 62.38 KB | 0644 |
|
| service.py | File | 1.52 KB | 0644 |
|
| session.py | File | 13.33 KB | 0644 |
|
| sexpy.py | File | 944 B | 0644 |
|
| transport.py | File | 80.03 KB | 0644 |
|
| userauth.py | File | 27.06 KB | 0644 |
|