forked from m4ll0k/BBTz
-
Notifications
You must be signed in to change notification settings - Fork 16
/
tojson.py
36 lines (32 loc) · 936 Bytes
/
tojson.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
import sys
import json
import argparse
def readfile(file):
return [x.strip() for x in open(file,"r")]
def process(content):
_all = []
for i in content:
_all.append((i,"" if a.payload == "" else a.payload))
k = {}
for i in _all:
k.update({i[0]:i[1]})
print(json.loads(json.dumps(str(k))).replace("'",'"').replace(' ',''))
p = argparse.ArgumentParser()
p.add_argument('-f','--file',help="set this flag if your input is file",default=False,
action="store_true")
p.add_argument('-i','--input',help="input your string (str1;str2;) or file",default="",required=True,
action="store")
p.add_argument('-p','--payload',help="payload for inject in json values",default="",required=False,
action="store")
a = p.parse_args()
if a.input == "":
sys.exit(print('[ + ] help'))
else:
_all = []
if a.file is False:
for i in a.input.split(';'):
_all.append(i)
else:
for i in readfile(a.input):
_all.append(i)
process(_all)