(leak)
| 77 | |
| 78 | // boundaries of the .text + PT_SCE_RELRO portion of a module |
| 79 | function get_boundaries(leak) { |
| 80 | const lib_base = find_base(leak, true, true); |
| 81 | const lib_end = find_base(leak, false, false); |
| 82 | |
| 83 | return [lib_base, lib_end]; |
| 84 | } |
| 85 | |
| 86 | // dump a module's .text and PT_SCE_RELRO segments only |
| 87 | function dump(name, lib_base, lib_end) { |
no test coverage detected