I am currently looking for a fuzzer for Python dictionaries. I am already aware of some fuzzing tools such as:
However, they seem a bit broader of what I am looking for. Actually, my goal is to provide a Python dictionary to a given tool and obtain a new dictionary very similar to the input one but with some values changed.
For instance, providing
{k1: "aaa", k2: "bbb", k3: "ccc"}
I intend to obtain the following new dictionaries:
{k1: "aaj", k2: "bbb", k3: "ccc"}
{k1: "aaa", k2: "bbr", k3: "ccc"}
{k1: "aaa", k2: "bbb", k3: "ccp"}
...
Are you aware of this kind of tools? Any suggestion will be welcomed.
In the best of the scenarios I would like this to be an open source tool.
EDIT1: I post the code I tryed up to the moment:
def change_randomly(self, v):
from random import randint
import string
new_v = list(v)
pos_value = randint(0, len(v)-1)
random_char = string.letters[randint(0, len(string.letters)-1)]
new_v[pos_value] = str(random_char)
return ''.join(new_v)
For sure, it may be improved, so I look forward for any thought regarding it.
Thanks!
Based on the comments to the question, why not simply writing a fixed length template based fuzzer like this:
On the use case input it might yield this:
So this should give the OP something to start as it might be a bootstrapping problem, where Python knowledge is only starting ...
I just hacked it in - PEP8 compliant though - and it should work no matter if Python v2 or v3.
Many open ends to work on ... but should get one going to evaluate, if a library or some simple enhanced coding might suffice. Only the OP will know but is welcome to comment on this answer proposal or update the question.
Hints: I nearly always use SystemRandom so you can parallelize more robustly. There may be faster ways, but performance was not visible to me in the specification. The print's are of course sprankled in as this is educational at best. HTH
Update: Having read the OP comment on changing only part of the strings to preserve some similarity, one could exchange above fuzzer function by e.g.:
and then have as sample output:
When calling this function instead of the other.