Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ColumPaget/vulnvisor.lua
Pulls software vulnerabilities feeds from NIST NVD, bugtraq and securityfocus and reports those matching a keyword list to standard out, or in an email sent to a single address. Requires libUseful and libUseful-lua installed.
https://github.com/ColumPaget/vulnvisor.lua
Last synced: 3 months ago
JSON representation
Pulls software vulnerabilities feeds from NIST NVD, bugtraq and securityfocus and reports those matching a keyword list to standard out, or in an email sent to a single address. Requires libUseful and libUseful-lua installed.
- Host: GitHub
- URL: https://github.com/ColumPaget/vulnvisor.lua
- Owner: ColumPaget
- License: gpl-3.0
- Created: 2019-06-12T22:51:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-19T15:21:26.000Z (over 1 year ago)
- Last Synced: 2024-04-16T02:42:36.065Z (7 months ago)
- Language: Lua
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SYNOPSIS
vulnvisor.lua pulls rss feeds from the bugtraq mailing-list, the NIST National Vulnerability Database and the security-focus newsfeed. It displays entries in these feeds that match a list of keywords given on the commandline, and can optionally send output in an email to a single email address. vulnvisor.lua can use the mail, mutt or sendmail programs to dispatch mail.
vulnvisor.lua requires libUseful and libUseful-lua to be installed.
# USAGE
```
vulnadvisor.lua ...
```# OPTIONS
```
-t Address to send report to
-to Address to send report to
-f Sender address for email
-from Sender address for email
-sender Sender address for email
-? This help
-h This help
-help This help
--help This help
```# EXAMPLES
```
Print all items in feeds: 'lua vulnvisor.lua'
Print items with keyword 'android': 'lua vulnvisor.lua' android
Mail items with keyword 'android': 'lua vulnvisor.lua' -to [email protected] android
Print items, multiple keywords: 'lua vulnvisor.lua android linux firefox cisco'
```