Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/poshsecurity/Posh-SYSLOG
Send SYSLOG messages from PowerShell
https://github.com/poshsecurity/Posh-SYSLOG
powershell powershell-gallery security syslog syslog-messages
Last synced: 2 months ago
JSON representation
Send SYSLOG messages from PowerShell
- Host: GitHub
- URL: https://github.com/poshsecurity/Posh-SYSLOG
- Owner: poshsecurity
- License: mit
- Created: 2013-10-30T02:24:46.000Z (about 11 years ago)
- Default Branch: main
- Last Pushed: 2024-07-24T12:19:03.000Z (6 months ago)
- Last Synced: 2024-08-02T17:37:20.383Z (5 months ago)
- Topics: powershell, powershell-gallery, security, syslog, syslog-messages
- Language: PowerShell
- Homepage: http://poshsecurity.com
- Size: 160 KB
- Stars: 91
- Watchers: 15
- Forks: 19
- Open Issues: 6
-
Metadata Files:
- Readme: README.MD
- Contributing: contributing.md
- License: LICENSE.MD
- Code of conduct: code-of-conduct.md
Awesome Lists containing this project
- jimsghstars - poshsecurity/Posh-SYSLOG - Send SYSLOG messages from PowerShell (PowerShell)
README
# Posh-SYSLOG
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/108fce1968bc40e689ef8053bc3d1e78)](https://app.codacy.com/app/kjacobsen/Posh-SYSLOG?utm_source=github.com&utm_medium=referral&utm_content=poshsecurity/Posh-SYSLOG&utm_campaign=Badge_Grade_Dashboard)
[![Build Status](https://dev.azure.com/poshsecurity/PowerShell/_apis/build/status/Posh-SYSLOG?branchName=master)](https://dev.azure.com/poshsecurity/PowerShell/_build/latest?definitionId=40&branchName=master)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
[![PowerShell Gallery](https://img.shields.io/powershellgallery/v/posh-syslog.svg)](https://www.powershellgallery.com/packages/Posh-SYSLOG)
[![PowerShell Gallery](https://img.shields.io/powershellgallery/p/posh-syslog.svg)](https://www.powershellgallery.com/packages/Posh-SYSLOG)
[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/posh-syslog.svg)](https://www.powershellgallery.com/packages/Posh-SYSLOG)## Description
A module for sending SYSLOG messages from PowerShell.
The module supports RFC5424 and RFC3164, and can send messages via TCP and UDP.
Authored by Kieran Jacobsen
## Installing
The easiest way to get Posh-SYSLOG is using the [PowerShell Gallery](https://powershellgallery.com/packages/Posh-SYSLOG/)!
### Inspecting the module
Best practice is that you inspect modules prior to installing them. You can do this by saving the module to a local path:
``` PowerShell
PS> Save-Module -Name Posh-SYSLOG -Path
```### Installing the module
Once you trust a module, you can install it using:
``` PowerShell
PS> Install-Module -Name Posh-SYSLOG
```### Updating Posh-SYSLOG
Once installed from the PowerShell Gallery, you can update it using:
``` PowerShell
PS> Update-Module -Name Posh-SYSLOG
```### Uninstalling Posh-SYSLOG
To remove Posh-SYSLOG:
``` PowerShell
PS> Uninstall-Module -Name Posh-SYSLOG
```## Contributing to Posh-SYSLOG
Interested in contributing? Read how you can [Contribute](contributing.md) to Posh-SYSLOG
This project maintains a [Code of Conduct](code-of-conduct.md) that establishes how the project is governed and how everyone involved is expected to behave. You can report unacceptable behavior to [[email protected]](mailto:[email protected]).
## Release History
A detailed release history is contained in the [Change Log](CHANGELOG.md).
## License
Posh-SYSLOG is provided under the [MIT license](LICENSE.md).