npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cerius

v3.0.4

Published

Tool for Server Certificate Validation

Downloads

25

Readme

Cerius Health

A tool to extract certificate information from the host.

Installation

Prerequisites

  • NodeJS - v7.2.0 (current)
$ npm install --global cerius

API Reference

cerius is an extremely simple command line tool to use.

-h & -p flags

Cerius can identify & extract certificate information for any hostname that is passed to it using the -h flag as described below.

By default the port number, if not specified is 443

$ cerius -h www.google.com

//output
www.google.com Certificate Information
Issuer: US, Google Inc, Google Internet Authority G2
Subject: US, California, Mountain View, Google Inc, www.google.com
Subject Alternative Names: www.google.com
Expires on: 02/02/2017 in 2 months

If a different port needs to be specified, then the same can be done as in the below example

$ cerius -h www.google.com -p 443

//output
www.google.com Certificate Information
Issuer: US, Google Inc, Google Internet Authority G2
Subject: US, California, Mountain View, Google Inc, www.google.com
Subject Alternative Names: www.google.com
Expires on: 02/02/2017 in 2 months

Bulk option

There are chances when certificate information is to be extracted for a list of servers. In that case we can use the bulk option, which accepts two parameters "path of the file to get list of servers" and "name of the output file". bulk option only supports Excel files at the moment.

Syntax: cerius bulk {path_to_file.xlsx} {output_file.xlsx}.

!!NOTE: when using bulk option, the output file will be generated in the current directory

The input excel file should have only one column filled with the host-names for which the information is to be extracted.

$ cerius bulk ./servers.xlsx certificates.xlsx

//output
100% processed - extracted certificate information for www.google.com [expires in 2 months] in 0.2s

Certificate analysis is complete.
Generating Excel file
Excel created successfully !

License

Apache License.