Skip to content

Instantly share code, notes, and snippets.

@leonid-shevtsov
Created June 13, 2024 08:39
Show Gist options
  • Save leonid-shevtsov/098df0ecef0769cd98633b3d226b2094 to your computer and use it in GitHub Desktop.
Save leonid-shevtsov/098df0ecef0769cd98633b3d226b2094 to your computer and use it in GitHub Desktop.
ImHex protocol description for Chromium Pickle data
struct PickleString {
u32 length;
char16 chars[length];
char16 zeroChar;
};
struct PickleEntry {
PickleString key;
PickleString value;
};
struct PickleFile {
u32 payloadSize;
u32 entryCount;
PickleEntry entries[entryCount];
};
PickleFile file @ 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment