mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Create pipes.yml (#19638)
Create pipes table per #16993 --------- Co-authored-by: Eric <eashaw@sailsjs.com>
This commit is contained in:
parent
d69a4406a5
commit
6e0ef1f446
1 changed files with 19 additions and 0 deletions
19
schema/tables/pipes.yml
Normal file
19
schema/tables/pipes.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
name: pipes
|
||||
description: |- # (required) string - The description for this table. Note: this field supports Markdown
|
||||
Named pipes in Windows can be used to provide communication between processes on a computer or between processes on different computers across a network. The `pipes` osquery table lists the named pipes currently running on a Windows computer.
|
||||
examples: |- # (optional) string - An example query for this table. Note: This field supports Markdown
|
||||
This query displays all attributes (columns) for the named pipe enabled by opening PowerShell:
|
||||
|
||||
```
|
||||
SELECT * FROM pipes WHERE name LIKE '%powershell';
|
||||
```
|
||||
notes: |- # (optional) string - Notes about this table. Note: This field supports Markdown.
|
||||
Running the following command at a prompt in PowerShell lists the named pipes currently open on a Windows computer:
|
||||
|
||||
```
|
||||
get-childitem \\.\pipe\
|
||||
```
|
||||
|
||||
Links:
|
||||
- Microsoft documentation on [named pipes](https://learn.microsoft.com/en-us/windows/win32/ipc/named-pipes)
|
||||
- Discover files linked to processes with Windows [Process Explorer](https://learn.microsoft.com/en-us/sysinternals/downloads/process-explorer)
|
||||
Loading…
Reference in a new issue