Skip to content

v0.0.1-alpha.0

Latest

Choose a tag to compare

@dipakparmar dipakparmar released this 13 Mar 04:04
· 27 commits to main since this release
84804d5

New Features

  • Introducing the sslCheck query field that allows retrieval of SSL certificate info of the website.

Example:

  sslCheck(domain: "google.com") {
    certType
    expiresInDays
    domain
    fingerprint
    fingerprint256
    fingerprint512
    issuer {
      commonName
      country
      locality
      organization
      organizationUnit
      state
      businessCategory
    }
    serialNumber
    subject {
      commonName
      country
      locality
      organization
      organizationUnit
      state
      businessCategory
    }
    subjectAltName
    validFrom
    valid
    validTo
  }
}

This initial alpha release is limited in scope and may not cover all the features and edge cases but open to feedback and improvement!

Full Changelog: https://github.com/dipakparmar/ssl-checker-graphql/commits/v0.0.1-alpha.0