You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi .
I am testing the intriguer but unfortunately it throws error on AFL side .
Would you please help running the intriguer ?
Also, from the documentation I just didn't understand about the non-instrumented binary. because the afl inside intriguer directory also needs instrumented binary . What's the point here ?
Thanks!
The text was updated successfully, but these errors were encountered:
I have solved this problem. This is due to an error executing run_intriguer.py, which resulted in no temporary file being generated. File "/home/admin1/Desktop/intriguer/bin/run_intriguer.py", line 168, in <module> main() File "/home/admin1/Desktop/intriguer/bin/run_intriguer.py", line 102, in main TARGET_ARCH = check_binary(args.cmd[0]) File "/home/admin1/Desktop/intriguer/bin/run_intriguer.py", line 30, in check_binary if arch.find('elf32') >= 0: TypeError: argument should be integer or bytes-like object, not 'str'
Need to modify the code of run_intriguer.py
line30 if arch.find(b'elf32') >= 0:
line32 elif arch.find(b'elf64-x86-64') >= 0:
mzfr
added a commit
to mzfr/intriguer
that referenced
this issue
Aug 23, 2024
Hi .
I am testing the intriguer but unfortunately it throws error on AFL side .
Would you please help running the intriguer ?
Also, from the documentation I just didn't understand about the non-instrumented binary. because the afl inside intriguer directory also needs instrumented binary . What's the point here ?
Thanks!
The text was updated successfully, but these errors were encountered: