Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ccscan

Package Overview
Dependencies
Maintainers
6
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ccscan - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

0

bin/ccscan.js

@@ -0,0 +0,0 @@ #!/usr/bin/env node

6

build/app.js

@@ -91,3 +91,3 @@ "use strict";

const mergedArgs = Object.assign({}, defaultArgs, args);
let found = false;
const found = [];
try {

@@ -102,3 +102,3 @@ const pattern = [mergedArgs.files, '!node_modules'];

if (yield scanFile(fileName, mergedArgs)) {
found = true;
found.push(fileName);
}

@@ -129,3 +129,3 @@ }

handler: (args) => __awaiter(this, void 0, void 0, function* () {
if (yield scanFiles(args)) {
if ((yield scanFiles(args)).length > 0) {
process.exit(1);

@@ -132,0 +132,0 @@ }

# Changelog
## 1.0.1 (November 6, 2019)
Modified `scanFiles` function to return a list of file names where credit card numbers are found.
## 1.0.0 (October 29, 2019)
Initial release! :tada:
{
"name": "ccscan",
"description": "Scan files for credit card numbers",
"version": "1.0.0",
"version": "1.0.1",
"author": "Neo Financial Engineering <engineering@neofinancial.com>",

@@ -6,0 +6,0 @@ "license": "MIT",

@@ -0,0 +0,0 @@ # ccscan

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc