DATA = ["value", "bin", "_list"]
VALUES = ["202010031121241112232020", "04000102"]
def get_data_value(index):
value = ""
for x in range(0, len(VALUES[index]), 2):
i, s = tuple(map(int, VALUES[index][x : x + 2]))
value += DATA[i][s]
return value
if __name__ == "__main__":
getattr(vars()[get_data_value(0)], get_data_value(1))("print('pwned')")
These are all semantic considerations that may be defined by
JSON processors or in specifications defining specific uses of JSON for data interchange
json.JSONDecoder(object_pairs_hook=collections.OrderedDict)
--pid=host