https://github.com/p0dalirius/findprocesseswithnamedpipes
A simple C++ Windows tool to get information about processes exposing named pipes.
https://github.com/p0dalirius/findprocesseswithnamedpipes
named-pipes processes smb windows
Last synced: 7 months ago
JSON representation
A simple C++ Windows tool to get information about processes exposing named pipes.
- Host: GitHub
- URL: https://github.com/p0dalirius/findprocesseswithnamedpipes
- Owner: p0dalirius
- Created: 2025-03-05T14:39:54.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-03-06T20:51:29.000Z (7 months ago)
- Last Synced: 2025-03-06T21:27:51.216Z (7 months ago)
- Topics: named-pipes, processes, smb, windows
- Language: C++
- Homepage: https://podalirius.net/
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README

A simple C++ Windows tool to get information about processes exposing named pipes.
![]()
![]()
![]()
## Features
- [x] Command line options:
+ [x] `-j` or `--json` to specify the JSON output file path.
+ [x] `-c` or `--csv` to specify the CSV output file path.
+ [x] `-h` or `--help` to display help information.
+ [x] `-v` or `--verbose` to enable verbose output.- [x] Output formats:
+ [x] JSON output with process details and named pipes
+ [x] CSV output with process ID, name, path and pipes
+ [x] Text output with process ID, name, path and pipes## Usage
```
C:\> FindProcessesWithNamedPipes.exe -h
Find Processes With Named Pipes - by Remi GASCOU (Podalirius)Usage: FindProcessesWithNamedPipes.exe [-c csv] [-d debug] [-h help] [-j json] [-s show] [-t text]
Optional arguments:
-h, --help Displays this help message. (default: false)
-j, --json Output results in JSON format (default: )
-c, --csv Output results in CSV format (default: )
-t, --text Output results in plain text format (default) (default: )
-s, --show Print the results. (default: false)
-d, --debug Enable debug logging (default: false)
```## Demonstration

## Contributing
Pull requests are welcome. Feel free to open an issue if you want to add other features.