Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Locate Blazor Webassembly downloaded .dll files on disk?

I want to locate the .dll files that has been shipped by Blazor (Web Assembly) to browsers like Chrome to see if the .dll files can be read by disassemblers(like Reflector) or not. I found the files in Chrome's

Developers tool(F12) > Application tab > Cache Storage

but can not find them on the disk.

Update : Suppose that I want the get access to some else's Blazor website's .dll files. Where are the following files on website visitor's computer?

enter image description here

and

enter image description here

like image 521
nAviD Avatar asked Oct 12 '20 07:10

nAviD


1 Answers

You can try this utility - https://www.nirsoft.net/utils/chrome_cache_view.html

On windows Chrome cache location is - C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data\Default\Cache

This utility work with latest Microsoft Edge for Chrome also. It's cache location on windows is - C:\Users\%USERNAME%\AppData\Local\Microsoft\Edge\User Data\Default\Cache

like image 165
Gursharan Avatar answered Oct 04 '22 23:10

Gursharan