04-09-2018 10:17 AM
Hi,
I am wanting to use openVulnQuery to return all Cisco ISE Vulnerabilities. If I can filter on specific versions - even better. I am using Python 3.6 to run my query. Does openVulnQuery support using ISE as the product name? I want to avoid generating a report that pulls the entire database and filters on "Cisco Identity Services Engine". Any help would be greatly appreciated.
I am following these links as a point of reference for the output:
Python Script:
from openVulnQuery import query_client
query_client = query_client.OpenVulnQueryClient(client_id="", client_secret="")
test = query_client.get_by_product(adv_format="oval", product_name="identity-services-engine")
print(test)
Thank you!
Solved! Go to Solution.
04-09-2018 11:55 AM
Hi Timothy,
Yes indeed. You can do it using "Cisco Identity Services Engine". The following is an example using the openVulnQuery client:
openVulnQuery --cvrf --product "Cisco Identity Services Engine"
04-09-2018 10:28 AM
Hi Timothy,
Querying by version is only supported for IOS and IOS-XE.
Thanks!
Omar
04-09-2018 11:49 AM
Hi Omar,
That's too bad. I don't mind not being able to query by version. I'd like to be able to query all Cisco ISE vulnerabilities as a product ID. If there isn't a specific URL to query on could I submit a feature request?
Examples:
https://api.cisco.com/security/advisories/all/product?product=identity-services-engine
or
https://api.cisco.com/security/advisories/all/product?product=ise
04-09-2018 11:55 AM
Hi Timothy,
Yes indeed. You can do it using "Cisco Identity Services Engine". The following is an example using the openVulnQuery client:
openVulnQuery --cvrf --product "Cisco Identity Services Engine"
04-09-2018 01:48 PM
That worked perfectly. Thank you for your assistance. I didn't think the product name would accept values with spaces.
Here's the query I used for reference:
test = query_client.get_by_product(adv_format="cvrf", product_name="Cisco Identity Services Engine")
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide