https://github.com/krishpranav/winvulnmap
A simple powershell script that performs Host-based local vulnerability scanner
https://github.com/krishpranav/winvulnmap
powershell vulnerability vulnerability-scanner windows windows-scanner windows-vulnerability
Last synced: 10 months ago
JSON representation
A simple powershell script that performs Host-based local vulnerability scanner
- Host: GitHub
- URL: https://github.com/krishpranav/winvulnmap
- Owner: krishpranav
- Created: 2021-06-12T10:21:10.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-12T10:44:32.000Z (over 4 years ago)
- Last Synced: 2025-04-15T02:45:08.433Z (10 months ago)
- Topics: powershell, vulnerability, vulnerability-scanner, windows, windows-scanner, windows-vulnerability
- Language: PowerShell
- Size: 6.84 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# winvulnmap
A simple powershell script that performs Host-based local vulnerability scan
# Installation
```
git clone https://github.com/krishpranav/winvulnmap
```
# Examples:
- Default mode does a vulnerability scanning:
```
PS> Invoke-WinVulmap
```
- Conducts a vulnerability scanning and only shows vulnerabilities that have exploits:
```
PS> Invoke-WinVulmap -OnlyExploitableVulns
```
- Download given exploit:
```
PS> Invoke-WinVulmap -DownloadExploit EDB9386
```
- Scans the whole computer and download all available exploits:
```
PS> Invoke-WinVulmap -DownloadAllExploits
```