Created
December 1, 2020 18:01
-
-
Save dtmsecurity/dc6597756013cd93ce6f8755d20b7ec2 to your computer and use it in GitHub Desktop.
Revisions
-
dtmsecurity created this gist
Dec 1, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,34 @@ using System; using System.Diagnostics; namespace ISeeSharpProcess { class Program { // Port of https://gist.github.com/mubix/1536156f06633a54e7f1f819d7fa740a static void GetCSharpProcess() { foreach(Process proc in Process.GetProcesses()) { try { foreach (ProcessModule mod in proc.Modules) { if (mod.ModuleName.Contains("mscoree")) { Console.WriteLine("[*] .NET found in {0} at {1}", proc.ProcessName, proc.MainModule.FileName); } } } catch { } } } static void Main(string[] args) { GetCSharpProcess(); } } }