testssl
v1.0.2
Published
Wrapper for the testssl project. Returns JSON.
Maintainers
Readme
LINUX ONLY
Info
This wrapper is based on: https://github.com/drwetter/testssl.sh
You may have to install:
hexdump
apt install bsdmainutilsgit
apt install gitInstall
npm i testsslUsage
This will take 1-2 minutes before returning the data as JSON
index.js
const { testssl } = require("testssl");
(async () => {
const a = await testssl('example.com');
console.log(a);
})();