AonCyberLabs / Windows-Exploit-Suggester

This tool compares a targets patch levels against the Microsoft vulnerability database in order to detect potential missing patches on the target. It also notifies the user if there are public exploits and Metasploit modules available for the missing bulletins.
GNU General Public License v3.0
3.94k stars 1.02k forks source link

Greppable database file #26

Open forkster opened 7 years ago

forkster commented 7 years ago

Any chance you can make the output xls file into a greppable format? Something that you could manipulate with cut?

Awesome tool by the way - super helpful finding those privilege escalations.

sammbertram commented 7 years ago

Thanks!

It's just an XLS file so you could convert it with LibreOffice or Microsoft Word or something similar manually. I suspect you wouldn't need to update the database very frequently.

Or, could just have a small Python script to do your parsing.

http://stackoverflow.com/questions/9884353/xls-to-csv-converter http://stackoverflow.com/questions/24969274/converting-xls-file-into-csv-txt-file-in-python

(Haven't tried either though so be warned).