Created
July 19, 2018 12:12
-
-
Save toke/1df8588a7cfad87b7b76cee447cca589 to your computer and use it in GitHub Desktop.
Osquery https://osquery.io exmaple queries
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
SELECT DISTINCT process.name, listening.port, listening.address, process.pid | |
FROM processes AS process JOIN listening_ports AS listening ON process.pid = listening.pid; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment