ship-safe 5.0.0 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,216 +1,218 @@
1
- /**
2
- * Fix Command
3
- * ===========
4
- *
5
- * Scans for secrets and generates a .env.example file with placeholder values.
6
- * Also shows a summary of what to move to environment variables.
7
- *
8
- * USAGE:
9
- * ship-safe fix Scan and generate .env.example
10
- * ship-safe fix --dry-run Preview what would be generated (don't write file)
11
- */
12
-
13
- import fs from 'fs';
14
- import path from 'path';
15
- import ora from 'ora';
16
- import chalk from 'chalk';
17
- import {
18
- SECRET_PATTERNS,
19
- SKIP_DIRS,
20
- SKIP_EXTENSIONS,
21
- TEST_FILE_PATTERNS,
22
- MAX_FILE_SIZE
23
- } from '../utils/patterns.js';
24
- import { isHighEntropyMatch } from '../utils/entropy.js';
25
- import fg from 'fast-glob';
26
- import * as output from '../utils/output.js';
27
-
28
- // =============================================================================
29
- // MAIN COMMAND
30
- // =============================================================================
31
-
32
- export async function fixCommand(options = {}) {
33
- const cwd = process.cwd();
34
-
35
- const spinner = ora({ text: 'Scanning for secrets...', color: 'cyan' }).start();
36
-
37
- try {
38
- const files = await findFiles(cwd);
39
- const results = [];
40
-
41
- for (const file of files) {
42
- const findings = await scanFile(file);
43
- if (findings.length > 0) {
44
- results.push({ file, findings });
45
- }
46
- }
47
-
48
- spinner.stop();
49
-
50
- if (results.length === 0) {
51
- output.success('No secrets found — nothing to fix!');
52
- console.log(chalk.gray('\nYour codebase looks clean. Keep it that way with:'));
53
- console.log(chalk.gray(' npx ship-safe guard # Block pushes if secrets are found'));
54
- return;
55
- }
56
-
57
- // Build env var suggestions from findings
58
- const envVars = buildEnvVarSuggestions(results);
59
-
60
- output.header('Fix Report');
61
- printFindings(results, cwd);
62
- printEnvExample(envVars, options.dryRun);
63
-
64
- } catch (err) {
65
- spinner.fail('Fix scan failed');
66
- output.error(err.message);
67
- process.exit(1);
68
- }
69
- }
70
-
71
- // =============================================================================
72
- // SCAN (same logic as scan command, reused here)
73
- // =============================================================================
74
-
75
- async function findFiles(rootPath) {
76
- const globIgnore = Array.from(SKIP_DIRS).map(dir => `**/${dir}/**`);
77
- const files = await fg('**/*', {
78
- cwd: rootPath, absolute: true, onlyFiles: true, ignore: globIgnore, dot: true
79
- });
80
-
81
- const filtered = [];
82
- for (const file of files) {
83
- const ext = path.extname(file).toLowerCase();
84
- if (SKIP_EXTENSIONS.has(ext)) continue;
85
- const basename = path.basename(file);
86
- if (basename.endsWith('.min.js') || basename.endsWith('.min.css')) continue;
87
- if (TEST_FILE_PATTERNS.some(p => p.test(file))) continue;
88
- if (basename === '.env.example') continue; // Don't scan example files
89
- try {
90
- const stats = fs.statSync(file);
91
- if (stats.size > MAX_FILE_SIZE) continue;
92
- } catch { continue; }
93
- filtered.push(file);
94
- }
95
- return filtered;
96
- }
97
-
98
- async function scanFile(filePath) {
99
- const findings = [];
100
- try {
101
- const content = fs.readFileSync(filePath, 'utf-8');
102
- const lines = content.split('\n');
103
-
104
- for (let lineNum = 0; lineNum < lines.length; lineNum++) {
105
- const line = lines[lineNum];
106
- if (/ship-safe-ignore/i.test(line)) continue;
107
-
108
- for (const pattern of SECRET_PATTERNS) {
109
- pattern.pattern.lastIndex = 0;
110
- let match;
111
- while ((match = pattern.pattern.exec(line)) !== null) {
112
- if (pattern.requiresEntropyCheck && !isHighEntropyMatch(match[0])) continue;
113
- findings.push({
114
- line: lineNum + 1,
115
- matched: match[0],
116
- patternName: pattern.name,
117
- severity: pattern.severity,
118
- });
119
- }
120
- }
121
- }
122
- } catch {}
123
- return findings;
124
- }
125
-
126
- // =============================================================================
127
- // ENV VAR GENERATION
128
- // =============================================================================
129
-
130
- function buildEnvVarSuggestions(results) {
131
- const seen = new Set();
132
- const vars = [];
133
-
134
- for (const { findings } of results) {
135
- for (const f of findings) {
136
- const varName = patternToEnvVar(f.patternName);
137
- if (!seen.has(varName)) {
138
- seen.add(varName);
139
- vars.push({ name: varName, comment: f.patternName });
140
- }
141
- }
142
- }
143
-
144
- return vars;
145
- }
146
-
147
- /**
148
- * Convert a pattern name to a sensible env var name.
149
- * e.g. "OpenAI API Key" → "OPENAI_API_KEY"
150
- */
151
- function patternToEnvVar(patternName) {
152
- return patternName
153
- .toUpperCase()
154
- .replace(/[^A-Z0-9\s]/g, '')
155
- .trim()
156
- .replace(/\s+/g, '_');
157
- }
158
-
159
- // =============================================================================
160
- // OUTPUT
161
- // =============================================================================
162
-
163
- function printFindings(results, rootPath) {
164
- const total = results.reduce((sum, r) => sum + r.findings.length, 0);
165
- console.log(chalk.red.bold(`\n Found ${total} secret(s) across ${results.length} file(s)\n`));
166
-
167
- for (const { file, findings } of results) {
168
- const relPath = path.relative(rootPath, file);
169
- console.log(chalk.white.bold(` ${relPath}`));
170
- for (const f of findings) {
171
- console.log(chalk.gray(` Line ${f.line}: `) + chalk.yellow(f.patternName));
172
- }
173
- }
174
- }
175
-
176
- function printEnvExample(envVars, dryRun) {
177
- const lines = [
178
- '# .env.example',
179
- '# Generated by ship-safe — replace placeholder values with your actual secrets.',
180
- '# Copy this file to .env and fill in the values.',
181
- '# NEVER commit .envonly commit .env.example',
182
- '',
183
- ];
184
-
185
- for (const { name, comment } of envVars) {
186
- lines.push(`# ${comment}`);
187
- lines.push(`${name}=your_${name.toLowerCase()}_here`);
188
- lines.push('');
189
- }
190
-
191
- const content = lines.join('\n');
192
-
193
- output.header(dryRun ? '.env.example Preview (dry run)' : 'Generated .env.example');
194
- console.log();
195
- console.log(chalk.gray(content));
196
-
197
- if (!dryRun) {
198
- const envExamplePath = path.join(process.cwd(), '.env.example');
199
-
200
- if (fs.existsSync(envExamplePath)) {
201
- output.warning('.env.example already exists — skipping. Use --force to overwrite.');
202
- } else {
203
- fs.writeFileSync(envExamplePath, content);
204
- output.success('Created .env.example');
205
- }
206
-
207
- console.log();
208
- console.log(chalk.cyan.bold('Next steps:'));
209
- console.log(chalk.white('1.') + chalk.gray(' Copy .env.example to .env'));
210
- console.log(chalk.white('2.') + chalk.gray(' Replace placeholder values with your real secrets'));
211
- console.log(chalk.white('3.') + chalk.gray(' Remove the hardcoded values from your source code'));
212
- console.log(chalk.white('4.') + chalk.gray(' Verify .env is in your .gitignore'));
213
- console.log(chalk.white('5.') + chalk.gray(' Run npx ship-safe scan . to confirm clean'));
214
- console.log();
215
- }
216
- }
1
+ /**
2
+ * Fix Command
3
+ * ===========
4
+ *
5
+ * Scans for secrets and generates a .env.example file with placeholder values.
6
+ * Also shows a summary of what to move to environment variables.
7
+ *
8
+ * USAGE:
9
+ * ship-safe fix Scan and generate .env.example
10
+ * ship-safe fix --dry-run Preview what would be generated (don't write file)
11
+ */
12
+
13
+ import fs from 'fs';
14
+ import path from 'path';
15
+ import ora from 'ora';
16
+ import chalk from 'chalk';
17
+ import {
18
+ SECRET_PATTERNS,
19
+ SKIP_DIRS,
20
+ SKIP_EXTENSIONS,
21
+ SKIP_FILENAMES,
22
+ TEST_FILE_PATTERNS,
23
+ MAX_FILE_SIZE
24
+ } from '../utils/patterns.js';
25
+ import { isHighEntropyMatch } from '../utils/entropy.js';
26
+ import fg from 'fast-glob';
27
+ import * as output from '../utils/output.js';
28
+
29
+ // =============================================================================
30
+ // MAIN COMMAND
31
+ // =============================================================================
32
+
33
+ export async function fixCommand(options = {}) {
34
+ const cwd = process.cwd();
35
+
36
+ const spinner = ora({ text: 'Scanning for secrets...', color: 'cyan' }).start();
37
+
38
+ try {
39
+ const files = await findFiles(cwd);
40
+ const results = [];
41
+
42
+ for (const file of files) {
43
+ const findings = await scanFile(file);
44
+ if (findings.length > 0) {
45
+ results.push({ file, findings });
46
+ }
47
+ }
48
+
49
+ spinner.stop();
50
+
51
+ if (results.length === 0) {
52
+ output.success('No secrets found nothing to fix!');
53
+ console.log(chalk.gray('\nYour codebase looks clean. Keep it that way with:'));
54
+ console.log(chalk.gray(' npx ship-safe guard # Block pushes if secrets are found'));
55
+ return;
56
+ }
57
+
58
+ // Build env var suggestions from findings
59
+ const envVars = buildEnvVarSuggestions(results);
60
+
61
+ output.header('Fix Report');
62
+ printFindings(results, cwd);
63
+ printEnvExample(envVars, options.dryRun);
64
+
65
+ } catch (err) {
66
+ spinner.fail('Fix scan failed');
67
+ output.error(err.message);
68
+ process.exit(1);
69
+ }
70
+ }
71
+
72
+ // =============================================================================
73
+ // SCAN (same logic as scan command, reused here)
74
+ // =============================================================================
75
+
76
+ async function findFiles(rootPath) {
77
+ const globIgnore = Array.from(SKIP_DIRS).map(dir => `**/${dir}/**`);
78
+ const files = await fg('**/*', {
79
+ cwd: rootPath, absolute: true, onlyFiles: true, ignore: globIgnore, dot: true
80
+ });
81
+
82
+ const filtered = [];
83
+ for (const file of files) {
84
+ const ext = path.extname(file).toLowerCase();
85
+ if (SKIP_EXTENSIONS.has(ext)) continue;
86
+ if (SKIP_FILENAMES.has(path.basename(file))) continue;
87
+ const basename = path.basename(file);
88
+ if (basename.endsWith('.min.js') || basename.endsWith('.min.css')) continue;
89
+ if (TEST_FILE_PATTERNS.some(p => p.test(file))) continue;
90
+ if (basename === '.env.example') continue; // Don't scan example files
91
+ try {
92
+ const stats = fs.statSync(file);
93
+ if (stats.size > MAX_FILE_SIZE) continue;
94
+ } catch { continue; }
95
+ filtered.push(file);
96
+ }
97
+ return filtered;
98
+ }
99
+
100
+ async function scanFile(filePath) {
101
+ const findings = [];
102
+ try {
103
+ const content = fs.readFileSync(filePath, 'utf-8');
104
+ const lines = content.split('\n');
105
+
106
+ for (let lineNum = 0; lineNum < lines.length; lineNum++) {
107
+ const line = lines[lineNum];
108
+ if (/ship-safe-ignore/i.test(line)) continue;
109
+
110
+ for (const pattern of SECRET_PATTERNS) {
111
+ pattern.pattern.lastIndex = 0;
112
+ let match;
113
+ while ((match = pattern.pattern.exec(line)) !== null) {
114
+ if (pattern.requiresEntropyCheck && !isHighEntropyMatch(match[0])) continue;
115
+ findings.push({
116
+ line: lineNum + 1,
117
+ matched: match[0],
118
+ patternName: pattern.name,
119
+ severity: pattern.severity,
120
+ });
121
+ }
122
+ }
123
+ }
124
+ } catch {}
125
+ return findings;
126
+ }
127
+
128
+ // =============================================================================
129
+ // ENV VAR GENERATION
130
+ // =============================================================================
131
+
132
+ function buildEnvVarSuggestions(results) {
133
+ const seen = new Set();
134
+ const vars = [];
135
+
136
+ for (const { findings } of results) {
137
+ for (const f of findings) {
138
+ const varName = patternToEnvVar(f.patternName);
139
+ if (!seen.has(varName)) {
140
+ seen.add(varName);
141
+ vars.push({ name: varName, comment: f.patternName });
142
+ }
143
+ }
144
+ }
145
+
146
+ return vars;
147
+ }
148
+
149
+ /**
150
+ * Convert a pattern name to a sensible env var name.
151
+ * e.g. "OpenAI API Key" → "OPENAI_API_KEY" // ship-safe-ignore — env var name in doc comment, not a secret value
152
+ */
153
+ function patternToEnvVar(patternName) {
154
+ return patternName
155
+ .toUpperCase()
156
+ .replace(/[^A-Z0-9\s]/g, '')
157
+ .trim()
158
+ .replace(/\s+/g, '_');
159
+ }
160
+
161
+ // =============================================================================
162
+ // OUTPUT
163
+ // =============================================================================
164
+
165
+ function printFindings(results, rootPath) {
166
+ const total = results.reduce((sum, r) => sum + r.findings.length, 0);
167
+ console.log(chalk.red.bold(`\n Found ${total} secret(s) across ${results.length} file(s)\n`));
168
+
169
+ for (const { file, findings } of results) {
170
+ const relPath = path.relative(rootPath, file);
171
+ console.log(chalk.white.bold(` ${relPath}`));
172
+ for (const f of findings) {
173
+ console.log(chalk.gray(` Line ${f.line}: `) + chalk.yellow(f.patternName));
174
+ }
175
+ }
176
+ }
177
+
178
+ function printEnvExample(envVars, dryRun) {
179
+ const lines = [
180
+ '# .env.example',
181
+ '# Generated by ship-safereplace placeholder values with your actual secrets.',
182
+ '# Copy this file to .env and fill in the values.',
183
+ '# NEVER commit .env — only commit .env.example',
184
+ '',
185
+ ];
186
+
187
+ for (const { name, comment } of envVars) {
188
+ lines.push(`# ${comment}`);
189
+ lines.push(`${name}=your_${name.toLowerCase()}_here`);
190
+ lines.push('');
191
+ }
192
+
193
+ const content = lines.join('\n');
194
+
195
+ output.header(dryRun ? '.env.example Preview (dry run)' : 'Generated .env.example');
196
+ console.log();
197
+ console.log(chalk.gray(content));
198
+
199
+ if (!dryRun) {
200
+ const envExamplePath = path.join(process.cwd(), '.env.example');
201
+
202
+ if (fs.existsSync(envExamplePath)) {
203
+ output.warning('.env.example already exists — skipping. Use --force to overwrite.');
204
+ } else {
205
+ fs.writeFileSync(envExamplePath, content);
206
+ output.success('Created .env.example');
207
+ }
208
+
209
+ console.log();
210
+ console.log(chalk.cyan.bold('Next steps:'));
211
+ console.log(chalk.white('1.') + chalk.gray(' Copy .env.example to .env'));
212
+ console.log(chalk.white('2.') + chalk.gray(' Replace placeholder values with your real secrets'));
213
+ console.log(chalk.white('3.') + chalk.gray(' Remove the hardcoded values from your source code'));
214
+ console.log(chalk.white('4.') + chalk.gray(' Verify .env is in your .gitignore'));
215
+ console.log(chalk.white('5.') + chalk.gray(' Run npx ship-safe scan . to confirm clean'));
216
+ console.log();
217
+ }
218
+ }