Python API library for Vulners Database

Written by Tariq. Date: 2017-9-8

Always on the lookout for new tools to add the security arsenal I came accross a python library for the Vulners Database, one of the largest vulnerability databases around.

Futher Details

The library is available on gitup as vulnersCom/api. It allows the typical things you might expect like using an application signature and searching the database for known vulnerabilites.

import vulners

vulners_api = vulners.Vulners()
wordpress_exploits = vulners_api.searchExploit("wordpress 4.7.0")

Happy coding!