Expand sudochop: host-side receiver tools, konsole search/strings commands, README#1
Draft
Copilot wants to merge 3 commits into
Draft
Expand sudochop: host-side receiver tools, konsole search/strings commands, README#1Copilot wants to merge 3 commits into
Copilot wants to merge 3 commits into
Conversation
Agent-Logs-Url: https://github.com/OpenJailbreak/sudochop/sessions/a6cca5f3-a3ea-4955-a769-c34fdbe8c349 Co-authored-by: posixninja <50025+posixninja@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenJailbreak/sudochop/sessions/a6cca5f3-a3ea-4955-a769-c34fdbe8c349 Co-authored-by: posixninja <50025+posixninja@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Analyze project and propose expansion opportunities
Expand sudochop: host-side receiver tools, konsole search/strings commands, README
Apr 4, 2026
posixninja
approved these changes
Apr 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The project lacked any host-side tooling to receive data from the device, had
searchandstringskonsole commands stubbed as "Not implemented", a memory leak incmd_hexdump, and a one-line README.Host-side tools (
tools/)receive_dump.py– connects to port 2420, reads the 8-byte little-endian total-size header fromdump.dylib, streams the raw disk image to a local file with progress/speed reportingreceive_keys.py– connects to port 5000, receives and parses the XML plist fromcrack.dylibviaplistlib, pretty-prints keys in priority order (AES 835/89A/89B, EMF, DKey, passcode, class keys, UUID, HFS+ info, boot args); optionally saves raw plistkonsole shell (
konsole/konsole/shell.c)cmd_search– searches a kernel memory region for a hex byte pattern; uses ahex_char_to_int()helper for explicit per-character validation withoutsscanf; null-checks bothmalloccallscmd_string– finds printable ASCII runs ≥ configurable min length (default 4) with a separate trailing-run flush after the loop; printsaddress: stringfor each hitcommands[]dispatch table with descriptionscmd_hexdump:bufwas neverfree()dHousekeeping
.gitignore– covers__pycache__, Xcodebuild/,*.dylib,.DS_Store, disk imagesOriginal prompt