Skip to content

Commit

Permalink
Buggfix and some cleanup (#10)
Browse files Browse the repository at this point in the history
* Update version number. Add spinner for monitoring print line to show active run. gitignore fix where the folder Win32 was excluded.

* Bugg fix

* Buggfix where supplying a name pattern didnt sufficiently add a process to be monitored
  • Loading branch information
H4NM authored Dec 7, 2024
1 parent 99072e7 commit 2409d11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WhoYouCalling/ETW/KernelListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ private void ProcessStart(ProcessTraceData data)
else if(Program.TrackProcessesByName() && Program.IsTrackedProcessByName(pid: data.ProcessID, processName: data.ProcessName))
{
string parentProcessName = ProcessManager.GetProcessFileName(data.ParentID);
Program.AddProcessToMonitor(pid: data.ProcessID, commandLine: data.CommandLine);
Program.AddProcessToMonitor(pid: data.ProcessID, processName: data.ProcessName, commandLine: data.CommandLine);
Program.CatalogETWActivity(eventType: EventType.StartedChildProcess,
parentProcessName: parentProcessName,
parentProcessID: data.ParentID,
Expand Down

0 comments on commit 2409d11

Please sign in to comment.