prosyslab-classroom / cs348-information-security

62 stars 10 forks source link

[Question][Hw4] Editing json_seed #116

Closed ee12ha0220 closed 3 years ago

ee12ha0220 commented 3 years ago

In the instruction, the function update_seeds is explained as "adds a given input into the seed pool if it is interesting.". Can I remove some elements from the seed corpus also? Or can I just keep adding elements, and can't remove added elements?

gunsodo commented 3 years ago

I think this function is for updating the seeds only and you can do whatever you want with the function as long as it intuitively works as declared. Also, I think it should be used in run as well.

ee12ha0220 commented 3 years ago

Thanks:)

RiceBiscuits commented 3 years ago

If removing the seed from the updated_seeds can make performance of your fuzzer better, It is up to you.

ee12ha0220 commented 3 years ago

Oh thanks!