Skip to content

Release v2.2.0

Choose a tag to compare

@thehappydinoa thehappydinoa released this 27 Apr 15:37
· 169 commits to main since this release

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)

  • Added Certificate index to the view and search commands

    • Try it now:
    censys view 9b00121b4e85d50667ded1a8aa39855771bdb67ceca6f18726b49374b41f0041 --index-type certificates
    # Or
    censys search 'names: censys.io' --index-type certificates --fields names
  • Enhanced the subdomains command using the new Certs V2 API

Breaking Changes ❌

  • Removed Risksv1 and renamed Risksv2 to simply Risks.

    • 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