Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vuzzer early exit due to exception in function bbdict #14

Open
zjuchenyuan opened this issue Jun 6, 2019 · 2 comments
Open

vuzzer early exit due to exception in function bbdict #14

zjuchenyuan opened this issue Jun 6, 2019 · 2 comments

Comments

@zjuchenyuan
Copy link

[*] Just about to run  ['BBOUT=/vuzzer64/fuzzer-code/outd/bbc.out', 'LIBS=#', './run_bb.sh', '/d/p/normal/15.ffmpeg', '-y', '-i', '/vuzzer64/fuzzer-code/vutemp/data/avi-textinfo.avi', '-c:v', 'mpeg4', '-c:a', 'copy', '-f', 'mp4', '/dev/null']
[*] Run complete..

Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python2.7/threading.py", line 801, in __bootstrap_inner
    self.run()
  File "/usr/lib/python2.7/threading.py", line 754, in run
    self.__target(*self.__args, **self.__kwargs)
  File "runfuzzer.py", line 805, in main
    (bbs,retc)=execute(tfl)
  File "runfuzzer.py", line 186, in execute
    bbs = bbdict(config.BBOUT)
  File "runfuzzer.py", line 88, in bbdict
    bbfr=int(tLine[1],0)
IndexError: list index out of range

this may be related to issue #13 , where bbc.out is 35GB

@zjuchenyuan
Copy link
Author

I simply ignore this exception to bypass this issue, can you help me do a better fix?

(bbs,retc)=execute(tfl)

Change to:

                try:
                    (bbs,retc)=execute(tfl)
                except:
                    traceback.print_exc()
                    continue

@tosanjay
Copy link
Collaborator

tosanjay commented Jun 6, 2019

Hi Chen,
Sorry about not being able to respond. I have just relocated to a different country and trying to settling in. I will get back to it ASAP.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants