Created
December 1, 2020 18:01
-
-
Save dtmsecurity/dc6597756013cd93ce6f8755d20b7ec2 to your computer and use it in GitHub Desktop.
ISeeSharpProcess
This file contains 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 characters
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(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment