Create a grep plugin that will find private keys in HTTP responses. I just found a private key with nikto and a little bit of luck :+1:
The key was un a format that matched: -----BEGIN RSA PRIVATE KEY-----
It would be nice to research the top 3 most common formats for storing keys, and identifying a way to match each of those.
This is a really easy task since the grep plugin only needs to match against a couple of strings and create a vuln if they match. Pull requests are welcome!
Create a grep plugin that will find private keys in HTTP responses. I just found a private key with nikto and a little bit of luck :+1:
The key was un a format that matched:
-----BEGIN RSA PRIVATE KEY-----
It would be nice to research the top 3 most common formats for storing keys, and identifying a way to match each of those.
This is a really easy task since the grep plugin only needs to match against a couple of strings and create a vuln if they match. Pull requests are welcome!