shippingszn 0.2.0 → 0.4.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.
@@ -7,48 +7,104 @@ const SECURITY_HEADER_NAMES = [
7
7
  "X-Frame-Options",
8
8
  "Referrer-Policy",
9
9
  ];
10
+ const CANDIDATE_EXTENSIONS = new Set([
11
+ ".ts",
12
+ ".tsx",
13
+ ".js",
14
+ ".jsx",
15
+ ".mjs",
16
+ ".cjs",
17
+ ".mts",
18
+ ".cts",
19
+ ".json",
20
+ ".toml",
21
+ ]);
22
+ const CANDIDATE_BASENAMES = new Set([
23
+ "vite.config.ts",
24
+ "vite.config.js",
25
+ "vite.config.mjs",
26
+ "vite.config.cjs",
27
+ "next.config.js",
28
+ "next.config.mjs",
29
+ "next.config.ts",
30
+ "nuxt.config.ts",
31
+ "svelte.config.js",
32
+ "astro.config.mjs",
33
+ "astro.config.ts",
34
+ "vercel.json",
35
+ "netlify.toml",
36
+ ]);
37
+ // Directories whose files commonly define server / middleware / route /
38
+ // header code. We scan every eligible file under these trees, not just a
39
+ // single "entry" file, so hand-rolled security-header middleware (e.g.
40
+ // a dedicated server/security.ts) is detected just as reliably as helmet().
41
+ const CANDIDATE_DIR_SEGMENTS = [
42
+ "server/",
43
+ "api/",
44
+ "backend/",
45
+ "middleware/",
46
+ "middlewares/",
47
+ "lib/server/",
48
+ "src/server/",
49
+ "src/api/",
50
+ "src/middleware/",
51
+ "src/middlewares/",
52
+ "apps/server/",
53
+ "apps/api/",
54
+ "packages/server/",
55
+ "packages/api/",
56
+ "artifacts/server/",
57
+ "artifacts/api-server/",
58
+ ];
59
+ function isCandidateFile(relPath) {
60
+ const lower = relPath.replace(/\\/g, "/").toLowerCase();
61
+ if (lower.includes("/node_modules/") ||
62
+ lower.includes("/dist/") ||
63
+ lower.includes("/build/") ||
64
+ lower.includes("/.next/") ||
65
+ lower.endsWith(".test.ts") ||
66
+ lower.endsWith(".spec.ts") ||
67
+ lower.endsWith(".test.tsx") ||
68
+ lower.endsWith(".spec.tsx") ||
69
+ lower.endsWith(".test.js") ||
70
+ lower.endsWith(".spec.js")) {
71
+ return false;
72
+ }
73
+ const base = path.basename(lower);
74
+ if (CANDIDATE_BASENAMES.has(base))
75
+ return true;
76
+ const ext = path.extname(lower);
77
+ if (!CANDIDATE_EXTENSIONS.has(ext))
78
+ return false;
79
+ if (/\b(?:server|index|app|main|bootstrap|middleware|security)\.(?:t|j|m|c)?sx?$/.test(base)) {
80
+ return true;
81
+ }
82
+ for (const seg of CANDIDATE_DIR_SEGMENTS) {
83
+ if (lower.includes("/" + seg) || lower.startsWith(seg))
84
+ return true;
85
+ }
86
+ return false;
87
+ }
10
88
  export async function checkSecurityHeaders(ctx) {
11
- const candidateFiles = ctx.files.filter((f) => {
12
- const rp = f.relPath.toLowerCase();
13
- if (rp.endsWith(".test.ts") || rp.endsWith(".spec.ts"))
14
- return false;
15
- return (rp.endsWith("vite.config.ts") ||
16
- rp.endsWith("vite.config.js") ||
17
- rp.endsWith("next.config.js") ||
18
- rp.endsWith("next.config.mjs") ||
19
- rp.endsWith("next.config.ts") ||
20
- rp.endsWith("nuxt.config.ts") ||
21
- rp.endsWith("svelte.config.js") ||
22
- rp.endsWith("astro.config.mjs") ||
23
- rp.endsWith("astro.config.ts") ||
24
- rp.endsWith("vercel.json") ||
25
- rp.endsWith("netlify.toml") ||
26
- /server\/index\.(t|j)s$/.test(rp) ||
27
- /^server\.(t|j)s$/.test(path.basename(rp)) ||
28
- /\bapp\.(t|j)s$/.test(rp) ||
29
- /\bindex\.(t|j)s$/.test(rp));
30
- });
31
- if (candidateFiles.length === 0)
89
+ const candidates = ctx.files.filter((f) => isCandidateFile(f.relPath));
90
+ if (candidates.length === 0)
32
91
  return [];
33
- let foundAny = false;
34
- for (const file of candidateFiles) {
92
+ for (const file of candidates) {
35
93
  const content = await readFileSafe(file);
36
94
  if (!content)
37
95
  continue;
96
+ const lower = content.toLowerCase();
38
97
  for (const h of SECURITY_HEADER_NAMES) {
39
- if (content.toLowerCase().includes(h.toLowerCase())) {
40
- foundAny = true;
41
- break;
42
- }
98
+ if (lower.includes(h.toLowerCase()))
99
+ return [];
43
100
  }
44
- if (content.includes("helmet(") || content.includes('require("helmet")') || content.includes('from "helmet"')) {
45
- foundAny = true;
101
+ if (lower.includes("helmet(") ||
102
+ lower.includes('require("helmet")') ||
103
+ lower.includes('from "helmet"') ||
104
+ lower.includes("from 'helmet'")) {
105
+ return [];
46
106
  }
47
- if (foundAny)
48
- break;
49
107
  }
50
- if (foundAny)
51
- return [];
52
108
  return [
53
109
  {
54
110
  checkId: "missing-security-headers",
@@ -1,4 +1,55 @@
1
+ import { readFileSafe } from "../scan.js";
1
2
  import { findPublicDirs, isAssetEmittedDynamically } from "./helpers.js";
3
+ /**
4
+ * Parse a robots.txt body and return true if the `User-agent: *` block (or
5
+ * any wildcard block) disallows everything (`Disallow: /`). That's a
6
+ * declaration that the site intentionally opts out of all crawling, so we
7
+ * shouldn't nag about a missing sitemap — sitemaps for disallowed sites are
8
+ * contradictory.
9
+ */
10
+ function robotsDisallowsAll(content) {
11
+ const lines = content.split(/\r?\n/);
12
+ let inWildcardBlock = false;
13
+ let sawWildcardBlock = false;
14
+ for (const raw of lines) {
15
+ // Strip comments and trailing whitespace.
16
+ const line = raw.replace(/#.*$/, "").trim();
17
+ if (line === "") {
18
+ // Blank line ends the current block.
19
+ inWildcardBlock = false;
20
+ continue;
21
+ }
22
+ const match = line.match(/^([A-Za-z-]+)\s*:\s*(.*)$/);
23
+ if (!match)
24
+ continue;
25
+ const directive = match[1].toLowerCase();
26
+ const value = match[2].trim();
27
+ if (directive === "user-agent") {
28
+ inWildcardBlock = value === "*";
29
+ if (inWildcardBlock)
30
+ sawWildcardBlock = true;
31
+ continue;
32
+ }
33
+ if (inWildcardBlock && directive === "disallow" && value === "/") {
34
+ return true;
35
+ }
36
+ }
37
+ // If the file has no wildcard block at all, conservatively assume it
38
+ // doesn't disallow everything (some sites only target specific bots).
39
+ void sawWildcardBlock;
40
+ return false;
41
+ }
42
+ async function hasDisallowAllRobots(ctx) {
43
+ const robotsFiles = ctx.files.filter((f) => /(^|\/)robots\.txt$/i.test(f.relPath));
44
+ for (const file of robotsFiles) {
45
+ const content = await readFileSafe(file);
46
+ if (!content)
47
+ continue;
48
+ if (robotsDisallowsAll(content))
49
+ return true;
50
+ }
51
+ return false;
52
+ }
2
53
  export async function checkRobotsTxt(ctx) {
3
54
  const has = ctx.files.some((f) => /(^|\/)robots\.txt$/i.test(f.relPath));
4
55
  if (has)
@@ -26,6 +77,11 @@ export async function checkSitemapXml(ctx) {
26
77
  const dirs = await findPublicDirs(ctx);
27
78
  if (dirs.length === 0)
28
79
  return [];
80
+ // If the project has declared itself non-indexable via robots.txt
81
+ // (User-agent: * / Disallow: /), a sitemap would be contradictory.
82
+ // Suppress the nag — the site owner has made a deliberate choice.
83
+ if (await hasDisallowAllRobots(ctx))
84
+ return [];
29
85
  return [
30
86
  {
31
87
  checkId: "missing-sitemap-xml",
package/dist/index.js CHANGED
@@ -30,7 +30,7 @@ function applyTrackingAwareSeverity(findings, tracked) {
30
30
  });
31
31
  }
32
32
  const DEFAULT_BASE_URL = "https://shippingszn.com";
33
- const PKG_VERSION = "0.2.0";
33
+ const PKG_VERSION = "0.4.0";
34
34
  function parseArgs(argv) {
35
35
  const opts = {
36
36
  cwd: process.cwd(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shippingszn",
3
- "version": "0.2.0",
3
+ "version": "0.4.0",
4
4
  "description": "Read-only CLI scanner that checks a project for common pre-launch issues from the shippingszn.com launch checklist.",
5
5
  "license": "MIT",
6
6
  "type": "module",