Ipsw

Latest version: v0.1.3

Safety actively analyzes 639068 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 54 of 102

3.1.189

Changelog

Bug fixes
* f93c1353151c583e524b021f8bb4a502e45dd6c1: fix: improve stability of `ipsw idev fsyms` cmd (blacktop)

Dependency updates
* 330d74d6e6d0a56c104c1652fcc8faf5d13f1df0: chore(deps): update deps (blacktop)

Summary
**Full Changelog**: https://github.com/blacktop/ipsw/compare/v3.1.188...v3.1.189
What to do next?
- Read the [documentation](https://blacktop.github.io/ipsw/docs/)
- Join our [Discord server](https://discord.gg/P3ukGGxc)
- Follow us on [Twitter](https://twitter.com/blacktop__)

3.1.188

Highlights

Added better support for stub islands to many of the `ipsw dyld` commands and created a 🆕 `ipsw dyld stubs` command to dump them all out and the symbol they stub to

bash
❯ ipsw dyld stubs 20B5050f__iPhone15,2/dyld_shared_cache_arm64e | head
• Loading symbol cache file...
0x199ce7640: _CMPhotoJPEGWriteMPFWithJPEG
0x1ad5d5970: _objc_autorelease
0x1c8d0f350: _$ss10_HashTableV12previousHole6beforeAB6BucketVAF_tF
0x1cf7eba00: _$s5TeaUI14KeyCommandItemVMa
0x1bb1f8a40: _swift_task_switch
0x1c1f5edc0: _$s4GRDB3RowC19fastDecodeIfPresent_16atUncheckedIndexxSgxm_SitKAA24DatabaseValueConvertibleRzAA015StatementColumnL0RzlF
0x1ec2127d0: _CGColorGetColorSpace
0x207434db0: __swift_stdlib_strtod_clocale
0x1a0622e00: _objc_retain_x20
0x1c1f87d30: _swift_getTupleTypeLayout3
"0x1bb220d70: _fcntl"


Disass the stub

bash
❯ ipsw dyld disass 20B5050f__iPhone15,2/dyld_shared_cache_arm64e-a 0x1bb220d70 --count 5
• Loading symbol cache file...

nasm
j__fcntl
0x1bb220d70: 30 7b 04 b0 adrp x16, 0x1c4185000
0x1bb220d74: 10 32 1b 91 add x16, x16, 0x6cc ; _fcntl
0x1bb220d78: 00 02 1f d6 br x16
0x1bb220d7c: 20 00 20 d4 brk 0x1


Lookup the address

bash
❯ ipsw dyld a2s 20B5050f__iPhone15,2/dyld_shared_cache_arm64e 0x1bb220d70 --mapping --image
• Loading symbol cache file...

MAPPING
=======
> "STUB Island" (dsc.18) UUID: 7623C890-8F05-3DFD-AADF-CE765217C572

| SEG | INITPROT | MAXPROT | SIZE | ADDRESS | FILE OFFSET | SLIDE INFO OFFSET | FLAGS |
|--------|----------|---------|---------------------|-------------|-------------|-------------------|-------|
| __TEXT | r-x | r-x | 0x00080000 (524 kB) | 0x1bb1b4000 | 0x00000000 | 0x00000000 | 8 |

⨯ address 0x1bb220d70 not in any dylib

0x1bb220d70: "j__fcntl"


Locate any `xrefs`

bash
❯ ipsw dyld xref 20B5050f__iPhone15,2/dyld_shared_cache_arm64e 0x1bb220d70 --all
• Loading symbol cache file...
• No XREFS found dylib=/usr/lib/libobjc.A.dylib sym=j__fcntl xrefs=0
<SNIP>
• XREFS dylib=/System/Library/PrivateFrameworks/CloudKitDaemon.framework/CloudKitDaemon sym=j__fcntl xrefs=1
0x1b9f577ec: "openFdForDownloadPath:error: + 128"


Changelog

New Features
* bad684bcfc2db349d0db7138afeff66a284896ef: feat: add DumpStubIslands function (blacktop)
* fdc48563185676b9e0749bfe5e15dda1632f703c: feat: add a2s cache support to `ipsw dyld a2s` cmd to lookup stub islands (blacktop)
* dd0163630debaf23ea844f990becb5074730fe57: feat: add stub island support to `ipsw dyld xref` cmd and allow for searching ALL images for xrefs (blacktop)
* f9dfbba74a6cbe96e57daf80fe5ede5a042ef010: feat: add 🆕 `ipsw dyld stubs` cmd to dump stub islands (blacktop)

Bug fixes
* ad432a5556444e548f8723216b8f466a7e971d5d: fix: don't parse stub islands twice in `ipsw dyld disass` cmd (blacktop)

Dependency updates
* 5c53c0a491b266efd87935b5d0c0b046a51ce2a2: chore(deps): update deps (blacktop)

Summary
**Full Changelog**: https://github.com/blacktop/ipsw/compare/v3.1.187...v3.1.188
What to do next?
- Read the [documentation](https://blacktop.github.io/ipsw/docs/)
- Join our [Discord server](https://discord.gg/P3ukGGxc)
- Follow us on [Twitter](https://twitter.com/blacktop__)

3.1.187

Changelog

New Features
* e9d54eb7e3fe43fd4d5bfb016ce5fec43291accb: feat: `ipsw download ota --pattern` add ability to pull remote files out of OTA's zip and then check the payloads if not found nikias (blacktop)

Dependency updates
* 39636a79fe7d48c3baa361974660dabff97c38f3: chore(deps): update deps (blacktop)

Summary
**Full Changelog**: https://github.com/blacktop/ipsw/compare/v3.1.185...v3.1.187
What to do next?
- Read the [documentation](https://blacktop.github.io/ipsw/docs/)
- Join our [Discord server](https://discord.gg/P3ukGGxc)
- Follow us on [Twitter](https://twitter.com/blacktop__)

3.1.185

Changelog

New Features
* 1f6eb3b141c58bb9895ea7f99484cd40448f5f47: feat: add ability to download DSC from remote IPSWs (blacktop)

Summary
**Full Changelog**: https://github.com/blacktop/ipsw/compare/v3.1.184...v3.1.185
What to do next?
- Read the [documentation](https://blacktop.github.io/ipsw/docs/)
- Join our [Discord server](https://discord.gg/P3ukGGxc)
- Follow us on [Twitter](https://twitter.com/blacktop__)

3.1.184

Changelog

Summary
**Full Changelog**: https://github.com/blacktop/ipsw/compare/v3.1.182...v3.1.184
What to do next?
- Read the [documentation](https://blacktop.github.io/ipsw/docs/)
- Join our [Discord server](https://discord.gg/P3ukGGxc)
- Follow us on [Twitter](https://twitter.com/blacktop__)

3.1.182

Changelog

Bug fixes
* 71982503af173a347f069139b9e913cda1991279: fix: more gracefully handle Ctrl+C in `ipsw macho disass` cmd 151 (blacktop)
* 30be9052488f3efd73b70e2589c6637e9014e2a1: fix: show _objc_msgSend stubs in `ipsw dyld disass` cmd (blacktop)

Dependency updates
* 0e1ac9b5108868803f820a4c93d5847a0bfa3701: chore(deps): update deps (blacktop)

Summary
**Full Changelog**: https://github.com/blacktop/ipsw/compare/v3.1.181...v3.1.182
What to do next?
- Read the [documentation](https://blacktop.github.io/ipsw/docs/)
- Join our [Discord server](https://discord.gg/P3ukGGxc)
- Follow us on [Twitter](https://twitter.com/blacktop__)

Page 54 of 102

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.