Add Slack Desktop support - #113
Merged
Merged
Conversation
Two artifacts from the Slack desktop app's Local Storage LevelDB. Slack Workspaces parses the localConfig_v2 key: each workspace's name, URL, user ID, domain, last-active flag, most-recently-used and version timestamps, the channel/DM last open, and a per-workspace session token (masked). Slack Client Sessions parses the activitySession_<teamId> keys into a per-workspace usage timeline (start, last activity, last logged, duration). Both read the LevelDB table and log files directly, so superseded versions of a key come back too: an earlier set of workspaces or sessions appears alongside the current one. Slack Desktop is closed source, so the field meanings follow the observed Local Storage structure. They were validated against a constructed known-data fixture (authored, not from a real device, fully redistributable; builder kept beside the corpus zip), not against Slack's own documentation. The fixture exercises token masking, superseded-version recovery, and both keys: 3 workspace records (a 2-workspace config plus one superseded 1-workspace config) and 3 sessions across 2 workspaces. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Adds Slack Desktop support. Two artifacts from the app's Local Storage LevelDB:
Both read the LevelDB table and log files directly, so superseded versions of a key come back too, giving history rather than only the current state. Session tokens are masked to a recognizable prefix and suffix.
Slack Desktop is closed source, so the field meanings follow the observed Local Storage structure. They were validated against a constructed known-data fixture (authored, not from a real device, so fully redistributable; the builder is kept beside the corpus zip), not against Slack documentation. The fixture exercises token masking, superseded-version recovery, and both keys: 3 workspace records and 3 sessions across 2 workspaces.