Problem Statement
What makes osquery useful to security teams?
Explanation
Osquery lets you query endpoints like a database using standard SQL to retrieve processes, users, sockets, and more. It is cross-platform and designed for analytics and monitoring.
Code Solution
SolutionRead Only
SELECT pid, name, path FROM processes WHERE name='powershell.exe';
