Reporting

vFeed Usage / Cheat Sheet

What is vFeed Cross Linked and Aggregated Local Vulnerability Database https://github.com/toolswatch/vFeed http://www.vfeed.io/Read More »

Read .nessus file into Excel (with Power Query)

Objective Read a .nessus file (hosts properties, vulnerability and compliance scan results) into excel.Read More »

Excel convert all formulas to values

Objective Convert all formulas to values in the entire workbook with a macro.Read More »

Sort IP addresses

Bash: sort -n -t . -k 1,1 -k 2,2 -k 3,3 -k 4,4sort -n -t . -k 1,1 -k 2,2 -k 3,3 -k 4,4 Powershell: gc .\ips.txt | sort {"{0:d3}.{1:d3}.{2:d3}.{3:d3}" -f @([int[]]$_.split(‘.’)) }gc .\ips.txt | sort {"{0:d3}.{1:d3}.{2:d3}.{3:d3}" -f @([int[]]$_.split(‘.’)) } Excel: Use the following formula to calculate a number which we can sort on (cell […]Read More »