You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

sslping-cli

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sslping-cli - npm Package Compare versions

Comparing version

to
1.0.3

10

index.js

@@ -19,9 +19,7 @@ #!/usr/bin/env node

var hosts = argv._.map(function (host) {
var _host$split = host.split(':');
var _host$split = host.split(':'),
_host$split2 = _slicedToArray(_host$split, 2),
hostname = _host$split2[0],
port = _host$split2[1];
var _host$split2 = _slicedToArray(_host$split, 2);
hostname = _host$split2[0];
port = _host$split2[1];
return hostname + ':' + (port || 443);

@@ -28,0 +26,0 @@ });

2

npm-shrinkwrap.json
{
"name": "sslping-cli",
"version": "1.0.1",
"version": "1.0.3",
"dependencies": {

@@ -5,0 +5,0 @@ "ansi-escapes": {

{
"name": "sslping-cli",
"version": "1.0.2",
"version": "1.0.3",
"description": "CLI for sslping.com",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -9,4 +9,2 @@ # What is sslping.com

_Note: You must use node > 6.0.0_
This CLI allows you to bulk-load servers to sslping.com

@@ -13,0 +11,0 @@

@@ -23,3 +23,3 @@ #!/usr/bin/env node

const hosts = argv._.map( host => {
[hostname, port] = host.split(':');
const [hostname, port] = host.split(':');
return `${hostname}:${port || 443}`;

@@ -26,0 +26,0 @@ });