Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/santisq/psnetscanners
ICMP and TCP async scanners
https://github.com/santisq/psnetscanners
dns icmp multithreading parallel-processing ping powershell
Last synced: 17 days ago
JSON representation
ICMP and TCP async scanners
- Host: GitHub
- URL: https://github.com/santisq/psnetscanners
- Owner: santisq
- License: mit
- Created: 2021-12-08T15:47:02.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-24T02:27:18.000Z (6 months ago)
- Last Synced: 2024-07-24T08:33:40.130Z (6 months ago)
- Topics: dns, icmp, multithreading, parallel-processing, ping, powershell
- Language: C#
- Homepage: https://www.powershellgallery.com/packages/PSNetScanners
- Size: 112 KB
- Stars: 13
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
PSNetScanners
PowerShell ICMP and TCP async scanners
[![build](https://github.com/santisq/PSNetScanners/actions/workflows/ci.yml/badge.svg)](https://github.com/santisq/PSNetScanners/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/santisq/PSNetScanners/branch/main/graph/badge.svg?token=b51IOhpLfQ)](https://codecov.io/gh/santisq/PSNetScanners)
[![PowerShell Gallery](https://img.shields.io/powershellgallery/v/PSNetScanners?label=gallery)](https://www.powershellgallery.com/packages/PSNetScanners)
[![LICENSE](https://img.shields.io/github/license/santisq/PSNetScanners)](https://github.com/santisq/PSNetScanners/blob/main/LICENSE)PSNetScanners is a PowerShell Module that includes two cmdlets using async techniques for ICMP and TCP scanning. Essentially, like built-in cmdlets `Test-Connection` or `Test-NetConnection` with a few less options but much faster.
## Documentation
Check out [__the docs__](./docs/en-US) for information about how to use this Module.
## Installation
### Gallery
The module is available through the [PowerShell Gallery](https://www.powershellgallery.com/packages/PSNetScanners):
```powershell
Install-Module PSNetScanners -Scope CurrentUser
```### Source
```powershell
git clone 'https://github.com/santisq/PSNetScanners.git'
Set-Location ./PSNetScanners
./build.ps1
```## Requirements
This module has no requirements and is fully compatible with __Windows PowerShell 5.1__ and [__PowerShell Core 7+__](https://github.com/PowerShell/PowerShell).
## Contributing
Contributions are more than welcome, if you wish to contribute, fork this repository and submit a pull request with the changes.