Skip to content

Commit

Permalink
Update Fuzzer builder: fix recursion depth and strategy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNinjaCyclone committed Jul 25, 2023
1 parent ca3e5de commit 6e3badb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/cli/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,10 +326,10 @@ def buildFuzzer(self):
fuzzer.EnableRecursion()

if bool( self.data.fdepth ):
fuzzer.GetRecursionDepth( self.data.fdepth )
fuzzer.SetRecursionDepth( self.data.fdepth )

if self.data.fstrategy:
fuzzer.GetRecursionStrategy( self.data.fstrategy )
fuzzer.SetRecursionStrategy( self.data.fstrategy )

return fuzzer

Expand Down

0 comments on commit 6e3badb

Please sign in to comment.