Help with Jetbrains dotPeek
I'm trying to poke at some DLLs with it, but so far I haven't seen anything particularly readable and/or exposing the actual logic behind the DLLs.

3 Replies
For example, dpapi.dll
So I see the metadata, file headers, version, etc - but I can't view the decompiled functions themselves. Tried decompiling lsass.exe and found it's xml manifest before realizing that it probably isn't native .NET and therefore can't be decompiled in Jetbrains by default
However, things like
System.Core
, System.Web
etc are perfectly visible, with all its functions and symbols neatly organized
Why does it not show the same with DLLs if both are .NET native? (Unless I'm mistaken)It's because they're unmanaged, so you won't be able to get the actual code from it iirc
So I think you'll have to do it the old fashioned way lol
What would that be? đź‘€