Changelog
New Features
* 136efef34c3d88b1b5467d2403316871a0041515: feat: add regex support for JSON matching in `dyld symaddr` cmd (blacktop)
bash
❯ jq . sym_lookup.json
[
{
"regex": ".*zero.*",
"image": "libsystem_c.dylib"
}
]
bash
❯ ipsw dyld symaddr dyld_shared_cache_arm64e --in sym_lookup.json | jq .
[
{
"name": "__utmpx_working_copy.idzero",
"image": "/usr/lib/system/libsystem_c.dylib",
"type": "__DATA.__bss",
"address": 7903949176
},
<SNIP>
{
"name": "_zeroes",
"image": "/usr/lib/system/libsystem_c.dylib",
"type": "__DATA.__data",
"address": 7903945364
},
{
"name": "__platform_bzero",
"image": "libsystem_c.dylib",
"type": "ext|undef"
},
{
"name": "_bzero",
"image": "libsystem_c.dylib",
"type": "__platform_bzero re-exported from libsystem_platform.dylib",
"address": 8345742624
}
]
Summary
**Full Changelog**: https://github.com/blacktop/ipsw/compare/v3.1.48...v3.1.49
What to do next?
- Follow us on [Twitter](https://twitter.com/blacktop__)
- Read the [documentation](https://blacktop.github.io/ipsw/docs/)