-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed argvfuzz and memTracer.py argv getter
In order to avoid ignoring some of the initial arguments passed to the program, memTracer.py does return the whole argument array, without removing the first element. However, this must be true also in the argv fuzzing library. In order to fix its behavior, the executable path is set as a first thing at index 0 of the returned array, instead of modifying the first element after it has been returned. Of course, this means that the first argument that is retrieved from the input file is stored at index 1 of the array.
- Loading branch information
1 parent
64bec84
commit 4243a4e
Showing
3 changed files
with
8 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters