Skip to content

Commit

Permalink
Update ell search (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazarmy authored Feb 3, 2025
1 parent 5d37082 commit 159639c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/search_bytes/configurating_the_search.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 159639c

Please sign in to comment.