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
{{ message }}
This repository was archived by the owner on Jul 5, 2023. It is now read-only.
I'm running afl instrumentation with verbose=1 and it fails with these warnings:
Block "BlockName" has an unsupported code-data layout
Unexpected data label at offset XXXX
The place, where this message is displayed, contains this comment:
// If a non-data label was already encountered, and now there's another
// data label then bail: the block does not respect the 'code first,
// data second' supported layout requirement.
The questions are:
How to find the address of the problem? The warning contains an offset, but what is the base for it?
Means 'code first, data second' that the code can only reference data which is placed at greater addresses than this code?