Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unloaded AppDomain is still shown in System Informer .NET assemblies tab. #2048

Open
Cracked5pider opened this issue May 3, 2024 · 1 comment

Comments

@Cracked5pider
Copy link

Brief description of your issue

While writing a small function to host the CLR in the current process and load and invoke an assembly. After invoking the assembly the app domain is getting unloaded but still shown in System Informer (just with the loaded assembly name missing). More shown below. When interacting with the CLR API to query all app domains and assemblies, the app domain that has been unloaded is no longer visible (API used are: ICorRuntimeHost::EnumDomains, ICorRuntimeHost::NextDomain, mscorlib::_AppDomain::GetAssemblies).

Code that unloads the App domain:
image

Steps to reproduce (optional)

No response

Expected behavior (optional)

I downloaded ProcessHacker to see if the same behavior is occurring. Which wasn't the case. (stomper.x64.exe is the process that I wrote to host the CLR and execute my .NET assembly).
image

Actual behavior (optional)

Under SystemInformer the AppDomain is still shown after calling ICorRuntimeHost::UnloadDomain.
image

Environment (optional)

My environment is Windows 11 (Build: 22631.3447) 64-bit and running a 64-bit process. If more information is required to understand the issue I am willing to help and show more.
@dmex
Copy link
Member

dmex commented May 4, 2024

What does windbg show?

Copy the value from the address column and from windbg try execute:
FindAppDomain ADDR
!DumpDomain ADDR
!DumpDomain should also list all the appdomains
dt coreclr!appdomain ADDR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants