Skip to content

Commit

Permalink
add __str__ to fuzzpayload
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Feb 4, 2019
1 parent 8d220dc commit fada98d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/wfuzz/fuzzobjects.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,9 @@ def description(self, default):

return " - ".join(ret_str_values)

def __str__(self):
return "content: {} fields: {}".format(self.content, self.fields)


class FuzzResult:
seed, backfeed, result, error, startseed, endseed, cancel, discarded = list(range(8))
Expand Down

0 comments on commit fada98d

Please sign in to comment.