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