-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjson2python.py
More file actions
executable file
·52 lines (40 loc) · 1.06 KB
/
json2python.py
File metadata and controls
executable file
·52 lines (40 loc) · 1.06 KB
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
#!/usr/bin/env python
#
# Copyright 2012, 2013 Nick Galbreath
# nickg@client9.com
# BSD License -- see COPYING.txt for details
#
"""
Converts a libinjection JSON data file to python dict
"""
def toc(obj):
""" main routine """
print("""
import libinjection
def lookup(state, stype, keyword):
keyword = keyword.upper()
if stype == libinjection.LOOKUP_FINGERPRINT:
if keyword in fingerprints and libinjection.sqli_not_whitelist(state):
return 'F'
else:
return chr(0)
return words.get(keyword, chr(0))
""")
words = {}
keywords = obj['keywords']
for k,v in keywords.items():
words[str(k)] = str(v)
print('words = {')
for k in sorted(words.keys()):
print("'{0}': '{1}',".format(k, words[k]))
print('}\n')
keywords = obj['fingerprints']
print('fingerprints = set([')
for k in sorted(keywords):
print("'{0}',".format(k.upper()))
print('])')
return 0
if __name__ == '__main__':
import sys
import json
sys.exit(toc(json.load(sys.stdin)))