From a23f5148d02407ca5d0ca1592a12fc3d4d4f0c4a Mon Sep 17 00:00:00 2001 From: Khairul Azhar Kasmiran Date: Sun, 2 Feb 2025 22:28:12 +0800 Subject: [PATCH] Update `ell search` --- src/search_bytes/configurating_the_search.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/search_bytes/configurating_the_search.md b/src/search_bytes/configurating_the_search.md index f60d8d32..49e685dd 100644 --- a/src/search_bytes/configurating_the_search.md +++ b/src/search_bytes/configurating_the_search.md @@ -14,14 +14,14 @@ search.contiguous = true ; Accept contiguous/adjacent search hits search.distance = 0 ; Search string distance search.esilcombo = 8 ; Stop search after N consecutive hits search.flags = true ; All search results are flagged, otherwise only printed -search.from = 0xffffffffffffffff ; Search start address +search.from = 0 ; Search start address (inclusive) search.in = io.maps ; Specify search boundaries [raw, block, bin.section, bin.sections, bin.sections.rwx, bin.sections.r, bin.sections.rw, bin.sections.rx, bin.sections.wx, bin.sections.x, io.map, io.maps, io.maps.rwx, io.maps.r, io.maps.rw, io.maps.rx, io.maps.wx, io.maps.x, dbg.stack, dbg.heap, dbg.map, dbg.maps, dbg.maps.rwx, dbg.maps.r, dbg.maps.rw, dbg.maps.rx, dbg.maps.wx, dbg.maps.x, analysis.fcn, analysis.bb] search.kwidx = 1 ; Store last search index count search.maxhits = 0 ; Maximum number of hits (0: no limit) search.overlap = false ; Look for overlapped search hits search.prefix = hit ; Prefix name in search hits label search.show = true ; Show search results -search.to = 0xffffffffffffffff ; Search end address +search.to = 0xffffffffffffffff ; Search end address (exclusive) ``` The `search.flags` boolean variable instructs the search engine to flag hits so that they can be referenced later.