eslint-plugin-secure-coding 2.3.2 → 2.3.3
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.
- package/README.md +1 -0
- package/package.json +3 -10
- package/src/index.ts +605 -0
- package/src/rules/__tests__/integration-demo.test.ts +290 -0
- package/src/rules/__tests__/integration-llm.test.ts +89 -0
- package/src/rules/database-injection/database-injection.test.ts +456 -0
- package/src/rules/database-injection/index.ts +488 -0
- package/src/rules/detect-child-process/detect-child-process.test.ts +207 -0
- package/src/rules/detect-child-process/index.ts +634 -0
- package/src/rules/detect-eval-with-expression/detect-eval-with-expression.test.ts +416 -0
- package/src/rules/detect-eval-with-expression/index.ts +463 -0
- package/src/rules/detect-mixed-content/detect-mixed-content.test.ts +28 -0
- package/src/rules/detect-mixed-content/index.ts +52 -0
- package/src/rules/detect-non-literal-fs-filename/detect-non-literal-fs-filename.test.ts +269 -0
- package/src/rules/detect-non-literal-fs-filename/index.ts +551 -0
- package/src/rules/detect-non-literal-regexp/detect-non-literal-regexp.test.ts +189 -0
- package/src/rules/detect-non-literal-regexp/index.ts +490 -0
- package/src/rules/detect-object-injection/detect-object-injection.test.ts +440 -0
- package/src/rules/detect-object-injection/index.ts +674 -0
- package/src/rules/detect-suspicious-dependencies/detect-suspicious-dependencies.test.ts +32 -0
- package/src/rules/detect-suspicious-dependencies/index.ts +84 -0
- package/src/rules/detect-weak-password-validation/detect-weak-password-validation.test.ts +31 -0
- package/src/rules/detect-weak-password-validation/index.ts +68 -0
- package/src/rules/no-allow-arbitrary-loads/index.ts +54 -0
- package/src/rules/no-allow-arbitrary-loads/no-allow-arbitrary-loads.test.ts +28 -0
- package/src/rules/no-arbitrary-file-access/index.ts +238 -0
- package/src/rules/no-arbitrary-file-access/no-arbitrary-file-access.test.ts +119 -0
- package/src/rules/no-buffer-overread/index.ts +724 -0
- package/src/rules/no-buffer-overread/no-buffer-overread.test.ts +313 -0
- package/src/rules/no-clickjacking/index.ts +481 -0
- package/src/rules/no-clickjacking/no-clickjacking.test.ts +253 -0
- package/src/rules/no-client-side-auth-logic/index.ts +81 -0
- package/src/rules/no-client-side-auth-logic/no-client-side-auth-logic.test.ts +33 -0
- package/src/rules/no-credentials-in-query-params/index.ts +69 -0
- package/src/rules/no-credentials-in-query-params/no-credentials-in-query-params.test.ts +33 -0
- package/src/rules/no-credentials-in-storage-api/index.ts +64 -0
- package/src/rules/no-credentials-in-storage-api/no-credentials-in-storage-api.test.ts +31 -0
- package/src/rules/no-data-in-temp-storage/index.ts +75 -0
- package/src/rules/no-data-in-temp-storage/no-data-in-temp-storage.test.ts +33 -0
- package/src/rules/no-debug-code-in-production/index.ts +59 -0
- package/src/rules/no-debug-code-in-production/no-debug-code-in-production.test.ts +26 -0
- package/src/rules/no-directive-injection/index.ts +551 -0
- package/src/rules/no-directive-injection/no-directive-injection.test.ts +305 -0
- package/src/rules/no-disabled-certificate-validation/index.ts +72 -0
- package/src/rules/no-disabled-certificate-validation/no-disabled-certificate-validation.test.ts +33 -0
- package/src/rules/no-document-cookie/index.ts +113 -0
- package/src/rules/no-document-cookie/no-document-cookie.test.ts +382 -0
- package/src/rules/no-dynamic-dependency-loading/index.ts +60 -0
- package/src/rules/no-dynamic-dependency-loading/no-dynamic-dependency-loading.test.ts +27 -0
- package/src/rules/no-electron-security-issues/index.ts +504 -0
- package/src/rules/no-electron-security-issues/no-electron-security-issues.test.ts +324 -0
- package/src/rules/no-exposed-debug-endpoints/index.ts +73 -0
- package/src/rules/no-exposed-debug-endpoints/no-exposed-debug-endpoints.test.ts +40 -0
- package/src/rules/no-exposed-sensitive-data/index.ts +428 -0
- package/src/rules/no-exposed-sensitive-data/no-exposed-sensitive-data.test.ts +75 -0
- package/src/rules/no-format-string-injection/index.ts +801 -0
- package/src/rules/no-format-string-injection/no-format-string-injection.test.ts +437 -0
- package/src/rules/no-graphql-injection/index.ts +508 -0
- package/src/rules/no-graphql-injection/no-graphql-injection.test.ts +371 -0
- package/src/rules/no-hardcoded-credentials/index.ts +478 -0
- package/src/rules/no-hardcoded-credentials/no-hardcoded-credentials.test.ts +639 -0
- package/src/rules/no-hardcoded-session-tokens/index.ts +69 -0
- package/src/rules/no-hardcoded-session-tokens/no-hardcoded-session-tokens.test.ts +42 -0
- package/src/rules/no-http-urls/index.ts +131 -0
- package/src/rules/no-http-urls/no-http-urls.test.ts +60 -0
- package/src/rules/no-improper-sanitization/index.ts +502 -0
- package/src/rules/no-improper-sanitization/no-improper-sanitization.test.ts +156 -0
- package/src/rules/no-improper-type-validation/index.ts +572 -0
- package/src/rules/no-improper-type-validation/no-improper-type-validation.test.ts +372 -0
- package/src/rules/no-insecure-comparison/index.ts +232 -0
- package/src/rules/no-insecure-comparison/no-insecure-comparison.test.ts +218 -0
- package/src/rules/no-insecure-cookie-settings/index.ts +391 -0
- package/src/rules/no-insecure-cookie-settings/no-insecure-cookie-settings.test.ts +409 -0
- package/src/rules/no-insecure-jwt/index.ts +467 -0
- package/src/rules/no-insecure-jwt/no-insecure-jwt.test.ts +259 -0
- package/src/rules/no-insecure-redirects/index.ts +267 -0
- package/src/rules/no-insecure-redirects/no-insecure-redirects.test.ts +108 -0
- package/src/rules/no-insecure-websocket/index.ts +72 -0
- package/src/rules/no-insecure-websocket/no-insecure-websocket.test.ts +42 -0
- package/src/rules/no-insufficient-postmessage-validation/index.ts +497 -0
- package/src/rules/no-insufficient-postmessage-validation/no-insufficient-postmessage-validation.test.ts +360 -0
- package/src/rules/no-insufficient-random/index.ts +288 -0
- package/src/rules/no-insufficient-random/no-insufficient-random.test.ts +246 -0
- package/src/rules/no-ldap-injection/index.ts +547 -0
- package/src/rules/no-ldap-injection/no-ldap-injection.test.ts +317 -0
- package/src/rules/no-missing-authentication/index.ts +408 -0
- package/src/rules/no-missing-authentication/no-missing-authentication.test.ts +350 -0
- package/src/rules/no-missing-cors-check/index.ts +453 -0
- package/src/rules/no-missing-cors-check/no-missing-cors-check.test.ts +392 -0
- package/src/rules/no-missing-csrf-protection/index.ts +229 -0
- package/src/rules/no-missing-csrf-protection/no-missing-csrf-protection.test.ts +222 -0
- package/src/rules/no-missing-security-headers/index.ts +266 -0
- package/src/rules/no-missing-security-headers/no-missing-security-headers.test.ts +98 -0
- package/src/rules/no-password-in-url/index.ts +64 -0
- package/src/rules/no-password-in-url/no-password-in-url.test.ts +27 -0
- package/src/rules/no-permissive-cors/index.ts +78 -0
- package/src/rules/no-permissive-cors/no-permissive-cors.test.ts +28 -0
- package/src/rules/no-pii-in-logs/index.ts +83 -0
- package/src/rules/no-pii-in-logs/no-pii-in-logs.test.ts +26 -0
- package/src/rules/no-postmessage-origin-wildcard/index.ts +67 -0
- package/src/rules/no-postmessage-origin-wildcard/no-postmessage-origin-wildcard.test.ts +27 -0
- package/src/rules/no-privilege-escalation/index.ts +403 -0
- package/src/rules/no-privilege-escalation/no-privilege-escalation.test.ts +306 -0
- package/src/rules/no-redos-vulnerable-regex/index.ts +379 -0
- package/src/rules/no-redos-vulnerable-regex/no-redos-vulnerable-regex.test.ts +83 -0
- package/src/rules/no-sensitive-data-exposure/index.ts +294 -0
- package/src/rules/no-sensitive-data-exposure/no-sensitive-data-exposure.test.ts +262 -0
- package/src/rules/no-sensitive-data-in-analytics/index.ts +73 -0
- package/src/rules/no-sensitive-data-in-analytics/no-sensitive-data-in-analytics.test.ts +42 -0
- package/src/rules/no-sensitive-data-in-cache/index.ts +59 -0
- package/src/rules/no-sensitive-data-in-cache/no-sensitive-data-in-cache.test.ts +32 -0
- package/src/rules/no-sql-injection/index.ts +424 -0
- package/src/rules/no-sql-injection/no-sql-injection.test.ts +303 -0
- package/src/rules/no-timing-attack/index.ts +552 -0
- package/src/rules/no-timing-attack/no-timing-attack.test.ts +348 -0
- package/src/rules/no-toctou-vulnerability/index.ts +250 -0
- package/src/rules/no-toctou-vulnerability/no-toctou-vulnerability.test.ts +60 -0
- package/src/rules/no-tracking-without-consent/index.ts +78 -0
- package/src/rules/no-tracking-without-consent/no-tracking-without-consent.test.ts +34 -0
- package/src/rules/no-unchecked-loop-condition/index.ts +781 -0
- package/src/rules/no-unchecked-loop-condition/no-unchecked-loop-condition.test.ts +459 -0
- package/src/rules/no-unencrypted-local-storage/index.ts +73 -0
- package/src/rules/no-unencrypted-local-storage/no-unencrypted-local-storage.test.ts +41 -0
- package/src/rules/no-unencrypted-transmission/index.ts +296 -0
- package/src/rules/no-unencrypted-transmission/no-unencrypted-transmission.test.ts +287 -0
- package/src/rules/no-unescaped-url-parameter/index.ts +424 -0
- package/src/rules/no-unescaped-url-parameter/no-unescaped-url-parameter.test.ts +263 -0
- package/src/rules/no-unlimited-resource-allocation/index.ts +767 -0
- package/src/rules/no-unlimited-resource-allocation/no-unlimited-resource-allocation.test.ts +544 -0
- package/src/rules/no-unsafe-deserialization/index.ts +593 -0
- package/src/rules/no-unsafe-deserialization/no-unsafe-deserialization.test.ts +310 -0
- package/src/rules/no-unsafe-dynamic-require/index.ts +125 -0
- package/src/rules/no-unsafe-dynamic-require/no-unsafe-dynamic-require.test.ts +151 -0
- package/src/rules/no-unsafe-regex-construction/index.ts +370 -0
- package/src/rules/no-unsafe-regex-construction/no-unsafe-regex-construction.test.ts +181 -0
- package/src/rules/no-unsanitized-html/index.ts +400 -0
- package/src/rules/no-unsanitized-html/no-unsanitized-html.test.ts +488 -0
- package/src/rules/no-unvalidated-deeplinks/index.ts +73 -0
- package/src/rules/no-unvalidated-deeplinks/no-unvalidated-deeplinks.test.ts +29 -0
- package/src/rules/no-unvalidated-user-input/index.ts +498 -0
- package/src/rules/no-unvalidated-user-input/no-unvalidated-user-input.test.ts +463 -0
- package/src/rules/no-verbose-error-messages/index.ts +83 -0
- package/src/rules/no-verbose-error-messages/no-verbose-error-messages.test.ts +34 -0
- package/src/rules/no-weak-crypto/index.ts +447 -0
- package/src/rules/no-weak-crypto/no-weak-crypto.test.ts +297 -0
- package/src/rules/no-weak-password-recovery/index.ts +509 -0
- package/src/rules/no-weak-password-recovery/no-weak-password-recovery.test.ts +184 -0
- package/src/rules/no-xpath-injection/index.ts +596 -0
- package/src/rules/no-xpath-injection/no-xpath-injection.test.ts +405 -0
- package/src/rules/no-xxe-injection/index.ts +342 -0
- package/src/rules/no-xxe-injection/no-xxe-injection.test.ts +122 -0
- package/src/rules/no-zip-slip/index.ts +526 -0
- package/src/rules/no-zip-slip/no-zip-slip.test.ts +305 -0
- package/src/rules/require-backend-authorization/index.ts +71 -0
- package/src/rules/require-backend-authorization/require-backend-authorization.test.ts +31 -0
- package/src/rules/require-code-minification/index.ts +54 -0
- package/src/rules/require-code-minification/require-code-minification.test.ts +30 -0
- package/src/rules/require-csp-headers/index.ts +74 -0
- package/src/rules/require-csp-headers/require-csp-headers.test.ts +34 -0
- package/src/rules/require-data-minimization/index.ts +65 -0
- package/src/rules/require-data-minimization/require-data-minimization.test.ts +31 -0
- package/src/rules/require-dependency-integrity/index.ts +78 -0
- package/src/rules/require-dependency-integrity/require-dependency-integrity.test.ts +44 -0
- package/src/rules/require-https-only/index.ts +75 -0
- package/src/rules/require-https-only/require-https-only.test.ts +26 -0
- package/src/rules/require-mime-type-validation/index.ts +77 -0
- package/src/rules/require-mime-type-validation/require-mime-type-validation.test.ts +32 -0
- package/src/rules/require-network-timeout/index.ts +58 -0
- package/src/rules/require-network-timeout/require-network-timeout.test.ts +26 -0
- package/src/rules/require-package-lock/index.ts +75 -0
- package/src/rules/require-package-lock/require-package-lock.test.ts +27 -0
- package/src/rules/require-secure-credential-storage/index.ts +60 -0
- package/src/rules/require-secure-credential-storage/require-secure-credential-storage.test.ts +26 -0
- package/src/rules/require-secure-defaults/index.ts +54 -0
- package/src/rules/require-secure-defaults/require-secure-defaults.test.ts +26 -0
- package/src/rules/require-secure-deletion/index.ts +52 -0
- package/src/rules/require-secure-deletion/require-secure-deletion.test.ts +29 -0
- package/src/rules/require-storage-encryption/index.ts +60 -0
- package/src/rules/require-storage-encryption/require-storage-encryption.test.ts +26 -0
- package/src/rules/require-url-validation/index.ts +85 -0
- package/src/rules/require-url-validation/require-url-validation.test.ts +32 -0
- package/src/types/{index.d.ts → index.ts} +157 -53
- package/src/index.d.ts +0 -32
- package/src/index.js +0 -465
- package/src/rules/database-injection/index.d.ts +0 -13
- package/src/rules/database-injection/index.js +0 -406
- package/src/rules/detect-child-process/index.d.ts +0 -11
- package/src/rules/detect-child-process/index.js +0 -529
- package/src/rules/detect-eval-with-expression/index.d.ts +0 -9
- package/src/rules/detect-eval-with-expression/index.js +0 -392
- package/src/rules/detect-mixed-content/index.d.ts +0 -8
- package/src/rules/detect-mixed-content/index.js +0 -44
- package/src/rules/detect-non-literal-fs-filename/index.d.ts +0 -7
- package/src/rules/detect-non-literal-fs-filename/index.js +0 -454
- package/src/rules/detect-non-literal-regexp/index.d.ts +0 -9
- package/src/rules/detect-non-literal-regexp/index.js +0 -403
- package/src/rules/detect-object-injection/index.d.ts +0 -11
- package/src/rules/detect-object-injection/index.js +0 -560
- package/src/rules/detect-suspicious-dependencies/index.d.ts +0 -8
- package/src/rules/detect-suspicious-dependencies/index.js +0 -71
- package/src/rules/detect-weak-password-validation/index.d.ts +0 -6
- package/src/rules/detect-weak-password-validation/index.js +0 -58
- package/src/rules/no-allow-arbitrary-loads/index.d.ts +0 -8
- package/src/rules/no-allow-arbitrary-loads/index.js +0 -47
- package/src/rules/no-arbitrary-file-access/index.d.ts +0 -13
- package/src/rules/no-arbitrary-file-access/index.js +0 -195
- package/src/rules/no-buffer-overread/index.d.ts +0 -29
- package/src/rules/no-buffer-overread/index.js +0 -606
- package/src/rules/no-clickjacking/index.d.ts +0 -10
- package/src/rules/no-clickjacking/index.js +0 -396
- package/src/rules/no-client-side-auth-logic/index.d.ts +0 -6
- package/src/rules/no-client-side-auth-logic/index.js +0 -69
- package/src/rules/no-credentials-in-query-params/index.d.ts +0 -8
- package/src/rules/no-credentials-in-query-params/index.js +0 -57
- package/src/rules/no-credentials-in-storage-api/index.d.ts +0 -6
- package/src/rules/no-credentials-in-storage-api/index.js +0 -54
- package/src/rules/no-data-in-temp-storage/index.d.ts +0 -6
- package/src/rules/no-data-in-temp-storage/index.js +0 -64
- package/src/rules/no-debug-code-in-production/index.d.ts +0 -8
- package/src/rules/no-debug-code-in-production/index.js +0 -51
- package/src/rules/no-directive-injection/index.d.ts +0 -12
- package/src/rules/no-directive-injection/index.js +0 -457
- package/src/rules/no-disabled-certificate-validation/index.d.ts +0 -6
- package/src/rules/no-disabled-certificate-validation/index.js +0 -61
- package/src/rules/no-document-cookie/index.d.ts +0 -5
- package/src/rules/no-document-cookie/index.js +0 -89
- package/src/rules/no-dynamic-dependency-loading/index.d.ts +0 -8
- package/src/rules/no-dynamic-dependency-loading/index.js +0 -51
- package/src/rules/no-electron-security-issues/index.d.ts +0 -10
- package/src/rules/no-electron-security-issues/index.js +0 -423
- package/src/rules/no-exposed-debug-endpoints/index.d.ts +0 -6
- package/src/rules/no-exposed-debug-endpoints/index.js +0 -62
- package/src/rules/no-exposed-sensitive-data/index.d.ts +0 -11
- package/src/rules/no-exposed-sensitive-data/index.js +0 -340
- package/src/rules/no-format-string-injection/index.d.ts +0 -17
- package/src/rules/no-format-string-injection/index.js +0 -660
- package/src/rules/no-graphql-injection/index.d.ts +0 -12
- package/src/rules/no-graphql-injection/index.js +0 -411
- package/src/rules/no-hardcoded-credentials/index.d.ts +0 -26
- package/src/rules/no-hardcoded-credentials/index.js +0 -376
- package/src/rules/no-hardcoded-session-tokens/index.d.ts +0 -6
- package/src/rules/no-hardcoded-session-tokens/index.js +0 -59
- package/src/rules/no-http-urls/index.d.ts +0 -12
- package/src/rules/no-http-urls/index.js +0 -114
- package/src/rules/no-improper-sanitization/index.d.ts +0 -12
- package/src/rules/no-improper-sanitization/index.js +0 -411
- package/src/rules/no-improper-type-validation/index.d.ts +0 -10
- package/src/rules/no-improper-type-validation/index.js +0 -475
- package/src/rules/no-insecure-comparison/index.d.ts +0 -7
- package/src/rules/no-insecure-comparison/index.js +0 -193
- package/src/rules/no-insecure-cookie-settings/index.d.ts +0 -9
- package/src/rules/no-insecure-cookie-settings/index.js +0 -306
- package/src/rules/no-insecure-jwt/index.d.ts +0 -10
- package/src/rules/no-insecure-jwt/index.js +0 -380
- package/src/rules/no-insecure-redirects/index.d.ts +0 -7
- package/src/rules/no-insecure-redirects/index.js +0 -216
- package/src/rules/no-insecure-websocket/index.d.ts +0 -6
- package/src/rules/no-insecure-websocket/index.js +0 -61
- package/src/rules/no-insufficient-postmessage-validation/index.d.ts +0 -14
- package/src/rules/no-insufficient-postmessage-validation/index.js +0 -392
- package/src/rules/no-insufficient-random/index.d.ts +0 -9
- package/src/rules/no-insufficient-random/index.js +0 -208
- package/src/rules/no-ldap-injection/index.d.ts +0 -10
- package/src/rules/no-ldap-injection/index.js +0 -455
- package/src/rules/no-missing-authentication/index.d.ts +0 -13
- package/src/rules/no-missing-authentication/index.js +0 -333
- package/src/rules/no-missing-cors-check/index.d.ts +0 -9
- package/src/rules/no-missing-cors-check/index.js +0 -399
- package/src/rules/no-missing-csrf-protection/index.d.ts +0 -11
- package/src/rules/no-missing-csrf-protection/index.js +0 -180
- package/src/rules/no-missing-security-headers/index.d.ts +0 -7
- package/src/rules/no-missing-security-headers/index.js +0 -218
- package/src/rules/no-password-in-url/index.d.ts +0 -8
- package/src/rules/no-password-in-url/index.js +0 -54
- package/src/rules/no-permissive-cors/index.d.ts +0 -8
- package/src/rules/no-permissive-cors/index.js +0 -65
- package/src/rules/no-pii-in-logs/index.d.ts +0 -8
- package/src/rules/no-pii-in-logs/index.js +0 -70
- package/src/rules/no-postmessage-origin-wildcard/index.d.ts +0 -8
- package/src/rules/no-postmessage-origin-wildcard/index.js +0 -56
- package/src/rules/no-privilege-escalation/index.d.ts +0 -13
- package/src/rules/no-privilege-escalation/index.js +0 -321
- package/src/rules/no-redos-vulnerable-regex/index.d.ts +0 -7
- package/src/rules/no-redos-vulnerable-regex/index.js +0 -306
- package/src/rules/no-sensitive-data-exposure/index.d.ts +0 -11
- package/src/rules/no-sensitive-data-exposure/index.js +0 -250
- package/src/rules/no-sensitive-data-in-analytics/index.d.ts +0 -8
- package/src/rules/no-sensitive-data-in-analytics/index.js +0 -62
- package/src/rules/no-sensitive-data-in-cache/index.d.ts +0 -8
- package/src/rules/no-sensitive-data-in-cache/index.js +0 -52
- package/src/rules/no-sql-injection/index.d.ts +0 -10
- package/src/rules/no-sql-injection/index.js +0 -335
- package/src/rules/no-timing-attack/index.d.ts +0 -10
- package/src/rules/no-timing-attack/index.js +0 -447
- package/src/rules/no-toctou-vulnerability/index.d.ts +0 -7
- package/src/rules/no-toctou-vulnerability/index.js +0 -208
- package/src/rules/no-tracking-without-consent/index.d.ts +0 -6
- package/src/rules/no-tracking-without-consent/index.js +0 -67
- package/src/rules/no-unchecked-loop-condition/index.d.ts +0 -12
- package/src/rules/no-unchecked-loop-condition/index.js +0 -646
- package/src/rules/no-unencrypted-local-storage/index.d.ts +0 -8
- package/src/rules/no-unencrypted-local-storage/index.js +0 -61
- package/src/rules/no-unencrypted-transmission/index.d.ts +0 -11
- package/src/rules/no-unencrypted-transmission/index.js +0 -236
- package/src/rules/no-unescaped-url-parameter/index.d.ts +0 -9
- package/src/rules/no-unescaped-url-parameter/index.js +0 -355
- package/src/rules/no-unlimited-resource-allocation/index.d.ts +0 -12
- package/src/rules/no-unlimited-resource-allocation/index.js +0 -643
- package/src/rules/no-unsafe-deserialization/index.d.ts +0 -10
- package/src/rules/no-unsafe-deserialization/index.js +0 -491
- package/src/rules/no-unsafe-dynamic-require/index.d.ts +0 -5
- package/src/rules/no-unsafe-dynamic-require/index.js +0 -106
- package/src/rules/no-unsafe-regex-construction/index.d.ts +0 -9
- package/src/rules/no-unsafe-regex-construction/index.js +0 -291
- package/src/rules/no-unsanitized-html/index.d.ts +0 -9
- package/src/rules/no-unsanitized-html/index.js +0 -335
- package/src/rules/no-unvalidated-deeplinks/index.d.ts +0 -6
- package/src/rules/no-unvalidated-deeplinks/index.js +0 -62
- package/src/rules/no-unvalidated-user-input/index.d.ts +0 -9
- package/src/rules/no-unvalidated-user-input/index.js +0 -420
- package/src/rules/no-verbose-error-messages/index.d.ts +0 -8
- package/src/rules/no-verbose-error-messages/index.js +0 -68
- package/src/rules/no-weak-crypto/index.d.ts +0 -11
- package/src/rules/no-weak-crypto/index.js +0 -351
- package/src/rules/no-weak-password-recovery/index.d.ts +0 -12
- package/src/rules/no-weak-password-recovery/index.js +0 -424
- package/src/rules/no-xpath-injection/index.d.ts +0 -10
- package/src/rules/no-xpath-injection/index.js +0 -487
- package/src/rules/no-xxe-injection/index.d.ts +0 -7
- package/src/rules/no-xxe-injection/index.js +0 -266
- package/src/rules/no-zip-slip/index.d.ts +0 -9
- package/src/rules/no-zip-slip/index.js +0 -445
- package/src/rules/require-backend-authorization/index.d.ts +0 -6
- package/src/rules/require-backend-authorization/index.js +0 -60
- package/src/rules/require-code-minification/index.d.ts +0 -8
- package/src/rules/require-code-minification/index.js +0 -47
- package/src/rules/require-csp-headers/index.d.ts +0 -6
- package/src/rules/require-csp-headers/index.js +0 -64
- package/src/rules/require-data-minimization/index.d.ts +0 -8
- package/src/rules/require-data-minimization/index.js +0 -53
- package/src/rules/require-dependency-integrity/index.d.ts +0 -6
- package/src/rules/require-dependency-integrity/index.js +0 -64
- package/src/rules/require-https-only/index.d.ts +0 -8
- package/src/rules/require-https-only/index.js +0 -62
- package/src/rules/require-mime-type-validation/index.d.ts +0 -6
- package/src/rules/require-mime-type-validation/index.js +0 -66
- package/src/rules/require-network-timeout/index.d.ts +0 -8
- package/src/rules/require-network-timeout/index.js +0 -50
- package/src/rules/require-package-lock/index.d.ts +0 -8
- package/src/rules/require-package-lock/index.js +0 -63
- package/src/rules/require-secure-credential-storage/index.d.ts +0 -8
- package/src/rules/require-secure-credential-storage/index.js +0 -50
- package/src/rules/require-secure-defaults/index.d.ts +0 -8
- package/src/rules/require-secure-defaults/index.js +0 -47
- package/src/rules/require-secure-deletion/index.d.ts +0 -8
- package/src/rules/require-secure-deletion/index.js +0 -44
- package/src/rules/require-storage-encryption/index.d.ts +0 -8
- package/src/rules/require-storage-encryption/index.js +0 -50
- package/src/rules/require-url-validation/index.d.ts +0 -6
- package/src/rules/require-url-validation/index.js +0 -72
- package/src/types/index.js +0 -17
|
@@ -0,0 +1,593 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ESLint Rule: no-unsafe-deserialization
|
|
3
|
+
* Detects unsafe deserialization of untrusted data (CWE-502)
|
|
4
|
+
*
|
|
5
|
+
* Unsafe deserialization occurs when untrusted data is deserialized in a way that
|
|
6
|
+
* allows attackers to execute arbitrary code or manipulate application logic.
|
|
7
|
+
* This includes:
|
|
8
|
+
* - Using dangerous deserialization libraries
|
|
9
|
+
* - eval() or Function() on untrusted data
|
|
10
|
+
* - YAML/XML parsers that can execute code
|
|
11
|
+
* - Unsafe use of serialization libraries
|
|
12
|
+
*
|
|
13
|
+
* False Positive Reduction:
|
|
14
|
+
* This rule uses security utilities to reduce false positives by detecting:
|
|
15
|
+
* - Safe deserialization patterns
|
|
16
|
+
* - Input validation and sanitization
|
|
17
|
+
* - JSDoc annotations (@safe, @validated)
|
|
18
|
+
* - Trusted deserialization libraries
|
|
19
|
+
*/
|
|
20
|
+
import type { TSESLint, TSESTree } from '@interlace/eslint-devkit';
|
|
21
|
+
import { createRule } from '@interlace/eslint-devkit';
|
|
22
|
+
import { formatLLMMessage, MessageIcons } from '@interlace/eslint-devkit';
|
|
23
|
+
import {
|
|
24
|
+
createSafetyChecker,
|
|
25
|
+
type SecurityRuleOptions,
|
|
26
|
+
} from '@interlace/eslint-devkit';
|
|
27
|
+
|
|
28
|
+
type MessageIds =
|
|
29
|
+
| 'unsafeDeserialization'
|
|
30
|
+
| 'dangerousEvalUsage'
|
|
31
|
+
| 'unsafeYamlParsing'
|
|
32
|
+
| 'dangerousFunctionConstructor'
|
|
33
|
+
| 'untrustedDeserializationInput'
|
|
34
|
+
| 'useSafeDeserializer'
|
|
35
|
+
| 'validateBeforeDeserialization'
|
|
36
|
+
| 'avoidEval'
|
|
37
|
+
| 'strategySafeLibraries'
|
|
38
|
+
| 'strategyInputValidation'
|
|
39
|
+
| 'strategySandboxing';
|
|
40
|
+
|
|
41
|
+
export interface Options extends SecurityRuleOptions {
|
|
42
|
+
/** Dangerous deserialization functions to detect */
|
|
43
|
+
dangerousFunctions?: string[];
|
|
44
|
+
|
|
45
|
+
/** Safe deserialization libraries */
|
|
46
|
+
safeLibraries?: string[];
|
|
47
|
+
|
|
48
|
+
/** Functions that validate input before deserialization */
|
|
49
|
+
validationFunctions?: string[];
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
type RuleOptions = [Options?];
|
|
53
|
+
|
|
54
|
+
export const noUnsafeDeserialization = createRule<RuleOptions, MessageIds>({
|
|
55
|
+
name: 'no-unsafe-deserialization',
|
|
56
|
+
meta: {
|
|
57
|
+
type: 'problem',
|
|
58
|
+
docs: {
|
|
59
|
+
description: 'Detects unsafe deserialization of untrusted data',
|
|
60
|
+
},
|
|
61
|
+
fixable: 'code',
|
|
62
|
+
hasSuggestions: true,
|
|
63
|
+
messages: {
|
|
64
|
+
unsafeDeserialization: formatLLMMessage({
|
|
65
|
+
icon: MessageIcons.SECURITY,
|
|
66
|
+
issueName: 'Unsafe Deserialization',
|
|
67
|
+
cwe: 'CWE-502',
|
|
68
|
+
description: 'Unsafe deserialization of untrusted data (incl. model/tool output)',
|
|
69
|
+
severity: '{{severity}}',
|
|
70
|
+
fix: '{{safeAlternative}} | validate model/tool output via schema and size limits',
|
|
71
|
+
documentationLink: 'https://cwe.mitre.org/data/definitions/502.html',
|
|
72
|
+
}),
|
|
73
|
+
dangerousEvalUsage: formatLLMMessage({
|
|
74
|
+
icon: MessageIcons.SECURITY,
|
|
75
|
+
issueName: 'Dangerous eval() Usage',
|
|
76
|
+
cwe: 'CWE-502',
|
|
77
|
+
description: 'eval() used for deserialization (code execution vulnerability)',
|
|
78
|
+
severity: 'CRITICAL',
|
|
79
|
+
fix: 'Use JSON.parse() or safe deserialization libraries',
|
|
80
|
+
documentationLink: 'https://cwe.mitre.org/data/definitions/502.html',
|
|
81
|
+
}),
|
|
82
|
+
unsafeYamlParsing: formatLLMMessage({
|
|
83
|
+
icon: MessageIcons.SECURITY,
|
|
84
|
+
issueName: 'Unsafe YAML Parsing',
|
|
85
|
+
cwe: 'CWE-502',
|
|
86
|
+
description: 'YAML parsing may execute code during deserialization',
|
|
87
|
+
severity: 'HIGH',
|
|
88
|
+
fix: 'Use yaml.safeLoad() or disable code execution',
|
|
89
|
+
documentationLink: 'https://www.npmjs.com/package/js-yaml#loadstr---options-',
|
|
90
|
+
}),
|
|
91
|
+
dangerousFunctionConstructor: formatLLMMessage({
|
|
92
|
+
icon: MessageIcons.SECURITY,
|
|
93
|
+
issueName: 'Dangerous Function Constructor',
|
|
94
|
+
cwe: 'CWE-502',
|
|
95
|
+
description: 'Function constructor used with untrusted data',
|
|
96
|
+
severity: 'CRITICAL',
|
|
97
|
+
fix: 'Avoid Function constructor with user input',
|
|
98
|
+
documentationLink: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function',
|
|
99
|
+
}),
|
|
100
|
+
untrustedDeserializationInput: formatLLMMessage({
|
|
101
|
+
icon: MessageIcons.SECURITY,
|
|
102
|
+
issueName: 'Untrusted Deserialization Input',
|
|
103
|
+
cwe: 'CWE-502',
|
|
104
|
+
description: 'Deserializing untrusted input (incl. LLM/MCP responses) without validation',
|
|
105
|
+
severity: 'HIGH',
|
|
106
|
+
fix: 'Schema-validate and size-cap before deserialization; reject unknown fields',
|
|
107
|
+
documentationLink: 'https://cwe.mitre.org/data/definitions/502.html',
|
|
108
|
+
}),
|
|
109
|
+
useSafeDeserializer: formatLLMMessage({
|
|
110
|
+
icon: MessageIcons.INFO,
|
|
111
|
+
issueName: 'Use Safe Deserializer',
|
|
112
|
+
description: 'Use safe deserialization libraries',
|
|
113
|
+
severity: 'LOW',
|
|
114
|
+
fix: 'Use JSON.parse, safe-json-parse, or validated libraries',
|
|
115
|
+
documentationLink: 'https://www.npmjs.com/package/safe-json-parse',
|
|
116
|
+
}),
|
|
117
|
+
validateBeforeDeserialization: formatLLMMessage({
|
|
118
|
+
icon: MessageIcons.INFO,
|
|
119
|
+
issueName: 'Validate Before Deserialization',
|
|
120
|
+
description: 'Validate input before deserialization',
|
|
121
|
+
severity: 'LOW',
|
|
122
|
+
fix: 'Implement input validation and length limits',
|
|
123
|
+
documentationLink: 'https://cwe.mitre.org/data/definitions/502.html',
|
|
124
|
+
}),
|
|
125
|
+
avoidEval: formatLLMMessage({
|
|
126
|
+
icon: MessageIcons.INFO,
|
|
127
|
+
issueName: 'Avoid eval()',
|
|
128
|
+
description: 'Never use eval() for deserialization',
|
|
129
|
+
severity: 'LOW',
|
|
130
|
+
fix: 'Use JSON.parse() for data, vm.Script for code when absolutely necessary',
|
|
131
|
+
documentationLink: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval',
|
|
132
|
+
}),
|
|
133
|
+
strategySafeLibraries: formatLLMMessage({
|
|
134
|
+
icon: MessageIcons.STRATEGY,
|
|
135
|
+
issueName: 'Safe Libraries Strategy',
|
|
136
|
+
description: 'Use deserialization libraries with built-in safety',
|
|
137
|
+
severity: 'LOW',
|
|
138
|
+
fix: 'Use JSON.parse, js-yaml.safeLoad, or protobuf libraries',
|
|
139
|
+
documentationLink: 'https://www.npmjs.com/package/js-yaml',
|
|
140
|
+
}),
|
|
141
|
+
strategyInputValidation: formatLLMMessage({
|
|
142
|
+
icon: MessageIcons.STRATEGY,
|
|
143
|
+
issueName: 'Input Validation Strategy',
|
|
144
|
+
description: 'Validate input before any deserialization',
|
|
145
|
+
severity: 'LOW',
|
|
146
|
+
fix: 'Implement schema validation and length limits',
|
|
147
|
+
documentationLink: 'https://cwe.mitre.org/data/definitions/502.html',
|
|
148
|
+
}),
|
|
149
|
+
strategySandboxing: formatLLMMessage({
|
|
150
|
+
icon: MessageIcons.STRATEGY,
|
|
151
|
+
issueName: 'Sandboxing Strategy',
|
|
152
|
+
description: 'Execute deserialization in sandboxed environment',
|
|
153
|
+
severity: 'LOW',
|
|
154
|
+
fix: 'Use vm module or worker threads for untrusted deserialization',
|
|
155
|
+
documentationLink: 'https://nodejs.org/api/vm.html',
|
|
156
|
+
})
|
|
157
|
+
},
|
|
158
|
+
schema: [
|
|
159
|
+
{
|
|
160
|
+
type: 'object',
|
|
161
|
+
properties: {
|
|
162
|
+
dangerousFunctions: {
|
|
163
|
+
type: 'array',
|
|
164
|
+
items: { type: 'string' },
|
|
165
|
+
default: ['eval', 'Function', 'setTimeout', 'setInterval', 'unserialize', 'deserialize', 'parseUnsafe'],
|
|
166
|
+
},
|
|
167
|
+
safeLibraries: {
|
|
168
|
+
type: 'array',
|
|
169
|
+
items: { type: 'string' },
|
|
170
|
+
default: ['JSON', 'safe-json-parse', 'js-yaml.safeLoad', 'protobuf', 'msgpack'],
|
|
171
|
+
},
|
|
172
|
+
validationFunctions: {
|
|
173
|
+
type: 'array',
|
|
174
|
+
items: { type: 'string' },
|
|
175
|
+
default: ['validateInput', 'sanitizeData', 'checkSchema', 'validateSchema'],
|
|
176
|
+
},
|
|
177
|
+
trustedSanitizers: {
|
|
178
|
+
type: 'array',
|
|
179
|
+
items: { type: 'string' },
|
|
180
|
+
default: [],
|
|
181
|
+
description: 'Additional function names to consider as safe deserializers',
|
|
182
|
+
},
|
|
183
|
+
trustedAnnotations: {
|
|
184
|
+
type: 'array',
|
|
185
|
+
items: { type: 'string' },
|
|
186
|
+
default: [],
|
|
187
|
+
description: 'Additional JSDoc annotations to consider as safe markers',
|
|
188
|
+
},
|
|
189
|
+
strictMode: {
|
|
190
|
+
type: 'boolean',
|
|
191
|
+
default: false,
|
|
192
|
+
description: 'Disable all false positive detection (strict mode)',
|
|
193
|
+
},
|
|
194
|
+
},
|
|
195
|
+
additionalProperties: false,
|
|
196
|
+
},
|
|
197
|
+
],
|
|
198
|
+
},
|
|
199
|
+
defaultOptions: [
|
|
200
|
+
{
|
|
201
|
+
dangerousFunctions: ['eval', 'Function', 'setTimeout', 'setInterval', 'unserialize', 'deserialize', 'parseUnsafe'],
|
|
202
|
+
safeLibraries: ['JSON', 'safe-json-parse', 'js-yaml.safeLoad', 'protobuf', 'msgpack'],
|
|
203
|
+
validationFunctions: ['validateInput', 'sanitizeData', 'checkSchema', 'validateSchema'],
|
|
204
|
+
trustedSanitizers: [],
|
|
205
|
+
trustedAnnotations: [],
|
|
206
|
+
strictMode: false,
|
|
207
|
+
},
|
|
208
|
+
],
|
|
209
|
+
create(context: TSESLint.RuleContext<MessageIds, RuleOptions>) {
|
|
210
|
+
const options = context.options[0] || {};
|
|
211
|
+
const {
|
|
212
|
+
dangerousFunctions = ['eval', 'Function', 'setTimeout', 'setInterval', 'unserialize', 'deserialize', 'parseUnsafe'],
|
|
213
|
+
validationFunctions = ['validateInput', 'sanitizeData', 'checkSchema', 'validateSchema'],
|
|
214
|
+
trustedSanitizers = [],
|
|
215
|
+
trustedAnnotations = [],
|
|
216
|
+
strictMode = false,
|
|
217
|
+
}: Options = options;
|
|
218
|
+
|
|
219
|
+
const sourceCode = context.sourceCode || context.sourceCode;
|
|
220
|
+
const filename = context.filename || context.getFilename();
|
|
221
|
+
|
|
222
|
+
// Create safety checker for false positive detection
|
|
223
|
+
const safetyChecker = createSafetyChecker({
|
|
224
|
+
trustedSanitizers,
|
|
225
|
+
trustedAnnotations,
|
|
226
|
+
trustedOrmPatterns: [],
|
|
227
|
+
strictMode,
|
|
228
|
+
});
|
|
229
|
+
|
|
230
|
+
// Track variables that have been validated/sanitized
|
|
231
|
+
const validatedVariables = new Set<string>();
|
|
232
|
+
// Track variables that contain untrusted data
|
|
233
|
+
const untrustedVariables = new Set<string>();
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Check if this is a dangerous deserialization function
|
|
237
|
+
*/
|
|
238
|
+
const isDangerousDeserialization = (node: TSESTree.CallExpression | TSESTree.NewExpression): boolean => {
|
|
239
|
+
const callee = node.callee;
|
|
240
|
+
|
|
241
|
+
// Check for dangerous function calls
|
|
242
|
+
if (callee.type === 'Identifier' && dangerousFunctions.includes(callee.name)) {
|
|
243
|
+
return true;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
// Check for member expressions like yaml.load, serialize.unserialize
|
|
247
|
+
if (callee.type === 'MemberExpression') {
|
|
248
|
+
const memberName = callee.property.type === 'Identifier' ? callee.property.name : '';
|
|
249
|
+
const objectName = callee.object.type === 'Identifier' ? callee.object.name : '';
|
|
250
|
+
|
|
251
|
+
// Check dangerous methods
|
|
252
|
+
if (dangerousFunctions.includes(memberName)) {
|
|
253
|
+
return true;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
// Check dangerous libraries
|
|
257
|
+
if (['yaml', 'js-yaml', 'node-serialize', 'serialize-javascript'].includes(objectName.toLowerCase()) &&
|
|
258
|
+
['load', 'parse', 'unserialize', 'deserialize'].includes(memberName)) {
|
|
259
|
+
return true;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
// Check for require() calls with dangerous libraries
|
|
264
|
+
if (callee.type === 'Identifier' && callee.name === 'require') {
|
|
265
|
+
const args = node.arguments;
|
|
266
|
+
if (args.length > 0 && args[0].type === 'Literal' && typeof args[0].value === 'string') {
|
|
267
|
+
const moduleName = args[0].value.toLowerCase();
|
|
268
|
+
if (['node-serialize', 'serialize-javascript', 'yaml', 'js-yaml'].includes(moduleName)) {
|
|
269
|
+
return true;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
return false;
|
|
275
|
+
};
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* Check if input comes from untrusted source
|
|
279
|
+
*/
|
|
280
|
+
const isUntrustedInput = (inputNode: TSESTree.Node): boolean => {
|
|
281
|
+
// Check for MemberExpression patterns like req.body, req.query, etc.
|
|
282
|
+
if (inputNode.type === 'MemberExpression') {
|
|
283
|
+
if (inputNode.object.type === 'Identifier' && inputNode.object.name === 'req') {
|
|
284
|
+
return true;
|
|
285
|
+
}
|
|
286
|
+
if (inputNode.object.type === 'MemberExpression' &&
|
|
287
|
+
inputNode.object.object.type === 'Identifier' &&
|
|
288
|
+
inputNode.object.object.name === 'req') {
|
|
289
|
+
return true;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
if (inputNode.type === 'Identifier') {
|
|
294
|
+
// Check if this variable has been marked as untrusted
|
|
295
|
+
if (untrustedVariables.has(inputNode.name)) {
|
|
296
|
+
return true;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
// Only consider variables untrusted if they actually come from req.* patterns
|
|
300
|
+
// Don't flag generic variable names like 'input', 'data', etc.
|
|
301
|
+
// unless they have been explicitly marked as untrusted
|
|
302
|
+
|
|
303
|
+
// Check if it comes from function parameters (these are potentially untrusted)
|
|
304
|
+
let current: TSESTree.Node | undefined = inputNode;
|
|
305
|
+
while (current) {
|
|
306
|
+
if (current.type === 'FunctionDeclaration' ||
|
|
307
|
+
current.type === 'FunctionExpression' ||
|
|
308
|
+
current.type === 'ArrowFunctionExpression') {
|
|
309
|
+
const func = current as TSESTree.FunctionDeclaration | TSESTree.FunctionExpression | TSESTree.ArrowFunctionExpression;
|
|
310
|
+
if (func.params.some((param: TSESTree.Parameter) => {
|
|
311
|
+
if (param.type === 'Identifier') {
|
|
312
|
+
return param.name === inputNode.name;
|
|
313
|
+
}
|
|
314
|
+
return false;
|
|
315
|
+
})) {
|
|
316
|
+
return true; // Function parameters are untrusted
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
current = current.parent as TSESTree.Node;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
return false;
|
|
324
|
+
};
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* Check if input has been validated
|
|
328
|
+
*/
|
|
329
|
+
const isInputValidated = (inputNode: TSESTree.Node): boolean => {
|
|
330
|
+
let current: TSESTree.Node | undefined = inputNode;
|
|
331
|
+
|
|
332
|
+
while (current) {
|
|
333
|
+
if (current.type === 'CallExpression' &&
|
|
334
|
+
current.callee.type === 'Identifier' &&
|
|
335
|
+
validationFunctions.includes(current.callee.name)) {
|
|
336
|
+
return true;
|
|
337
|
+
}
|
|
338
|
+
current = current.parent as TSESTree.Node;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
return false;
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* Check if this is a safe deserialization library
|
|
346
|
+
*/
|
|
347
|
+
const isSafeLibrary = (node: TSESTree.CallExpression | TSESTree.NewExpression): boolean => {
|
|
348
|
+
const callee = node.callee;
|
|
349
|
+
|
|
350
|
+
if (callee.type === 'MemberExpression') {
|
|
351
|
+
const objectName = callee.object.type === 'Identifier' ? callee.object.name : '';
|
|
352
|
+
const memberName = callee.property.type === 'Identifier' ? callee.property.name : '';
|
|
353
|
+
|
|
354
|
+
// Check for safe patterns
|
|
355
|
+
if (objectName === 'JSON' && memberName === 'parse') {
|
|
356
|
+
return true;
|
|
357
|
+
}
|
|
358
|
+
if (objectName === 'yaml' && memberName === 'safeLoad') {
|
|
359
|
+
return true;
|
|
360
|
+
}
|
|
361
|
+
if (objectName === 'js-yaml' && memberName === 'safeLoad') {
|
|
362
|
+
return true;
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
return false;
|
|
367
|
+
};
|
|
368
|
+
const checkCallExpression = (node: TSESTree.CallExpression | TSESTree.NewExpression) => {
|
|
369
|
+
// 1. Check Function Constructor (NewExpression or CallExpression)
|
|
370
|
+
if ((node.type === 'NewExpression' || node.type === 'CallExpression') &&
|
|
371
|
+
node.callee.type === 'Identifier' &&
|
|
372
|
+
node.callee.name === 'Function') {
|
|
373
|
+
|
|
374
|
+
const args: TSESTree.CallExpressionArgument[] = node.arguments;
|
|
375
|
+
const hasUntrustedInput = args.some((arg): boolean => isUntrustedInput(arg));
|
|
376
|
+
|
|
377
|
+
if (hasUntrustedInput) {
|
|
378
|
+
if (safetyChecker.isSafe(node, context)) return;
|
|
379
|
+
|
|
380
|
+
context.report({
|
|
381
|
+
node,
|
|
382
|
+
messageId: 'dangerousFunctionConstructor',
|
|
383
|
+
data: {
|
|
384
|
+
filePath: context.getFilename(),
|
|
385
|
+
line: String(node.loc?.start.line ?? 0),
|
|
386
|
+
severity: 'HIGH',
|
|
387
|
+
safeAlternative: 'Avoid dynamic function creation',
|
|
388
|
+
}
|
|
389
|
+
});
|
|
390
|
+
return;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
// 2. Check CallExpressions (eval, unserialize, yaml, etc.)
|
|
395
|
+
if (isDangerousDeserialization(node)) {
|
|
396
|
+
const args: TSESTree.CallExpressionArgument[] = node.arguments;
|
|
397
|
+
const hasUntrustedInput = args.some((arg): boolean => isUntrustedInput(arg));
|
|
398
|
+
|
|
399
|
+
// Check if explicit validation is present
|
|
400
|
+
const isSafe = isSafeLibrary(node);
|
|
401
|
+
const filename = context.getFilename();
|
|
402
|
+
|
|
403
|
+
if (!isSafe && hasUntrustedInput) {
|
|
404
|
+
// Basic safety check
|
|
405
|
+
const safe = safetyChecker.isSafe(node, context);
|
|
406
|
+
|
|
407
|
+
if (!safe) {
|
|
408
|
+
// Determine message ID
|
|
409
|
+
let messageId: MessageIds = 'unsafeDeserialization';
|
|
410
|
+
// Check specifically for YAML
|
|
411
|
+
const calleeText = sourceCode.getText(node.callee);
|
|
412
|
+
if (calleeText.includes('yaml') || calleeText.includes('YAML')) {
|
|
413
|
+
messageId = 'unsafeYamlParsing';
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
// Check for generic dangerous functions
|
|
417
|
+
if (node.callee.type === 'Identifier' && ['eval', 'setTimeout', 'setInterval'].includes(node.callee.name)) {
|
|
418
|
+
messageId = 'dangerousEvalUsage';
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
context.report({
|
|
422
|
+
node,
|
|
423
|
+
messageId,
|
|
424
|
+
data: {
|
|
425
|
+
library: calleeText,
|
|
426
|
+
filePath: filename,
|
|
427
|
+
line: String(node.loc?.start.line ?? 0),
|
|
428
|
+
severity: 'HIGH',
|
|
429
|
+
safeAlternative: 'Use JSON.parse() or validated safe deserialization libraries',
|
|
430
|
+
},
|
|
431
|
+
suggest: messageId === 'dangerousEvalUsage' ? [{
|
|
432
|
+
messageId: 'useSafeDeserializer' as const,
|
|
433
|
+
fix: (fixer: TSESLint.RuleFixer) => {
|
|
434
|
+
return fixer.replaceText(node, `JSON.parse(${sourceCode.getText(node.arguments[0])})`);
|
|
435
|
+
}
|
|
436
|
+
}] : undefined
|
|
437
|
+
});
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
// Check for untrusted input in potentially safe functions
|
|
446
|
+
if (isSafeLibrary(node)) {
|
|
447
|
+
const args: TSESTree.CallExpressionArgument[] = node.arguments;
|
|
448
|
+
const hasUntrustedInput = args.some((arg): boolean => {
|
|
449
|
+
// Check if it's validated
|
|
450
|
+
if (arg.type === 'Identifier' && validatedVariables.has(arg.name)) {
|
|
451
|
+
return false;
|
|
452
|
+
}
|
|
453
|
+
return isUntrustedInput(arg) && !isInputValidated(arg);
|
|
454
|
+
});
|
|
455
|
+
|
|
456
|
+
if (hasUntrustedInput) {
|
|
457
|
+
// Even JSON.parse can be unsafe if used on complex objects that get eval'd later
|
|
458
|
+
/* c8 ignore start -- safetyChecker requires JSDoc annotations not testable via RuleTester */
|
|
459
|
+
if (safetyChecker.isSafe(node, context)) {
|
|
460
|
+
return;
|
|
461
|
+
}
|
|
462
|
+
/* c8 ignore stop */
|
|
463
|
+
|
|
464
|
+
context.report({
|
|
465
|
+
node,
|
|
466
|
+
messageId: 'untrustedDeserializationInput',
|
|
467
|
+
data: {
|
|
468
|
+
filePath: context.getFilename(),
|
|
469
|
+
line: String(node.loc?.start.line ?? 0),
|
|
470
|
+
},
|
|
471
|
+
suggest: [
|
|
472
|
+
{
|
|
473
|
+
messageId: 'validateBeforeDeserialization',
|
|
474
|
+
fix: () => null
|
|
475
|
+
},
|
|
476
|
+
],
|
|
477
|
+
});
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
};
|
|
481
|
+
|
|
482
|
+
return {
|
|
483
|
+
// Track variable assignments from untrusted sources
|
|
484
|
+
VariableDeclaration(node: TSESTree.VariableDeclaration) {
|
|
485
|
+
for (const declarator of node.declarations) {
|
|
486
|
+
if (declarator.id.type === 'Identifier' && declarator.init) {
|
|
487
|
+
// Check if the initializer comes from an untrusted source
|
|
488
|
+
if (isUntrustedInput(declarator.init)) {
|
|
489
|
+
untrustedVariables.add(declarator.id.name);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
// Check if it's assigned from fs operations or other untrusted sources
|
|
493
|
+
if (declarator.init.type === 'CallExpression') {
|
|
494
|
+
const callee = declarator.init.callee;
|
|
495
|
+
if (callee.type === 'MemberExpression' &&
|
|
496
|
+
callee.object.type === 'Identifier' &&
|
|
497
|
+
callee.object.name === 'fs' &&
|
|
498
|
+
callee.property.type === 'Identifier' &&
|
|
499
|
+
['readFile', 'readFileSync'].includes(callee.property.name)) {
|
|
500
|
+
untrustedVariables.add(declarator.id.name);
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
},
|
|
506
|
+
|
|
507
|
+
// Track assignment expressions
|
|
508
|
+
AssignmentExpression(node: TSESTree.AssignmentExpression) {
|
|
509
|
+
if (node.left.type === 'Identifier' && isUntrustedInput(node.right)) {
|
|
510
|
+
untrustedVariables.add(node.left.name);
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
|
|
514
|
+
// Check dangerous function calls
|
|
515
|
+
CallExpression(node: TSESTree.CallExpression) {
|
|
516
|
+
checkCallExpression(node);
|
|
517
|
+
},
|
|
518
|
+
NewExpression(node: TSESTree.NewExpression) {
|
|
519
|
+
checkCallExpression(node);
|
|
520
|
+
},
|
|
521
|
+
|
|
522
|
+
// Check for dangerous require/import patterns
|
|
523
|
+
VariableDeclarator(node: TSESTree.VariableDeclarator) {
|
|
524
|
+
if (!node.init) {
|
|
525
|
+
return;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
// Track variables assigned from validation functions
|
|
529
|
+
if (node.id.type === 'Identifier' &&
|
|
530
|
+
node.init.type === 'CallExpression' &&
|
|
531
|
+
node.init.callee.type === 'Identifier' &&
|
|
532
|
+
(validationFunctions.includes(node.init.callee.name) || trustedSanitizers.includes(node.init.callee.name))) {
|
|
533
|
+
validatedVariables.add(node.id.name);
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
// Check for require/import of dangerous libraries
|
|
537
|
+
if (node.init.type === 'CallExpression' &&
|
|
538
|
+
node.init.callee.type === 'Identifier' &&
|
|
539
|
+
node.init.callee.name === 'require') {
|
|
540
|
+
|
|
541
|
+
const requireArg = node.init.arguments[0];
|
|
542
|
+
if (requireArg?.type === 'Literal' && typeof requireArg.value === 'string') {
|
|
543
|
+
const moduleName = requireArg.value;
|
|
544
|
+
|
|
545
|
+
if (['node-serialize', 'serialize-javascript', 'js-yaml', 'yaml'].includes(moduleName)) {
|
|
546
|
+
// Check if this variable is used unsafely later
|
|
547
|
+
if (node.id.type === 'Identifier') {
|
|
548
|
+
// Look ahead to see if this library is used dangerously
|
|
549
|
+
// This is a simplified check - in practice, we'd need more sophisticated analysis
|
|
550
|
+
const variables = sourceCode.getDeclaredVariables(node);
|
|
551
|
+
for (const variable of variables) {
|
|
552
|
+
for (const reference of variable.references) {
|
|
553
|
+
const refNode = reference.identifier;
|
|
554
|
+
|
|
555
|
+
// Check if reference is part of a call to dangerous method
|
|
556
|
+
// e.g. serialize.unserialize()
|
|
557
|
+
if (refNode.parent && refNode.parent.type === 'MemberExpression' &&
|
|
558
|
+
refNode.parent.object === refNode) {
|
|
559
|
+
const memberExpr = refNode.parent;
|
|
560
|
+
const propertyName = memberExpr.property.type === 'Identifier' ? memberExpr.property.name : '';
|
|
561
|
+
|
|
562
|
+
if (['unserialize', 'deserialize', 'load', 'parse'].includes(propertyName)) {
|
|
563
|
+
const callExpr = memberExpr.parent;
|
|
564
|
+
if (callExpr && callExpr.type === 'CallExpression' && callExpr.callee === memberExpr) {
|
|
565
|
+
|
|
566
|
+
// FALSE POSITIVE REDUCTION
|
|
567
|
+
if (safetyChecker.isSafe(callExpr, context)) {
|
|
568
|
+
continue;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
context.report({
|
|
572
|
+
node: callExpr,
|
|
573
|
+
messageId: 'unsafeDeserialization',
|
|
574
|
+
data: {
|
|
575
|
+
filePath: filename,
|
|
576
|
+
line: String(callExpr.loc?.start.line ?? 0),
|
|
577
|
+
severity: 'CRITICAL',
|
|
578
|
+
safeAlternative: 'Avoid using this library or use safe alternatives',
|
|
579
|
+
},
|
|
580
|
+
});
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
};
|
|
592
|
+
},
|
|
593
|
+
});
|