diff options
Diffstat (limited to 'plugins/warp/src/plugin/workflow.rs')
| -rw-r--r-- | plugins/warp/src/plugin/workflow.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/warp/src/plugin/workflow.rs b/plugins/warp/src/plugin/workflow.rs index 52c8e249..c1728b5e 100644 --- a/plugins/warp/src/plugin/workflow.rs +++ b/plugins/warp/src/plugin/workflow.rs @@ -44,6 +44,14 @@ impl Command for RunMatcher { "No relocatable regions found, for best results please define sections for the binary!" ); } + for region in regions { + if region.start < 0x1000 { + tracing::warn!( + "Relocatable region has a low start-address ({:0x}), if possible, please rebase the binary to a higher address!", + view.image_base() + ); + } + } run_matcher(&view); }); |
