Chromium runs a web Javascript application from a site. The JS code is obfuscated and is a lot of code. The app loads some data to display. I do not see the data stored on the file system (I run a 'find' to see if any files have been modifed right after loading the app and no files are modified). The data IS stored somewhere locally because when internet is unplugged whatever loaded data is still showing. Where is the data stored?? How do I find it and extract it? Is it in memory only? How would I go about scraping the data?
EDIT: Where is Blob binary data stored? answers my question partially - the data is in RAM. The question that remains is how to narrow down where in RAM. Is it possible to scan recently changed RAM for some features that we know of the data?