Cyber Security and Networking Scripts
- Script is used to pull Nessus plugins from tenable
- Correlate plugins to the CISA CVEs
- must download the known_exploited_vulnerabilities.csv
- from https://www.cisa.gov/known-exploited-vulnerabilities-catalog
ipParser.py
- Given a list of ips in string format, group the consecutive ips together and add the nonconsecutive
- example Given ['1.1.1.1','1.1.1.2','1.1.1.4','1.1.1.5','1.1.1.6']
- Output 1.1.1.1-1.1.1.2,1.1.1.4-1.1.1.6
- Very helpful for input for web automations and input.
- Generator for IP between a start and end ip
- Get the subnet of IPv6 of a start and end ip