Release v2.2.0
What's Changed ❇️
-
Added Certs V2 (
CensysCerts) and Web Entities (WebEntitiesAssets) API Support in #468 -
Added deprecation for Certs V1 This is going away soon, please switch to Certs v2 (docs)
- See example using the search method:
examples/search/search_certs.py
- See example using the search method:
-
Added Certificate index to the
viewandsearchcommands- Try it now:
censys view 9b00121b4e85d50667ded1a8aa39855771bdb67ceca6f18726b49374b41f0041 --index-type certificates # Or censys search 'names: censys.io' --index-type certificates --fields names
-
Enhanced the
subdomainscommand using the new Certs V2 API
Breaking Changes ❌
-
Removed
Risksv1and renamedRisksv2to simplyRisks.- Imports will need to be updated.
Old Imports
from censys.asm.risks.v2 import Risksv2
New Imports ✨
from censys.asm.risks import Risks
-
Removed Certs V1
Legacy Certs V1 Imports
from censys.search import CensysCertificates
New Certs V2 Imports ✨
from censys.search import CensysCerts # Make sure to update queries and pagination logic
-
Removed Certs V1 from CLI
Full Changelog: v2.1.9...v2.2.0