agent-security-scanner-mcp 2.0.7 → 3.1.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.
- package/README.md +399 -746
- package/analyzer.py +51 -7
- package/index.js +173 -431
- package/package.json +3 -6
- package/regex_fallback.py +66 -0
- package/rules/__init__.py +124 -36
- package/rules/c/lang/correctness/c-string-equality.yaml +18 -0
- package/rules/c/lang/correctness/goto-fail.yaml +13 -0
- package/rules/c/lang/correctness/incorrect-use-ato-fn.yaml +19 -0
- package/rules/c/lang/correctness/incorrect-use-sscanf-fn.yaml +21 -0
- package/rules/c/lang/security/double-free.yaml +45 -0
- package/rules/c/lang/security/function-use-after-free.yaml +44 -0
- package/rules/c/lang/security/info-leak-on-non-formatted-string.yaml +23 -0
- package/rules/c/lang/security/insecure-use-gets-fn.yaml +21 -0
- package/rules/c/lang/security/insecure-use-memset.yaml +36 -0
- package/rules/c/lang/security/insecure-use-printf-fn.yaml +44 -0
- package/rules/c/lang/security/insecure-use-scanf-fn.yaml +22 -0
- package/rules/c/lang/security/insecure-use-strcat-fn.yaml +25 -0
- package/rules/c/lang/security/insecure-use-string-copy-fn.yaml +29 -0
- package/rules/c/lang/security/insecure-use-strtok-fn.yaml +24 -0
- package/rules/c/lang/security/random-fd-exhaustion.yaml +39 -0
- package/rules/c/lang/security/use-after-free.yaml +39 -0
- package/rules/csharp/dotnet/security/audit/ldap-injection.yaml +44 -0
- package/rules/csharp/dotnet/security/audit/mass-assignment.yaml +51 -0
- package/rules/csharp/dotnet/security/audit/misconfigured-lockout-option.yaml +36 -0
- package/rules/csharp/dotnet/security/audit/missing-or-broken-authorization.yaml +60 -0
- package/rules/csharp/dotnet/security/audit/open-directory-listing.yaml +36 -0
- package/rules/csharp/dotnet/security/audit/razor-use-of-htmlstring.yaml +36 -0
- package/rules/csharp/dotnet/security/audit/xpath-injection.yaml +37 -0
- package/rules/csharp/dotnet/security/mvc-missing-antiforgery.yaml +51 -0
- package/rules/csharp/dotnet/security/net-webconfig-debug.yaml +35 -0
- package/rules/csharp/dotnet/security/net-webconfig-trace-enabled.yaml +32 -0
- package/rules/csharp/dotnet/security/razor-template-injection.yaml +38 -0
- package/rules/csharp/dotnet/security/use_deprecated_cipher_algorithm.yaml +32 -0
- package/rules/csharp/dotnet/security/use_ecb_mode.yaml +40 -0
- package/rules/csharp/dotnet/security/use_weak_rng_for_keygeneration.yaml +49 -0
- package/rules/csharp/dotnet/security/use_weak_rsa_encryption_padding.yaml +29 -0
- package/rules/csharp/dotnet/security/web-config-insecure-cookie-settings.yaml +43 -0
- package/rules/csharp/lang/best-practice/structured-logging.yaml +50 -0
- package/rules/csharp/lang/correctness/double/double-epsilon-equality.yaml +34 -0
- package/rules/csharp/lang/correctness/regioninfo/regioninfo-interop.yaml +37 -0
- package/rules/csharp/lang/correctness/sslcertificatetrust/sslcertificatetrust-handshake-no-trust.yaml +23 -0
- package/rules/csharp/lang/security/ad/jwt-tokenvalidationparameters-no-expiry-validation.yaml +45 -0
- package/rules/csharp/lang/security/cryptography/X509-subject-name-validation.yaml +74 -0
- package/rules/csharp/lang/security/cryptography/X509Certificate2-privkey.yaml +39 -0
- package/rules/csharp/lang/security/cryptography/unsigned-security-token.yaml +32 -0
- package/rules/csharp/lang/security/filesystem/unsafe-path-combine.yaml +61 -0
- package/rules/csharp/lang/security/http/http-listener-wildcard-bindings.yaml +35 -0
- package/rules/csharp/lang/security/injections/os-command.yaml +94 -0
- package/rules/csharp/lang/security/insecure-deserialization/binary-formatter.yaml +35 -0
- package/rules/csharp/lang/security/insecure-deserialization/data-contract-resolver.yaml +30 -0
- package/rules/csharp/lang/security/insecure-deserialization/fast-json.yaml +37 -0
- package/rules/csharp/lang/security/insecure-deserialization/fs-pickler.yaml +34 -0
- package/rules/csharp/lang/security/insecure-deserialization/insecure-typefilterlevel-full.yaml +49 -0
- package/rules/csharp/lang/security/insecure-deserialization/javascript-serializer.yaml +34 -0
- package/rules/csharp/lang/security/insecure-deserialization/los-formatter.yaml +36 -0
- package/rules/csharp/lang/security/insecure-deserialization/net-data-contract.yaml +36 -0
- package/rules/csharp/lang/security/insecure-deserialization/newtonsoft.yaml +46 -0
- package/rules/csharp/lang/security/insecure-deserialization/soap-formatter.yaml +36 -0
- package/rules/csharp/lang/security/memory/memory-marshal-create-span.yaml +30 -0
- package/rules/csharp/lang/security/missing-hsts-header.yaml +53 -0
- package/rules/csharp/lang/security/open-redirect.yaml +48 -0
- package/rules/csharp/lang/security/regular-expression-dos/regular-expression-dos-infinite-timeout.yaml +39 -0
- package/rules/csharp/lang/security/regular-expression-dos/regular-expression-dos.yaml +53 -0
- package/rules/csharp/lang/security/sqli/csharp-sqli.yaml +65 -0
- package/rules/csharp/lang/security/ssrf/http-client.yaml +67 -0
- package/rules/csharp/lang/security/ssrf/rest-client.yaml +45 -0
- package/rules/csharp/lang/security/ssrf/web-client.yaml +85 -0
- package/rules/csharp/lang/security/ssrf/web-request.yaml +60 -0
- package/rules/csharp/lang/security/stacktrace-disclosure.yaml +37 -0
- package/rules/csharp/lang/security/xxe/xmldocument-unsafe-parser-override.yaml +44 -0
- package/rules/csharp/lang/security/xxe/xmlreadersettings-unsafe-parser-override.yaml +44 -0
- package/rules/csharp/lang/security/xxe/xmltextreader-unsafe-defaults.yaml +45 -0
- package/rules/csharp/razor/security/html-raw-json.yaml +34 -0
- package/rules/generic/bicep/security/secure-parameter-for-secrets.yaml +36 -0
- package/rules/generic/ci/audit/changed-semgrepignore.yaml +24 -0
- package/rules/generic/ci/security/bash-reverse-shell.yaml +32 -0
- package/rules/generic/dockerfile/best-practice/missing-yum-clean-all.yaml +22 -0
- package/rules/generic/dockerfile/best-practice/use-absolute-workdir.yaml +35 -0
- package/rules/generic/dockerfile/correctness/alias-must-be-unique.yaml +40 -0
- package/rules/generic/dockerfile/correctness/copy-from-own-alias.yaml +33 -0
- package/rules/generic/dockerfile/correctness/multiple-cmd-instructions.yaml +54 -0
- package/rules/generic/dockerfile/missing-zypper-no-confirm-switch.yaml +25 -0
- package/rules/generic/gradle/security/build-gradle-password-hardcoded.yaml +39 -0
- package/rules/generic/html-templates/security/unquoted-attribute-var.yaml +41 -0
- package/rules/generic/html-templates/security/var-in-href.yaml +53 -0
- package/rules/generic/html-templates/security/var-in-script-src.yaml +46 -0
- package/rules/generic/html-templates/security/var-in-script-tag.yaml +47 -0
- package/rules/generic/hugo/best-practice/invalid-base-url.yaml +16 -0
- package/rules/generic/hugo/best-practice/localhost-base-url.yaml +14 -0
- package/rules/generic/nginx/security/alias-path-traversal.yaml +51 -0
- package/rules/generic/nginx/security/dynamic-proxy-host.yaml +36 -0
- package/rules/generic/nginx/security/dynamic-proxy-scheme.yaml +34 -0
- package/rules/generic/nginx/security/header-injection.yaml +39 -0
- package/rules/generic/nginx/security/header-redefinition.yaml +47 -0
- package/rules/generic/nginx/security/insecure-redirect.yaml +39 -0
- package/rules/generic/nginx/security/insecure-ssl-version.yaml +39 -0
- package/rules/generic/nginx/security/missing-internal.yaml +53 -0
- package/rules/generic/nginx/security/missing-ssl-version.yaml +37 -0
- package/rules/generic/nginx/security/possible-h2c-smuggling.yaml +61 -0
- package/rules/generic/nginx/security/request-host-used.yaml +36 -0
- package/rules/generic/secrets/gitleaks/adafruit-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/adobe-client-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/adobe-client-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/age-secret-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/airtable-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/algolia-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/alibaba-access-key-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/alibaba-secret-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/asana-client-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/asana-client-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/atlassian-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/authress-service-client-access-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/aws-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/beamer-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/bitbucket-client-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/bitbucket-client-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/bittrex-access-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/bittrex-secret-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/clojars-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/cloudflare-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/cloudflare-global-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/cloudflare-origin-ca-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/codecov-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/coinbase-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/confluent-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/confluent-secret-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/contentful-delivery-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/databricks-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/datadog-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/defined-networking-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/digitalocean-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/digitalocean-pat.yaml +27 -0
- package/rules/generic/secrets/gitleaks/digitalocean-refresh-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/discord-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/discord-client-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/discord-client-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/doppler-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/droneci-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/dropbox-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/dropbox-long-lived-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/dropbox-short-lived-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/duffel-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/dynatrace-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/easypost-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/easypost-test-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/etsy-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/facebook-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/facebook-page-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/facebook-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/facebook.yaml +27 -0
- package/rules/generic/secrets/gitleaks/fastly-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/finicity-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/finicity-client-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/finnhub-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/flickr-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/flutterwave-encryption-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/flutterwave-public-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/flutterwave-secret-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/frameio-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/freshbooks-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/gcp-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/generic-api-key.yaml +76 -0
- package/rules/generic/secrets/gitleaks/github-app-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/github-fine-grained-pat.yaml +27 -0
- package/rules/generic/secrets/gitleaks/github-oauth.yaml +27 -0
- package/rules/generic/secrets/gitleaks/github-pat.yaml +27 -0
- package/rules/generic/secrets/gitleaks/github-refresh-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/gitlab-pat.yaml +27 -0
- package/rules/generic/secrets/gitleaks/gitlab-ptt.yaml +27 -0
- package/rules/generic/secrets/gitleaks/gitlab-rrt.yaml +27 -0
- package/rules/generic/secrets/gitleaks/gitter-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/gocardless-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/grafana-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/grafana-cloud-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/grafana-service-account-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/harness-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/hashicorp-tf-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/hashicorp-tf-password.yaml +31 -0
- package/rules/generic/secrets/gitleaks/heroku-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/hubspot-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/huggingface-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/huggingface-organization-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/infracost-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/intercom-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/intra42-client-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/jfrog-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/jfrog-identity-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/jwt-base64.yaml +27 -0
- package/rules/generic/secrets/gitleaks/jwt.yaml +27 -0
- package/rules/generic/secrets/gitleaks/kraken-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/kucoin-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/kucoin-secret-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/launchdarkly-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/linear-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/linear-client-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/linkedin-client-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/linkedin-client-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/lob-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/lob-pub-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/mailchimp-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/mailgun-private-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/mailgun-pub-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/mailgun-signing-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/mapbox-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/mattermost-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/messagebird-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/messagebird-client-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/microsoft-teams-webhook.yaml +27 -0
- package/rules/generic/secrets/gitleaks/netlify-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/new-relic-browser-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/new-relic-insert-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/new-relic-user-api-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/new-relic-user-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/npm-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/nytimes-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/okta-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/openai-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/plaid-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/plaid-client-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/plaid-secret-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/planetscale-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/planetscale-oauth-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/planetscale-password.yaml +27 -0
- package/rules/generic/secrets/gitleaks/postman-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/prefect-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/private-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/pulumi-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/pypi-upload-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/rapidapi-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/readme-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/rubygems-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/scalingo-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/sendbird-access-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/sendbird-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/sendgrid-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/sendinblue-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/sentry-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/shippo-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/shopify-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/shopify-custom-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/shopify-private-app-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/shopify-shared-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/sidekiq-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/sidekiq-sensitive-url.yaml +27 -0
- package/rules/generic/secrets/gitleaks/slack-app-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/slack-bot-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/slack-config-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/slack-config-refresh-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/slack-legacy-bot-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/slack-legacy-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/slack-legacy-workspace-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/slack-user-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/slack-webhook-url.yaml +27 -0
- package/rules/generic/secrets/gitleaks/snyk-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/square-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/squarespace-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/stripe-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/sumologic-access-id.yaml +27 -0
- package/rules/generic/secrets/gitleaks/sumologic-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/telegram-bot-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/travisci-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/twilio-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/twitch-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/twitter-access-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/twitter-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/twitter-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/twitter-api-secret.yaml +27 -0
- package/rules/generic/secrets/gitleaks/twitter-bearer-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/typeform-api-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/vault-batch-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/vault-service-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/yandex-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/yandex-api-key.yaml +27 -0
- package/rules/generic/secrets/gitleaks/yandex-aws-access-token.yaml +27 -0
- package/rules/generic/secrets/gitleaks/zendesk-secret-key.yaml +27 -0
- package/rules/generic/secrets/security/detected-amazon-mws-auth-token.yaml +26 -0
- package/rules/generic/secrets/security/detected-artifactory-password.yaml +47 -0
- package/rules/generic/secrets/security/detected-artifactory-token.yaml +44 -0
- package/rules/generic/secrets/security/detected-aws-access-key-id-value.yaml +29 -0
- package/rules/generic/secrets/security/detected-aws-account-id.yaml +58 -0
- package/rules/generic/secrets/security/detected-aws-appsync-graphql-key.yaml +27 -0
- package/rules/generic/secrets/security/detected-aws-secret-access-key.yaml +30 -0
- package/rules/generic/secrets/security/detected-aws-session-token.yaml +31 -0
- package/rules/generic/secrets/security/detected-bcrypt-hash.yaml +25 -0
- package/rules/generic/secrets/security/detected-codeclimate.yaml +27 -0
- package/rules/generic/secrets/security/detected-etc-shadow.yaml +27 -0
- package/rules/generic/secrets/security/detected-facebook-access-token.yaml +29 -0
- package/rules/generic/secrets/security/detected-facebook-oauth.yaml +27 -0
- package/rules/generic/secrets/security/detected-generic-api-key.yaml +29 -0
- package/rules/generic/secrets/security/detected-generic-secret.yaml +30 -0
- package/rules/generic/secrets/security/detected-github-token.yaml +47 -0
- package/rules/generic/secrets/security/detected-google-api-key.yaml +29 -0
- package/rules/generic/secrets/security/detected-google-cloud-api-key.yaml +27 -0
- package/rules/generic/secrets/security/detected-google-gcm-service-account.yaml +27 -0
- package/rules/generic/secrets/security/detected-google-oauth-access-token.yaml +26 -0
- package/rules/generic/secrets/security/detected-google-oauth.yaml +26 -0
- package/rules/generic/secrets/security/detected-heroku-api-key.yaml +27 -0
- package/rules/generic/secrets/security/detected-hockeyapp.yaml +27 -0
- package/rules/generic/secrets/security/detected-jwt-token.yaml +25 -0
- package/rules/generic/secrets/security/detected-kolide-api-key.yaml +25 -0
- package/rules/generic/secrets/security/detected-mailchimp-api-key.yaml +26 -0
- package/rules/generic/secrets/security/detected-mailgun-api-key.yaml +26 -0
- package/rules/generic/secrets/security/detected-npm-registry-auth-token.yaml +33 -0
- package/rules/generic/secrets/security/detected-onfido-live-api-token.yaml +20 -0
- package/rules/generic/secrets/security/detected-outlook-team.yaml +27 -0
- package/rules/generic/secrets/security/detected-paypal-braintree-access-token.yaml +27 -0
- package/rules/generic/secrets/security/detected-pgp-private-key-block.yaml +28 -0
- package/rules/generic/secrets/security/detected-picatic-api-key.yaml +26 -0
- package/rules/generic/secrets/security/detected-private-key.yaml +39 -0
- package/rules/generic/secrets/security/detected-sauce-token.yaml +27 -0
- package/rules/generic/secrets/security/detected-sendgrid-api-key.yaml +27 -0
- package/rules/generic/secrets/security/detected-slack-token.yaml +28 -0
- package/rules/generic/secrets/security/detected-slack-webhook.yaml +27 -0
- package/rules/generic/secrets/security/detected-snyk-api-key.yaml +26 -0
- package/rules/generic/secrets/security/detected-softlayer-api-key.yaml +27 -0
- package/rules/generic/secrets/security/detected-sonarqube-docs-api-key.yaml +40 -0
- package/rules/generic/secrets/security/detected-square-access-token.yaml +26 -0
- package/rules/generic/secrets/security/detected-square-oauth-secret.yaml +27 -0
- package/rules/generic/secrets/security/detected-ssh-password.yaml +27 -0
- package/rules/generic/secrets/security/detected-stripe-api-key.yaml +26 -0
- package/rules/generic/secrets/security/detected-stripe-restricted-api-key.yaml +26 -0
- package/rules/generic/secrets/security/detected-telegram-bot-api-key.yaml +30 -0
- package/rules/generic/secrets/security/detected-twilio-api-key.yaml +26 -0
- package/rules/generic/secrets/security/detected-username-and-password-in-uri.yaml +35 -0
- package/rules/generic/secrets/security/google-maps-apikeyleak.yaml +25 -0
- package/rules/generic/unicode/security/bidi.yml +58 -0
- package/rules/generic/visualforce/security/ncino/html/UseSRIForCDNs.yaml +50 -0
- package/rules/generic/visualforce/security/ncino/vf/XSSFromUnescapedURLParam.yaml +48 -0
- package/rules/generic/visualforce/security/ncino/xml/CSPHeaderAttribute.yaml +36 -0
- package/rules/generic/visualforce/security/ncino/xml/VisualForceAPIVersion.yaml +36 -0
- package/rules/go/aws-lambda/security/database-sqli.yaml +63 -0
- package/rules/go/aws-lambda/security/tainted-sql-string.yaml +69 -0
- package/rules/go/gorilla/security/audit/handler-assignment-from-multiple-sources.yaml +48 -0
- package/rules/go/gorilla/security/audit/session-cookie-missing-httponly.yaml +40 -0
- package/rules/go/gorilla/security/audit/session-cookie-missing-secure.yaml +39 -0
- package/rules/go/gorilla/security/audit/session-cookie-samesitenone.yaml +37 -0
- package/rules/go/gorilla/security/audit/websocket-missing-origin-check.yaml +40 -0
- package/rules/go/gorm/security/audit/gorm-dangerous-methods-usage.yaml +70 -0
- package/rules/go/grpc/security/grpc-client-insecure-connection.yaml +34 -0
- package/rules/go/grpc/security/grpc-server-insecure-connection.yaml +44 -0
- package/rules/go/jwt-go/security/audit/jwt-parse-unverified.yaml +33 -0
- package/rules/go/jwt-go/security/jwt-none-alg.yaml +40 -0
- package/rules/go/jwt-go/security/jwt.yaml +43 -0
- package/rules/go/lang/best-practice/channel-guarded-with-mutex.yaml +22 -0
- package/rules/go/lang/best-practice/hidden-goroutine.yaml +27 -0
- package/rules/go/lang/correctness/looppointer.yaml +29 -0
- package/rules/go/lang/correctness/overflow/overflow.yaml +39 -0
- package/rules/go/lang/correctness/permissions/file_permission.yaml +31 -0
- package/rules/go/lang/correctness/use-filepath-join.yaml +50 -0
- package/rules/go/lang/correctness/useless-eqeq.yaml +31 -0
- package/rules/go/lang/maintainability/useless-ifelse.yaml +33 -0
- package/rules/go/lang/security/audit/crypto/bad_imports.yaml +33 -0
- package/rules/go/lang/security/audit/crypto/insecure_ssh.yaml +30 -0
- package/rules/go/lang/security/audit/crypto/math_random.yaml +41 -0
- package/rules/go/lang/security/audit/crypto/missing-ssl-minversion.yaml +39 -0
- package/rules/go/lang/security/audit/crypto/sha224-hash.yaml +45 -0
- package/rules/go/lang/security/audit/crypto/ssl.yaml +31 -0
- package/rules/go/lang/security/audit/crypto/tls.yaml +61 -0
- package/rules/go/lang/security/audit/crypto/use_of_weak_crypto.yaml +132 -0
- package/rules/go/lang/security/audit/crypto/use_of_weak_rsa_key.yaml +36 -0
- package/rules/go/lang/security/audit/dangerous-command-write.yaml +49 -0
- package/rules/go/lang/security/audit/dangerous-exec-cmd.yaml +86 -0
- package/rules/go/lang/security/audit/dangerous-exec-command.yaml +62 -0
- package/rules/go/lang/security/audit/dangerous-syscall-exec.yaml +98 -0
- package/rules/go/lang/security/audit/database/string-formatted-query.yaml +108 -0
- package/rules/go/lang/security/audit/md5-used-as-password.yaml +44 -0
- package/rules/go/lang/security/audit/net/bind_all.yaml +31 -0
- package/rules/go/lang/security/audit/net/cookie-missing-httponly.yaml +41 -0
- package/rules/go/lang/security/audit/net/cookie-missing-secure.yaml +40 -0
- package/rules/go/lang/security/audit/net/dynamic-httptrace-clienttrace.yaml +39 -0
- package/rules/go/lang/security/audit/net/formatted-template-string.yaml +56 -0
- package/rules/go/lang/security/audit/net/fs-directory-listing.yaml +49 -0
- package/rules/go/lang/security/audit/net/pprof.yaml +40 -0
- package/rules/go/lang/security/audit/net/unescaped-data-in-htmlattr.yaml +54 -0
- package/rules/go/lang/security/audit/net/unescaped-data-in-js.yaml +54 -0
- package/rules/go/lang/security/audit/net/unescaped-data-in-url.yaml +55 -0
- package/rules/go/lang/security/audit/net/use-tls.yaml +26 -0
- package/rules/go/lang/security/audit/net/wip-xss-using-responsewriter-and-printf.yaml +73 -0
- package/rules/go/lang/security/audit/reflect-makefunc.yaml +27 -0
- package/rules/go/lang/security/audit/sqli/gosql-sqli.yaml +64 -0
- package/rules/go/lang/security/audit/sqli/pg-orm-sqli.yaml +88 -0
- package/rules/go/lang/security/audit/sqli/pg-sqli.yaml +67 -0
- package/rules/go/lang/security/audit/sqli/pgx-sqli.yaml +71 -0
- package/rules/go/lang/security/audit/unsafe-reflect-by-name.yaml +43 -0
- package/rules/go/lang/security/audit/unsafe.yaml +24 -0
- package/rules/go/lang/security/audit/xss/import-text-template.yaml +43 -0
- package/rules/go/lang/security/audit/xss/no-direct-write-to-responsewriter.yaml +47 -0
- package/rules/go/lang/security/audit/xss/no-fprintf-to-responsewriter.yaml +41 -0
- package/rules/go/lang/security/audit/xss/no-interpolation-in-tag.yaml +39 -0
- package/rules/go/lang/security/audit/xss/no-interpolation-js-template-string.yaml +43 -0
- package/rules/go/lang/security/audit/xss/no-io-writestring-to-responsewriter.yaml +42 -0
- package/rules/go/lang/security/audit/xss/no-printf-in-responsewriter.yaml +41 -0
- package/rules/go/lang/security/audit/xss/template-html-does-not-escape.yaml +42 -0
- package/rules/go/lang/security/audit/xxe/parsing-external-entities-enabled.yaml +34 -0
- package/rules/go/lang/security/bad_tmp.yaml +29 -0
- package/rules/go/lang/security/decompression_bomb.yaml +62 -0
- package/rules/go/lang/security/deserialization/unsafe-deserialization-interface.yaml +41 -0
- package/rules/go/lang/security/filepath-clean-misuse.yaml +59 -0
- package/rules/go/lang/security/injection/open-redirect.yaml +58 -0
- package/rules/go/lang/security/injection/raw-html-format.yaml +55 -0
- package/rules/go/lang/security/injection/tainted-sql-string.yaml +84 -0
- package/rules/go/lang/security/injection/tainted-url-host.yaml +81 -0
- package/rules/go/lang/security/reverseproxy-director.yaml +33 -0
- package/rules/go/lang/security/shared-url-struct-mutation.yaml +52 -0
- package/rules/go/lang/security/zip.yaml +33 -0
- package/rules/go/otto/security/audit/dangerous-execution.yaml +34 -0
- package/rules/go/template/security/insecure-types.yaml +38 -0
- package/rules/go/template/security/ssti.yaml +56 -0
- package/rules/java/android/best-practice/manifest-security-features.yaml +52 -0
- package/rules/java/android/best-practice/network-security-config.yml +161 -0
- package/rules/java/android/security/exported_activity.yaml +38 -0
- package/rules/java/aws-lambda/security/tainted-sql-string.yaml +69 -0
- package/rules/java/aws-lambda/security/tainted-sqli.yaml +73 -0
- package/rules/java/java-jwt/security/audit/jwt-decode-without-verify.yaml +38 -0
- package/rules/java/java-jwt/security/jwt-hardcode.yaml +54 -0
- package/rules/java/java-jwt/security/jwt-none-alg.yaml +47 -0
- package/rules/java/jax-rs/security/insecure-resteasy.yaml +82 -0
- package/rules/java/jax-rs/security/jax-rs-path-traversal.yaml +45 -0
- package/rules/java/jboss/security/seam-log-injection.yaml +40 -0
- package/rules/java/jboss/security/session_sqli.yaml +50 -0
- package/rules/java/jjwt/security/jwt-none-alg.yaml +42 -0
- package/rules/java/lang/correctness/assignment-comparison.yaml +12 -0
- package/rules/java/lang/correctness/eqeq.yaml +20 -0
- package/rules/java/lang/correctness/hardcoded-conditional.yaml +19 -0
- package/rules/java/lang/correctness/no-string-eqeq.yaml +15 -0
- package/rules/java/lang/security/audit/anonymous-ldap-bind.yaml +34 -0
- package/rules/java/lang/security/audit/bad-hexa-conversion.yaml +32 -0
- package/rules/java/lang/security/audit/blowfish-insufficient-key-size.yaml +39 -0
- package/rules/java/lang/security/audit/cbc-padding-oracle.yaml +38 -0
- package/rules/java/lang/security/audit/command-injection-formatted-runtime-call.yaml +90 -0
- package/rules/java/lang/security/audit/command-injection-process-builder.yaml +148 -0
- package/rules/java/lang/security/audit/cookie-missing-httponly.yaml +38 -0
- package/rules/java/lang/security/audit/cookie-missing-secure-flag.yaml +38 -0
- package/rules/java/lang/security/audit/crlf-injection-logs.yaml +86 -0
- package/rules/java/lang/security/audit/crypto/des-is-deprecated.yaml +48 -0
- package/rules/java/lang/security/audit/crypto/desede-is-deprecated.yaml +35 -0
- package/rules/java/lang/security/audit/crypto/ecb-cipher.yaml +37 -0
- package/rules/java/lang/security/audit/crypto/gcm-detection.yaml +38 -0
- package/rules/java/lang/security/audit/crypto/gcm-nonce-reuse.yaml +29 -0
- package/rules/java/lang/security/audit/crypto/no-null-cipher.yaml +38 -0
- package/rules/java/lang/security/audit/crypto/no-static-initialization-vector.yaml +50 -0
- package/rules/java/lang/security/audit/crypto/rsa-no-padding.yaml +35 -0
- package/rules/java/lang/security/audit/crypto/ssl/avoid-implementing-custom-digests.yaml +36 -0
- package/rules/java/lang/security/audit/crypto/ssl/defaulthttpclient-is-deprecated.yaml +35 -0
- package/rules/java/lang/security/audit/crypto/ssl/insecure-hostname-verifier.yaml +44 -0
- package/rules/java/lang/security/audit/crypto/ssl/insecure-trust-manager.yaml +58 -0
- package/rules/java/lang/security/audit/crypto/unencrypted-socket.yaml +37 -0
- package/rules/java/lang/security/audit/crypto/use-of-aes-ecb.yaml +32 -0
- package/rules/java/lang/security/audit/crypto/use-of-blowfish.yaml +32 -0
- package/rules/java/lang/security/audit/crypto/use-of-default-aes.yaml +62 -0
- package/rules/java/lang/security/audit/crypto/use-of-md5-digest-utils.yaml +41 -0
- package/rules/java/lang/security/audit/crypto/use-of-md5.yaml +37 -0
- package/rules/java/lang/security/audit/crypto/use-of-rc2.yaml +32 -0
- package/rules/java/lang/security/audit/crypto/use-of-rc4.yaml +32 -0
- package/rules/java/lang/security/audit/crypto/use-of-sha1.yaml +43 -0
- package/rules/java/lang/security/audit/crypto/use-of-sha224.yaml +48 -0
- package/rules/java/lang/security/audit/crypto/weak-random.yaml +31 -0
- package/rules/java/lang/security/audit/crypto/weak-rsa.yaml +38 -0
- package/rules/java/lang/security/audit/dangerous-groovy-shell.yaml +46 -0
- package/rules/java/lang/security/audit/el-injection.yaml +137 -0
- package/rules/java/lang/security/audit/formatted-sql-string.yaml +95 -0
- package/rules/java/lang/security/audit/http-response-splitting.yaml +44 -0
- package/rules/java/lang/security/audit/insecure-smtp-connection.yaml +34 -0
- package/rules/java/lang/security/audit/java-reverse-shell.yaml +43 -0
- package/rules/java/lang/security/audit/jdbc-sql-formatted-string.yaml +120 -0
- package/rules/java/lang/security/audit/ldap-entry-poisoning.yaml +41 -0
- package/rules/java/lang/security/audit/ldap-injection.yaml +82 -0
- package/rules/java/lang/security/audit/md5-used-as-password.yaml +44 -0
- package/rules/java/lang/security/audit/object-deserialization.yaml +34 -0
- package/rules/java/lang/security/audit/ognl-injection.yaml +839 -0
- package/rules/java/lang/security/audit/overly-permissive-file-permission.yaml +49 -0
- package/rules/java/lang/security/audit/permissive-cors.yaml +77 -0
- package/rules/java/lang/security/audit/script-engine-injection.yaml +66 -0
- package/rules/java/lang/security/audit/sqli/hibernate-sqli.yaml +90 -0
- package/rules/java/lang/security/audit/sqli/jdbc-sqli.yaml +63 -0
- package/rules/java/lang/security/audit/sqli/jdo-sqli.yaml +96 -0
- package/rules/java/lang/security/audit/sqli/jpa-sqli.yaml +63 -0
- package/rules/java/lang/security/audit/sqli/tainted-sql-from-http-request.yaml +78 -0
- package/rules/java/lang/security/audit/sqli/turbine-sqli.yaml +95 -0
- package/rules/java/lang/security/audit/sqli/vertx-sqli.yaml +70 -0
- package/rules/java/lang/security/audit/tainted-cmd-from-http-request.yaml +74 -0
- package/rules/java/lang/security/audit/tainted-env-from-http-request.yaml +46 -0
- package/rules/java/lang/security/audit/tainted-ldapi-from-http-request.yaml +42 -0
- package/rules/java/lang/security/audit/tainted-session-from-http-request.yaml +70 -0
- package/rules/java/lang/security/audit/tainted-xpath-from-http-request.yaml +38 -0
- package/rules/java/lang/security/audit/unsafe-reflection.yaml +39 -0
- package/rules/java/lang/security/audit/unvalidated-redirect.yaml +127 -0
- package/rules/java/lang/security/audit/url-rewriting.yaml +82 -0
- package/rules/java/lang/security/audit/weak-ssl-context.yaml +34 -0
- package/rules/java/lang/security/audit/xml-decoder.yaml +53 -0
- package/rules/java/lang/security/audit/xss/jsf/autoescape-disabled.yaml +29 -0
- package/rules/java/lang/security/audit/xss/jsp/no-scriptlets.yaml +31 -0
- package/rules/java/lang/security/audit/xss/jsp/use-escapexml.yaml +33 -0
- package/rules/java/lang/security/audit/xss/jsp/use-jstl-escaping.yaml +34 -0
- package/rules/java/lang/security/audit/xss/no-direct-response-writer.yaml +74 -0
- package/rules/java/lang/security/audit/xssrequestwrapper-is-insecure.yaml +40 -0
- package/rules/java/lang/security/audit/xxe/documentbuilderfactory-disallow-doctype-decl-false.yaml +74 -0
- package/rules/java/lang/security/audit/xxe/documentbuilderfactory-disallow-doctype-decl-missing.yaml +162 -0
- package/rules/java/lang/security/audit/xxe/documentbuilderfactory-external-general-entities-true.yaml +38 -0
- package/rules/java/lang/security/audit/xxe/documentbuilderfactory-external-parameter-entities-true.yaml +38 -0
- package/rules/java/lang/security/audit/xxe/saxparserfactory-disallow-doctype-decl-missing.yaml +165 -0
- package/rules/java/lang/security/audit/xxe/transformerfactory-dtds-not-disabled.yaml +191 -0
- package/rules/java/lang/security/do-privileged-use.yaml +35 -0
- package/rules/java/lang/security/httpservlet-path-traversal.yaml +64 -0
- package/rules/java/lang/security/insecure-jms-deserialization.yaml +50 -0
- package/rules/java/lang/security/jackson-unsafe-deserialization.yaml +74 -0
- package/rules/java/lang/security/java-pattern-from-string-parameter.yaml +37 -0
- package/rules/java/lang/security/servletresponse-writer-xss.yaml +40 -0
- package/rules/java/lang/security/use-snakeyaml-constructor.yaml +34 -0
- package/rules/java/lang/security/xmlinputfactory-external-entities-enabled.yaml +44 -0
- package/rules/java/lang/security/xmlinputfactory-possible-xxe.yaml +65 -0
- package/rules/java/mongodb/security/injection/audit/mongodb-nosqli.yaml +70 -0
- package/rules/java/rmi/security/server-dangerous-class-deserialization.yaml +38 -0
- package/rules/java/rmi/security/server-dangerous-object-deserialization.yaml +72 -0
- package/rules/java/servlets/security/cookie-issecure-false.yaml +37 -0
- package/rules/java/servlets/security/cookie-setSecure.yaml +42 -0
- package/rules/java/servlets/security/security-constraint-http-method.yaml +31 -0
- package/rules/java/spring/security/audit/spel-injection.yaml +101 -0
- package/rules/java/spring/security/audit/spring-actuator-fully-enabled-yaml.test.yaml +10 -0
- package/rules/java/spring/security/audit/spring-actuator-fully-enabled-yaml.yaml +40 -0
- package/rules/java/spring/security/audit/spring-actuator-fully-enabled.yaml +32 -0
- package/rules/java/spring/security/audit/spring-actuator-non-health-enabled-yaml.test.yaml +13 -0
- package/rules/java/spring/security/audit/spring-actuator-non-health-enabled-yaml.yaml +43 -0
- package/rules/java/spring/security/audit/spring-actuator-non-health-enabled.yaml +34 -0
- package/rules/java/spring/security/audit/spring-csrf-disabled.yaml +31 -0
- package/rules/java/spring/security/audit/spring-jsp-eval.yaml +29 -0
- package/rules/java/spring/security/audit/spring-sqli.yaml +68 -0
- package/rules/java/spring/security/audit/spring-unvalidated-redirect.yaml +51 -0
- package/rules/java/spring/security/injection/tainted-file-path.yaml +77 -0
- package/rules/java/spring/security/injection/tainted-html-string.yaml +107 -0
- package/rules/java/spring/security/injection/tainted-sql-string.yaml +90 -0
- package/rules/java/spring/security/injection/tainted-system-command.yaml +105 -0
- package/rules/java/spring/security/injection/tainted-url-host.yaml +85 -0
- package/rules/java/spring/security/unrestricted-request-mapping.yaml +39 -0
- package/rules/javascript/ajv/security/audit/ajv-allerrors-true.yaml +33 -0
- package/rules/javascript/angular/security/detect-angular-element-methods.yaml +64 -0
- package/rules/javascript/angular/security/detect-angular-element-taint.yaml +83 -0
- package/rules/javascript/angular/security/detect-angular-open-redirect.yaml +38 -0
- package/rules/javascript/angular/security/detect-angular-resource-loading.yaml +37 -0
- package/rules/javascript/angular/security/detect-angular-sce-disabled.yaml +31 -0
- package/rules/javascript/angular/security/detect-angular-trust-as-css.yaml +39 -0
- package/rules/javascript/angular/security/detect-angular-trust-as-html-method.yaml +39 -0
- package/rules/javascript/angular/security/detect-angular-trust-as-js-method.yaml +39 -0
- package/rules/javascript/angular/security/detect-angular-trust-as-method.yaml +39 -0
- package/rules/javascript/angular/security/detect-angular-trust-as-resourceurl-method.yaml +39 -0
- package/rules/javascript/angular/security/detect-angular-trust-as-url-method.yaml +39 -0
- package/rules/javascript/angular/security/detect-third-party-angular-translate.yaml +36 -0
- package/rules/javascript/apollo/security/apollo-axios-ssrf.yaml +47 -0
- package/rules/javascript/argon2/security/unsafe-argon2-config.yaml +47 -0
- package/rules/javascript/audit/detect-replaceall-sanitization.yaml +42 -0
- package/rules/javascript/aws-lambda/security/detect-child-process.yaml +67 -0
- package/rules/javascript/aws-lambda/security/dynamodb-request-object.yaml +70 -0
- package/rules/javascript/aws-lambda/security/knex-sqli.yaml +65 -0
- package/rules/javascript/aws-lambda/security/mysql-sqli.yaml +76 -0
- package/rules/javascript/aws-lambda/security/pg-sqli.yaml +63 -0
- package/rules/javascript/aws-lambda/security/sequelize-sqli.yaml +63 -0
- package/rules/javascript/aws-lambda/security/tainted-eval.yaml +52 -0
- package/rules/javascript/aws-lambda/security/tainted-html-response.yaml +52 -0
- package/rules/javascript/aws-lambda/security/tainted-html-string.yaml +72 -0
- package/rules/javascript/aws-lambda/security/tainted-sql-string.yaml +69 -0
- package/rules/javascript/aws-lambda/security/vm-runincontext-injection.yaml +68 -0
- package/rules/javascript/bluebird/security/audit/tofastproperties-code-execution.yaml +44 -0
- package/rules/javascript/browser/security/dom-based-xss.yaml +34 -0
- package/rules/javascript/browser/security/eval-detected.yaml +35 -0
- package/rules/javascript/browser/security/insecure-document-method.yaml +40 -0
- package/rules/javascript/browser/security/insecure-innerhtml.yaml +32 -0
- package/rules/javascript/browser/security/insufficient-postmessage-origin-validation.yaml +51 -0
- package/rules/javascript/browser/security/open-redirect-from-function.yaml +58 -0
- package/rules/javascript/browser/security/open-redirect.yaml +95 -0
- package/rules/javascript/browser/security/raw-html-concat.yaml +167 -0
- package/rules/javascript/browser/security/raw-html-join.yaml +43 -0
- package/rules/javascript/browser/security/wildcard-postmessage-configuration.yaml +26 -0
- package/rules/javascript/chrome-remote-interface/security/audit/chrome-remote-interface-compilescript-injection.yaml +55 -0
- package/rules/javascript/deno/security/audit/deno-dangerous-run.yaml +47 -0
- package/rules/javascript/express/security/audit/express-check-csurf-middleware-usage.yaml +50 -0
- package/rules/javascript/express/security/audit/express-check-directory-listing.yaml +54 -0
- package/rules/javascript/express/security/audit/express-cookie-settings.yaml +363 -0
- package/rules/javascript/express/security/audit/express-detect-notevil-usage.yaml +55 -0
- package/rules/javascript/express/security/audit/express-jwt-not-revoked.yaml +44 -0
- package/rules/javascript/express/security/audit/express-libxml-noent.yaml +91 -0
- package/rules/javascript/express/security/audit/express-libxml-vm-noent.yaml +53 -0
- package/rules/javascript/express/security/audit/express-open-redirect.yaml +114 -0
- package/rules/javascript/express/security/audit/express-path-join-resolve-traversal.yaml +97 -0
- package/rules/javascript/express/security/audit/express-res-sendfile.yaml +76 -0
- package/rules/javascript/express/security/audit/express-session-hardcoded-secret.yaml +57 -0
- package/rules/javascript/express/security/audit/express-ssrf.yaml +195 -0
- package/rules/javascript/express/security/audit/express-third-party-object-deserialization.yaml +90 -0
- package/rules/javascript/express/security/audit/express-xml2json-xxe-event.yaml +73 -0
- package/rules/javascript/express/security/audit/possible-user-input-redirect.yaml +42 -0
- package/rules/javascript/express/security/audit/remote-property-injection.yaml +75 -0
- package/rules/javascript/express/security/audit/res-render-injection.yaml +69 -0
- package/rules/javascript/express/security/audit/xss/direct-response-write.yaml +239 -0
- package/rules/javascript/express/security/audit/xss/ejs/explicit-unescape.yaml +38 -0
- package/rules/javascript/express/security/audit/xss/ejs/var-in-href.yaml +38 -0
- package/rules/javascript/express/security/audit/xss/ejs/var-in-script-src.yaml +43 -0
- package/rules/javascript/express/security/audit/xss/ejs/var-in-script-tag.yaml +43 -0
- package/rules/javascript/express/security/audit/xss/mustache/escape-function-overwrite.yaml +38 -0
- package/rules/javascript/express/security/audit/xss/mustache/explicit-unescape.yaml +40 -0
- package/rules/javascript/express/security/audit/xss/mustache/var-in-script-tag.yaml +42 -0
- package/rules/javascript/express/security/audit/xss/pug/and-attributes.yaml +34 -0
- package/rules/javascript/express/security/audit/xss/pug/explicit-unescape.yaml +37 -0
- package/rules/javascript/express/security/audit/xss/pug/var-in-href.yaml +37 -0
- package/rules/javascript/express/security/audit/xss/pug/var-in-script-tag.yaml +44 -0
- package/rules/javascript/express/security/cors-misconfiguration.yaml +73 -0
- package/rules/javascript/express/security/express-data-exfiltration.yaml +61 -0
- package/rules/javascript/express/security/express-expat-xxe.yaml +90 -0
- package/rules/javascript/express/security/express-insecure-template-usage.yaml +180 -0
- package/rules/javascript/express/security/express-jwt-hardcoded-secret.yaml +56 -0
- package/rules/javascript/express/security/express-phantom-injection.yaml +76 -0
- package/rules/javascript/express/security/express-puppeteer-injection.yaml +79 -0
- package/rules/javascript/express/security/express-sandbox-injection.yaml +74 -0
- package/rules/javascript/express/security/express-vm-injection.yaml +74 -0
- package/rules/javascript/express/security/express-vm2-injection.yaml +84 -0
- package/rules/javascript/express/security/express-wkhtml-injection.yaml +127 -0
- package/rules/javascript/express/security/express-xml2json-xxe.yaml +81 -0
- package/rules/javascript/express/security/injection/raw-html-format.yaml +93 -0
- package/rules/javascript/express/security/injection/tainted-sql-string.yaml +74 -0
- package/rules/javascript/express/security/require-request.yaml +66 -0
- package/rules/javascript/express/security/x-frame-options-misconfiguration.yaml +73 -0
- package/rules/javascript/fbjs/security/audit/insecure-createnodesfrommarkup.yaml +33 -0
- package/rules/javascript/grpc/security/grpc-nodejs-insecure-connection.yaml +49 -0
- package/rules/javascript/intercom/security/audit/intercom-settings-user-identifier-without-user-hash.yaml +49 -0
- package/rules/javascript/jose/security/audit/jose-exposed-data.yaml +49 -0
- package/rules/javascript/jose/security/jwt-hardcode.yaml +73 -0
- package/rules/javascript/jose/security/jwt-none-alg.yaml +55 -0
- package/rules/javascript/jquery/security/audit/jquery-insecure-method.yaml +53 -0
- package/rules/javascript/jquery/security/audit/jquery-insecure-selector.yaml +86 -0
- package/rules/javascript/jquery/security/audit/prohibit-jquery-html.yaml +45 -0
- package/rules/javascript/jsonwebtoken/security/audit/jwt-decode-without-verify.yaml +46 -0
- package/rules/javascript/jsonwebtoken/security/audit/jwt-exposed-data.yaml +41 -0
- package/rules/javascript/jsonwebtoken/security/jwt-hardcode.yaml +71 -0
- package/rules/javascript/jsonwebtoken/security/jwt-none-alg.yaml +40 -0
- package/rules/javascript/jwt-simple/security/jwt-simple-noverify.yaml +48 -0
- package/rules/javascript/lang/best-practice/assigned-undefined.yaml +18 -0
- package/rules/javascript/lang/best-practice/lazy-load-module.yaml +24 -0
- package/rules/javascript/lang/best-practice/leftover_debugging.yaml +50 -0
- package/rules/javascript/lang/best-practice/zlib-async-loop.yaml +41 -0
- package/rules/javascript/lang/correctness/missing-template-string-indicator.yaml +18 -0
- package/rules/javascript/lang/correctness/no-replaceall.yaml +18 -0
- package/rules/javascript/lang/correctness/no-stringify-keys.yaml +29 -0
- package/rules/javascript/lang/correctness/useless-assign.yaml +18 -0
- package/rules/javascript/lang/correctness/useless-eqeq.yaml +21 -0
- package/rules/javascript/lang/security/audit/code-string-concat.yaml +90 -0
- package/rules/javascript/lang/security/audit/dangerous-spawn-shell.yaml +67 -0
- package/rules/javascript/lang/security/audit/detect-non-literal-fs-filename.yaml +272 -0
- package/rules/javascript/lang/security/audit/detect-non-literal-regexp.yaml +45 -0
- package/rules/javascript/lang/security/audit/detect-non-literal-require.yaml +34 -0
- package/rules/javascript/lang/security/audit/detect-redos.yaml +43 -0
- package/rules/javascript/lang/security/audit/hardcoded-hmac-key.yaml +39 -0
- package/rules/javascript/lang/security/audit/incomplete-sanitization.yaml +32 -0
- package/rules/javascript/lang/security/audit/md5-used-as-password.yaml +40 -0
- package/rules/javascript/lang/security/audit/path-traversal/path-join-resolve-traversal.yaml +75 -0
- package/rules/javascript/lang/security/audit/prototype-pollution/prototype-pollution-assignment.yaml +74 -0
- package/rules/javascript/lang/security/audit/prototype-pollution/prototype-pollution-loop.yaml +71 -0
- package/rules/javascript/lang/security/audit/spawn-shell-true.yaml +50 -0
- package/rules/javascript/lang/security/audit/sqli/node-knex-sqli.yaml +90 -0
- package/rules/javascript/lang/security/audit/sqli/node-mssql-sqli.yaml +56 -0
- package/rules/javascript/lang/security/audit/sqli/node-mysql-sqli.yaml +72 -0
- package/rules/javascript/lang/security/audit/sqli/node-postgres-sqli.yaml +63 -0
- package/rules/javascript/lang/security/audit/unknown-value-with-script-tag.yaml +37 -0
- package/rules/javascript/lang/security/audit/unsafe-dynamic-method.yaml +55 -0
- package/rules/javascript/lang/security/audit/unsafe-formatstring.yaml +51 -0
- package/rules/javascript/lang/security/detect-buffer-noassert.yaml +32 -0
- package/rules/javascript/lang/security/detect-child-process.yaml +79 -0
- package/rules/javascript/lang/security/detect-disable-mustache-escape.yaml +27 -0
- package/rules/javascript/lang/security/detect-eval-with-expression.yaml +88 -0
- package/rules/javascript/lang/security/detect-insecure-websocket.yaml +32 -0
- package/rules/javascript/lang/security/detect-no-csrf-before-method-override.yaml +35 -0
- package/rules/javascript/lang/security/detect-pseudoRandomBytes.yaml +32 -0
- package/rules/javascript/lang/security/html-in-template-string.yaml +36 -0
- package/rules/javascript/lang/security/insecure-object-assign.yaml +33 -0
- package/rules/javascript/lang/security/spawn-git-clone.yaml +40 -0
- package/rules/javascript/monaco-editor/security/audit/monaco-hover-htmlsupport.yaml +47 -0
- package/rules/javascript/node-crypto/security/aead-no-final.yaml +38 -0
- package/rules/javascript/node-crypto/security/create-de-cipher-no-iv.yaml +31 -0
- package/rules/javascript/node-crypto/security/gcm-no-tag-length.yaml +34 -0
- package/rules/javascript/node-expat/security/audit/expat-xxe.yaml +86 -0
- package/rules/javascript/passport-jwt/security/passport-hardcode.yaml +107 -0
- package/rules/javascript/phantom/security/audit/phantom-injection.yaml +42 -0
- package/rules/javascript/playwright/security/audit/playwright-addinitscript-code-injection.yaml +37 -0
- package/rules/javascript/playwright/security/audit/playwright-evaluate-arg-injection.yaml +37 -0
- package/rules/javascript/playwright/security/audit/playwright-evaluate-code-injection.yaml +44 -0
- package/rules/javascript/playwright/security/audit/playwright-exposed-chrome-devtools.yaml +35 -0
- package/rules/javascript/playwright/security/audit/playwright-goto-injection.yaml +38 -0
- package/rules/javascript/playwright/security/audit/playwright-setcontent-injection.yaml +39 -0
- package/rules/javascript/puppeteer/security/audit/puppeteer-evaluate-arg-injection.yaml +38 -0
- package/rules/javascript/puppeteer/security/audit/puppeteer-evaluate-code-injection.yaml +44 -0
- package/rules/javascript/puppeteer/security/audit/puppeteer-exposed-chrome-devtools.yaml +35 -0
- package/rules/javascript/puppeteer/security/audit/puppeteer-goto-injection.yaml +38 -0
- package/rules/javascript/puppeteer/security/audit/puppeteer-setcontent-injection.yaml +38 -0
- package/rules/javascript/react/correctness/hooks/set-state-no-op.yaml +16 -0
- package/rules/javascript/sandbox/security/audit/sandbox-code-injection.yaml +46 -0
- package/rules/javascript/sax/security/audit/sax-xxe.yaml +41 -0
- package/rules/javascript/sequelize/security/audit/sequelize-enforce-tls.yaml +60 -0
- package/rules/javascript/sequelize/security/audit/sequelize-injection-express.yaml +82 -0
- package/rules/javascript/sequelize/security/audit/sequelize-raw-query.yaml +55 -0
- package/rules/javascript/sequelize/security/audit/sequelize-tls-disabled-cert-validation.yaml +52 -0
- package/rules/javascript/sequelize/security/audit/sequelize-weak-tls-version.yaml +56 -0
- package/rules/javascript/serialize-javascript/security/audit/unsafe-serialize-javascript.yaml +32 -0
- package/rules/javascript/shelljs/security/shelljs-exec-injection.yaml +38 -0
- package/rules/javascript/thenify/security/audit/multiargs-code-execution.yaml +46 -0
- package/rules/javascript/vm2/security/audit/vm2-code-injection.yaml +66 -0
- package/rules/javascript/vm2/security/audit/vm2-context-injection.yaml +350 -0
- package/rules/javascript/vue/security/audit/xss/templates/avoid-v-html.yaml +31 -0
- package/rules/javascript/wkhtmltoimage/security/audit/wkhtmltoimage-injection.yaml +36 -0
- package/rules/javascript/wkhtmltopdf/security/audit/wkhtmltopdf-injection.yaml +35 -0
- package/rules/javascript/xml2json/security/audit/xml2json-xxe.yaml +48 -0
- package/rules/php/doctrine/security/audit/doctrine-dbal-dangerous-query.yaml +43 -0
- package/rules/php/doctrine/security/audit/doctrine-orm-dangerous-query.yaml +71 -0
- package/rules/php/lang/correctness/empty-with-boolean-expression.yaml +16 -0
- package/rules/php/lang/security/assert-use.yaml +42 -0
- package/rules/php/lang/security/audit/assert-use-audit.yaml +30 -0
- package/rules/php/lang/security/audit/openssl-decrypt-validate.yaml +75 -0
- package/rules/php/lang/security/audit/sha224-hash.yaml +33 -0
- package/rules/php/lang/security/backticks-use.yaml +25 -0
- package/rules/php/lang/security/base-convert-loses-precision.yaml +50 -0
- package/rules/php/lang/security/curl-ssl-verifypeer-off.yaml +34 -0
- package/rules/php/lang/security/deserialization.yaml +36 -0
- package/rules/php/lang/security/eval-use.yaml +29 -0
- package/rules/php/lang/security/exec-use.yaml +29 -0
- package/rules/php/lang/security/file-inclusion.yaml +52 -0
- package/rules/php/lang/security/ftp-use.yaml +29 -0
- package/rules/php/lang/security/injection/echoed-request.yaml +63 -0
- package/rules/php/lang/security/injection/printed-request.yaml +63 -0
- package/rules/php/lang/security/injection/tainted-callable.yaml +116 -0
- package/rules/php/lang/security/injection/tainted-exec.yaml +52 -0
- package/rules/php/lang/security/injection/tainted-filename.yaml +176 -0
- package/rules/php/lang/security/injection/tainted-object-instantiation.yaml +37 -0
- package/rules/php/lang/security/injection/tainted-session.yaml +76 -0
- package/rules/php/lang/security/injection/tainted-sql-string.yaml +62 -0
- package/rules/php/lang/security/injection/tainted-url-host.yaml +65 -0
- package/rules/php/lang/security/ldap-bind-without-password.yaml +34 -0
- package/rules/php/lang/security/mb-ereg-replace-eval.yaml +29 -0
- package/rules/php/lang/security/mcrypt-use.yaml +26 -0
- package/rules/php/lang/security/md5-loose-equality.yaml +48 -0
- package/rules/php/lang/security/md5-used-as-password.yaml +42 -0
- package/rules/php/lang/security/openssl-cbc-static-iv.yaml +31 -0
- package/rules/php/lang/security/php-permissive-cors.yaml +33 -0
- package/rules/php/lang/security/php-ssrf.yaml +50 -0
- package/rules/php/lang/security/phpinfo-use.yaml +25 -0
- package/rules/php/lang/security/redirect-to-request-uri.yaml +36 -0
- package/rules/php/lang/security/tainted-exec.yaml +42 -0
- package/rules/php/lang/security/unlink-use.yaml +31 -0
- package/rules/php/lang/security/unserialize-use.yaml +31 -0
- package/rules/php/lang/security/weak-crypto.yaml +34 -0
- package/rules/php/laravel/security/laravel-active-debug-code.yaml +36 -0
- package/rules/php/laravel/security/laravel-api-route-sql-injection.yaml +41 -0
- package/rules/php/laravel/security/laravel-blade-form-missing-csrf.yaml +68 -0
- package/rules/php/laravel/security/laravel-cookie-http-only.yaml +51 -0
- package/rules/php/laravel/security/laravel-cookie-long-timeout.yaml +45 -0
- package/rules/php/laravel/security/laravel-cookie-null-domain.yaml +51 -0
- package/rules/php/laravel/security/laravel-cookie-same-site.yaml +56 -0
- package/rules/php/laravel/security/laravel-cookie-secure-set.yaml +51 -0
- package/rules/php/laravel/security/laravel-dangerous-model-construction.yaml +33 -0
- package/rules/php/laravel/security/laravel-sql-injection.yaml +132 -0
- package/rules/php/laravel/security/laravel-unsafe-validator.yaml +65 -0
- package/rules/php/symfony/security/audit/symfony-csrf-protection-disabled.yaml +40 -0
- package/rules/php/symfony/security/audit/symfony-non-literal-redirect.yaml +30 -0
- package/rules/php/symfony/security/audit/symfony-permissive-cors.yaml +46 -0
- package/rules/php/wordpress-plugins/security/audit/wp-ajax-no-auth-and-auth-hooks-audit.yaml +34 -0
- package/rules/php/wordpress-plugins/security/audit/wp-authorisation-checks-audit.yaml +32 -0
- package/rules/php/wordpress-plugins/security/audit/wp-code-execution-audit.yaml +33 -0
- package/rules/php/wordpress-plugins/security/audit/wp-command-execution-audit.yaml +34 -0
- package/rules/php/wordpress-plugins/security/audit/wp-csrf-audit.yaml +29 -0
- package/rules/php/wordpress-plugins/security/audit/wp-file-download-audit.yaml +33 -0
- package/rules/php/wordpress-plugins/security/audit/wp-file-inclusion-audit.yaml +39 -0
- package/rules/php/wordpress-plugins/security/audit/wp-file-manipulation-audit.yaml +35 -0
- package/rules/php/wordpress-plugins/security/audit/wp-open-redirect-audit.yaml +30 -0
- package/rules/php/wordpress-plugins/security/audit/wp-php-object-injection-audit.yaml +33 -0
- package/rules/php/wordpress-plugins/security/audit/wp-sql-injection-audit.yaml +43 -0
- package/rules/php/wordpress-plugins/security/audit/wp-ssrf-audit.yaml +48 -0
- package/rules/prompt-injection.security.yaml +4 -0
- package/rules/python/airflow/security/audit/formatted-string-bashoperator.yaml +59 -0
- package/rules/python/attr/correctness/mutable-initializer.yaml +36 -0
- package/rules/python/aws-lambda/security/dangerous-asyncio-create-exec.yaml +59 -0
- package/rules/python/aws-lambda/security/dangerous-asyncio-exec.yaml +54 -0
- package/rules/python/aws-lambda/security/dangerous-asyncio-shell.yaml +51 -0
- package/rules/python/aws-lambda/security/dangerous-spawn-process.yaml +67 -0
- package/rules/python/aws-lambda/security/dangerous-subprocess-use.yaml +52 -0
- package/rules/python/aws-lambda/security/dangerous-system-call.yaml +52 -0
- package/rules/python/aws-lambda/security/dynamodb-filter-injection.yaml +56 -0
- package/rules/python/aws-lambda/security/mysql-sqli.yaml +53 -0
- package/rules/python/aws-lambda/security/psycopg-sqli.yaml +52 -0
- package/rules/python/aws-lambda/security/pymssql-sqli.yaml +46 -0
- package/rules/python/aws-lambda/security/pymysql-sqli.yaml +50 -0
- package/rules/python/aws-lambda/security/sqlalchemy-sqli.yaml +46 -0
- package/rules/python/aws-lambda/security/tainted-code-exec.yaml +43 -0
- package/rules/python/aws-lambda/security/tainted-html-response.yaml +41 -0
- package/rules/python/aws-lambda/security/tainted-html-string.yaml +62 -0
- package/rules/python/aws-lambda/security/tainted-pickle-deserialization.yaml +51 -0
- package/rules/python/aws-lambda/security/tainted-sql-string.yaml +54 -0
- package/rules/python/bokeh/maintainability/deprecated/deprecated_apis.yaml +15 -0
- package/rules/python/boto3/security/hardcoded-token.yaml +53 -0
- package/rules/python/click/best-practice/echo-style.yaml +10 -0
- package/rules/python/correctness/check-is-none-explicitly.yaml +19 -0
- package/rules/python/correctness/socket-shutdown-close.yaml +32 -0
- package/rules/python/correctness/suppressed-exception-handling-finally-break.yaml +46 -0
- package/rules/python/cryptography/security/empty-aes-key.yaml +32 -0
- package/rules/python/cryptography/security/insecure-cipher-algorithms-arc4.yaml +41 -0
- package/rules/python/cryptography/security/insecure-cipher-algorithms-blowfish.yaml +40 -0
- package/rules/python/cryptography/security/insecure-cipher-algorithms.yaml +42 -0
- package/rules/python/cryptography/security/insecure-cipher-mode-ecb.yaml +34 -0
- package/rules/python/cryptography/security/insecure-hash-algorithms-md5.yaml +41 -0
- package/rules/python/cryptography/security/insecure-hash-algorithms.yaml +43 -0
- package/rules/python/cryptography/security/insufficient-dsa-key-size.yaml +40 -0
- package/rules/python/cryptography/security/insufficient-ec-key-size.yaml +40 -0
- package/rules/python/cryptography/security/insufficient-rsa-key-size.yaml +39 -0
- package/rules/python/cryptography/security/mode-without-authentication.yaml +47 -0
- package/rules/python/distributed/security.yaml +35 -0
- package/rules/python/django/best-practice/json_response.yaml +17 -0
- package/rules/python/django/best-practice/upsell_django_environ.yaml +26 -0
- package/rules/python/django/best-practice/use-onetoonefield.yaml +16 -0
- package/rules/python/django/compatibility/django-2_0-compat.yaml +58 -0
- package/rules/python/django/correctness/model-save.yaml +24 -0
- package/rules/python/django/correctness/nontext-field-must-set-null-true.yaml +31 -0
- package/rules/python/django/correctness/string-field-null-checks.yaml +41 -0
- package/rules/python/django/correctness/use-decimalfield-for-money.yaml +17 -0
- package/rules/python/django/maintainability/duplicate-path-assignment.yaml +71 -0
- package/rules/python/django/performance/access-foreign-keys.yaml +22 -0
- package/rules/python/django/performance/upsell-count.yaml +15 -0
- package/rules/python/django/performance/upsell_earliest_latest.yaml +15 -0
- package/rules/python/django/security/audit/avoid-insecure-deserialization.yaml +66 -0
- package/rules/python/django/security/audit/avoid-mark-safe.yaml +34 -0
- package/rules/python/django/security/audit/csrf-exempt.yaml +29 -0
- package/rules/python/django/security/audit/custom-expression-as-sql.yaml +29 -0
- package/rules/python/django/security/audit/django-rest-framework/missing-throttle-config.yaml +37 -0
- package/rules/python/django/security/audit/extends-custom-expression.yaml +145 -0
- package/rules/python/django/security/audit/query-set-extra.yaml +34 -0
- package/rules/python/django/security/audit/raw-query.yaml +35 -0
- package/rules/python/django/security/audit/secure-cookies.yaml +59 -0
- package/rules/python/django/security/audit/templates/debug-template-tag.yaml +30 -0
- package/rules/python/django/security/audit/unvalidated-password.yaml +54 -0
- package/rules/python/django/security/audit/xss/class-extends-safestring.yaml +41 -0
- package/rules/python/django/security/audit/xss/context-autoescape-off.yaml +43 -0
- package/rules/python/django/security/audit/xss/direct-use-of-httpresponse.yaml +59 -0
- package/rules/python/django/security/audit/xss/filter-with-is-safe.yaml +38 -0
- package/rules/python/django/security/audit/xss/formathtml-fstring-parameter.yaml +35 -0
- package/rules/python/django/security/audit/xss/global-autoescape-off.yaml +40 -0
- package/rules/python/django/security/audit/xss/html-magic-method.yaml +39 -0
- package/rules/python/django/security/audit/xss/html-safe.yaml +39 -0
- package/rules/python/django/security/audit/xss/template-autoescape-off.yaml +33 -0
- package/rules/python/django/security/audit/xss/template-blocktranslate-no-escape.yaml +47 -0
- package/rules/python/django/security/audit/xss/template-translate-as-no-escape.yaml +130 -0
- package/rules/python/django/security/audit/xss/template-var-unescaped-with-safeseq.yaml +34 -0
- package/rules/python/django/security/django-no-csrf-token.yaml +34 -0
- package/rules/python/django/security/django-using-request-post-after-is-valid.yaml +27 -0
- package/rules/python/django/security/globals-as-template-context.yaml +40 -0
- package/rules/python/django/security/hashids-with-django-secret.yaml +28 -0
- package/rules/python/django/security/injection/code/globals-misuse-code-execution.yaml +221 -0
- package/rules/python/django/security/injection/code/user-eval-format-string.yaml +125 -0
- package/rules/python/django/security/injection/code/user-eval.yaml +46 -0
- package/rules/python/django/security/injection/code/user-exec-format-string.yaml +215 -0
- package/rules/python/django/security/injection/code/user-exec.yaml +65 -0
- package/rules/python/django/security/injection/command/command-injection-os-system.yaml +279 -0
- package/rules/python/django/security/injection/command/subprocess-injection.yaml +70 -0
- package/rules/python/django/security/injection/csv-writer-injection.yaml +55 -0
- package/rules/python/django/security/injection/email/xss-html-email-body.yaml +203 -0
- package/rules/python/django/security/injection/email/xss-send-mail-html-message.yaml +241 -0
- package/rules/python/django/security/injection/mass-assignment.yaml +32 -0
- package/rules/python/django/security/injection/open-redirect.yaml +550 -0
- package/rules/python/django/security/injection/path-traversal/path-traversal-file-name.yaml +79 -0
- package/rules/python/django/security/injection/path-traversal/path-traversal-join.yaml +102 -0
- package/rules/python/django/security/injection/path-traversal/path-traversal-open.yaml +441 -0
- package/rules/python/django/security/injection/raw-html-format.yaml +58 -0
- package/rules/python/django/security/injection/reflected-data-httpresponse.yaml +261 -0
- package/rules/python/django/security/injection/reflected-data-httpresponsebadrequest.yaml +255 -0
- package/rules/python/django/security/injection/request-data-fileresponse.yaml +84 -0
- package/rules/python/django/security/injection/request-data-write.yaml +199 -0
- package/rules/python/django/security/injection/sql/sql-injection-extra.yaml +295 -0
- package/rules/python/django/security/injection/sql/sql-injection-rawsql.yaml +295 -0
- package/rules/python/django/security/injection/sql/sql-injection-using-db-cursor-execute.yaml +296 -0
- package/rules/python/django/security/injection/sql/sql-injection-using-raw.yaml +296 -0
- package/rules/python/django/security/injection/ssrf/ssrf-injection-requests.yaml +259 -0
- package/rules/python/django/security/injection/ssrf/ssrf-injection-urllib.yaml +257 -0
- package/rules/python/django/security/injection/tainted-sql-string.yaml +47 -0
- package/rules/python/django/security/injection/tainted-url-host.yaml +70 -0
- package/rules/python/django/security/locals-as-template-context.yaml +40 -0
- package/rules/python/django/security/nan-injection.yaml +45 -0
- package/rules/python/django/security/passwords/password-empty-string.yaml +39 -0
- package/rules/python/django/security/passwords/use-none-for-password-default.yaml +42 -0
- package/rules/python/docker/security/audit/docker-arbitrary-container-run.yaml +38 -0
- package/rules/python/fastapi/security/wildcard-cors.yaml +38 -0
- package/rules/python/flask/best-practice/get-class-method-with-side-effects.yaml +23 -0
- package/rules/python/flask/best-practice/use-jsonify.yaml +32 -0
- package/rules/python/flask/caching/query-string.yaml +45 -0
- package/rules/python/flask/correctness/access-request-in-wrong-handler.yaml +21 -0
- package/rules/python/flask/correctness/same-handler-name.yaml +19 -0
- package/rules/python/flask/maintainability/deprecated/deprecated-apis.yaml +44 -0
- package/rules/python/flask/security/audit/app-run-param-config.yaml +24 -0
- package/rules/python/flask/security/audit/app-run-security-config.yaml +30 -0
- package/rules/python/flask/security/audit/debug-enabled.yaml +28 -0
- package/rules/python/flask/security/audit/directly-returned-format-string.yaml +73 -0
- package/rules/python/flask/security/audit/flask-cors-misconfiguration.yaml +39 -0
- package/rules/python/flask/security/audit/flask-url-for-external-true.yaml +34 -0
- package/rules/python/flask/security/audit/hardcoded-config.yaml +105 -0
- package/rules/python/flask/security/audit/host-header-injection-python.yaml +45 -0
- package/rules/python/flask/security/audit/render-template-string.yaml +23 -0
- package/rules/python/flask/security/audit/secure-set-cookie.yaml +43 -0
- package/rules/python/flask/security/audit/wtf-csrf-disabled.yaml +75 -0
- package/rules/python/flask/security/audit/xss/make-response-with-unknown-content.yaml +54 -0
- package/rules/python/flask/security/dangerous-template-string.yaml +62 -0
- package/rules/python/flask/security/flask-api-method-string-format.yaml +36 -0
- package/rules/python/flask/security/hashids-with-flask-secret.yaml +35 -0
- package/rules/python/flask/security/injection/csv-writer-injection.yaml +73 -0
- package/rules/python/flask/security/injection/flask-injection-sinks.yaml +352 -0
- package/rules/python/flask/security/injection/nan-injection.yaml +42 -0
- package/rules/python/flask/security/injection/os-system-injection.yaml +72 -0
- package/rules/python/flask/security/injection/path-traversal-open.yaml +106 -0
- package/rules/python/flask/security/injection/raw-html-concat.yaml +72 -0
- package/rules/python/flask/security/injection/ssrf-requests.yaml +76 -0
- package/rules/python/flask/security/injection/subprocess-injection.yaml +87 -0
- package/rules/python/flask/security/injection/tainted-sql-string.yaml +57 -0
- package/rules/python/flask/security/injection/tainted-url-host.yaml +78 -0
- package/rules/python/flask/security/injection/user-eval.yaml +66 -0
- package/rules/python/flask/security/injection/user-exec.yaml +66 -0
- package/rules/python/flask/security/insecure-deserialization.yaml +43 -0
- package/rules/python/flask/security/open-redirect.yaml +64 -0
- package/rules/python/flask/security/secure-static-file-serve.yaml +29 -0
- package/rules/python/flask/security/unescaped-template-extension.yaml +55 -0
- package/rules/python/flask/security/unsanitized-input.yaml +47 -0
- package/rules/python/flask/security/xss/audit/direct-use-of-jinja2.yaml +43 -0
- package/rules/python/flask/security/xss/audit/explicit-unescape-with-markup.yaml +40 -0
- package/rules/python/flask/security/xss/audit/template-autoescape-off.yaml +34 -0
- package/rules/python/flask/security/xss/audit/template-unescaped-with-safe.yaml +33 -0
- package/rules/python/flask/security/xss/audit/template-unquoted-attribute-var.yaml +54 -0
- package/rules/python/jinja2/security/audit/autoescape-disabled-false.yaml +34 -0
- package/rules/python/jinja2/security/audit/missing-autoescape-disabled.yaml +33 -0
- package/rules/python/jwt/security/audit/jwt-exposed-data.yaml +32 -0
- package/rules/python/jwt/security/jwt-exposed-credentials.yaml +34 -0
- package/rules/python/jwt/security/jwt-hardcode.yaml +30 -0
- package/rules/python/jwt/security/jwt-none-alg.yaml +33 -0
- package/rules/python/jwt/security/unverified-jwt-decode.yaml +50 -0
- package/rules/python/lang/best-practice/hardcoded-tmp-path.yaml +14 -0
- package/rules/python/lang/best-practice/logging-error-without-handling.yaml +33 -0
- package/rules/python/lang/best-practice/manual-collections-create.yaml +94 -0
- package/rules/python/lang/best-practice/missing-hash-with-eq.yaml +23 -0
- package/rules/python/lang/best-practice/open-never-closed.yaml +95 -0
- package/rules/python/lang/best-practice/pass-body.yaml +30 -0
- package/rules/python/lang/best-practice/pdb.yaml +13 -0
- package/rules/python/lang/best-practice/sleep.yaml +16 -0
- package/rules/python/lang/best-practice/unspecified-open-encoding.yaml +36 -0
- package/rules/python/lang/compatibility/python36.yaml +28 -0
- package/rules/python/lang/compatibility/python37.yaml +192 -0
- package/rules/python/lang/correctness/baseclass-attribute-override.yaml +34 -0
- package/rules/python/lang/correctness/cannot-cache-generators.yaml +17 -0
- package/rules/python/lang/correctness/common-mistakes/default-mutable-dict.yaml +64 -0
- package/rules/python/lang/correctness/common-mistakes/default-mutable-list.yaml +66 -0
- package/rules/python/lang/correctness/common-mistakes/is-comparison-string.yaml +32 -0
- package/rules/python/lang/correctness/common-mistakes/is-not-is-not.yaml +12 -0
- package/rules/python/lang/correctness/common-mistakes/string-concat-in-list.yaml +20 -0
- package/rules/python/lang/correctness/concurrent.yaml +33 -0
- package/rules/python/lang/correctness/dict-modify-iterating.yaml +22 -0
- package/rules/python/lang/correctness/exceptions/exceptions.yaml +21 -0
- package/rules/python/lang/correctness/exit.yaml +19 -0
- package/rules/python/lang/correctness/file-object-redefined-before-close.yaml +22 -0
- package/rules/python/lang/correctness/list-modify-iterating.yaml +34 -0
- package/rules/python/lang/correctness/pdb.yaml +14 -0
- package/rules/python/lang/correctness/pytest-assert_match-after-path-patch.yaml +26 -0
- package/rules/python/lang/correctness/return-in-init.yaml +48 -0
- package/rules/python/lang/correctness/sync-sleep-in-async-code.yaml +18 -0
- package/rules/python/lang/correctness/tempfile/flush.yaml +79 -0
- package/rules/python/lang/correctness/tempfile/mktemp.yaml +13 -0
- package/rules/python/lang/correctness/test-is-missing-assert.yaml +41 -0
- package/rules/python/lang/correctness/unchecked-returns.yaml +23 -0
- package/rules/python/lang/correctness/useless-comparison.yaml +28 -0
- package/rules/python/lang/correctness/useless-eqeq.yaml +27 -0
- package/rules/python/lang/correctness/writing-to-file-in-read-mode.yaml +27 -0
- package/rules/python/lang/maintainability/improper-list-concat.yaml +18 -0
- package/rules/python/lang/maintainability/is-function-without-parentheses.yaml +18 -0
- package/rules/python/lang/maintainability/return.yaml +29 -0
- package/rules/python/lang/maintainability/useless-assign-keyed.yaml +16 -0
- package/rules/python/lang/maintainability/useless-ifelse.yaml +31 -0
- package/rules/python/lang/maintainability/useless-innerfunction.yaml +36 -0
- package/rules/python/lang/maintainability/useless-literal-set.yaml +15 -0
- package/rules/python/lang/maintainability/useless-literal.yaml +18 -0
- package/rules/python/lang/security/audit/conn_recv.yaml +35 -0
- package/rules/python/lang/security/audit/dangerous-annotations-usage.yaml +34 -0
- package/rules/python/lang/security/audit/dangerous-asyncio-create-exec-audit.yaml +62 -0
- package/rules/python/lang/security/audit/dangerous-asyncio-create-exec-tainted-env-args.yaml +110 -0
- package/rules/python/lang/security/audit/dangerous-asyncio-exec-audit.yaml +48 -0
- package/rules/python/lang/security/audit/dangerous-asyncio-exec-tainted-env-args.yaml +95 -0
- package/rules/python/lang/security/audit/dangerous-asyncio-shell-audit.yaml +48 -0
- package/rules/python/lang/security/audit/dangerous-asyncio-shell-tainted-env-args.yaml +96 -0
- package/rules/python/lang/security/audit/dangerous-code-run-audit.yaml +55 -0
- package/rules/python/lang/security/audit/dangerous-code-run-tainted-env-args.yaml +105 -0
- package/rules/python/lang/security/audit/dangerous-os-exec-audit.yaml +57 -0
- package/rules/python/lang/security/audit/dangerous-os-exec-tainted-env-args.yaml +109 -0
- package/rules/python/lang/security/audit/dangerous-spawn-process-audit.yaml +58 -0
- package/rules/python/lang/security/audit/dangerous-spawn-process-tainted-env-args.yaml +112 -0
- package/rules/python/lang/security/audit/dangerous-subinterpreters-run-string-audit.yaml +32 -0
- package/rules/python/lang/security/audit/dangerous-subinterpreters-run-string-tainted-env-args.yaml +81 -0
- package/rules/python/lang/security/audit/dangerous-subprocess-use-audit.yaml +75 -0
- package/rules/python/lang/security/audit/dangerous-subprocess-use-tainted-env-args.yaml +115 -0
- package/rules/python/lang/security/audit/dangerous-system-call-audit.yaml +63 -0
- package/rules/python/lang/security/audit/dangerous-system-call-tainted-env-args.yaml +110 -0
- package/rules/python/lang/security/audit/dangerous-testcapi-run-in-subinterp-audit.yaml +36 -0
- package/rules/python/lang/security/audit/dangerous-testcapi-run-in-subinterp-tainted-env-args.yaml +85 -0
- package/rules/python/lang/security/audit/dynamic-urllib-use-detected.yaml +57 -0
- package/rules/python/lang/security/audit/eval-detected.yaml +35 -0
- package/rules/python/lang/security/audit/exec-detected.yaml +34 -0
- package/rules/python/lang/security/audit/formatted-sql-query.yaml +42 -0
- package/rules/python/lang/security/audit/hardcoded-password-default-argument.yaml +33 -0
- package/rules/python/lang/security/audit/httpsconnection-detected.yaml +33 -0
- package/rules/python/lang/security/audit/insecure-file-permissions.yaml +63 -0
- package/rules/python/lang/security/audit/insecure-transport/ftplib/use-ftp-tls.yaml +40 -0
- package/rules/python/lang/security/audit/insecure-transport/requests/request-session-http-in-with-context.yaml +58 -0
- package/rules/python/lang/security/audit/insecure-transport/requests/request-session-with-http.yaml +56 -0
- package/rules/python/lang/security/audit/insecure-transport/requests/request-with-http.yaml +57 -0
- package/rules/python/lang/security/audit/insecure-transport/ssl/no-set-ciphers.yaml +32 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-openerdirector-open-ftp.yaml +56 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-openerdirector-open.yaml +58 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-request-object-ftp.yaml +36 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-request-object.yaml +39 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-urlopen-ftp.yaml +35 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-urlopen.yaml +37 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-urlopener-open-ftp.yaml +55 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-urlopener-open.yaml +58 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-urlopener-retrieve-ftp.yaml +55 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-urlopener-retrieve.yaml +58 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-urlretrieve-ftp.yaml +35 -0
- package/rules/python/lang/security/audit/insecure-transport/urllib/insecure-urlretrieve.yaml +37 -0
- package/rules/python/lang/security/audit/logging/listeneval.yaml +31 -0
- package/rules/python/lang/security/audit/logging/logger-credential-leak.yaml +37 -0
- package/rules/python/lang/security/audit/mako-templates-detected.yaml +32 -0
- package/rules/python/lang/security/audit/marshal.yaml +34 -0
- package/rules/python/lang/security/audit/md5-used-as-password.yaml +48 -0
- package/rules/python/lang/security/audit/network/bind.yaml +39 -0
- package/rules/python/lang/security/audit/network/disabled-cert-validation.yaml +35 -0
- package/rules/python/lang/security/audit/network/http-not-https-connection.yaml +28 -0
- package/rules/python/lang/security/audit/non-literal-import.yaml +30 -0
- package/rules/python/lang/security/audit/paramiko/paramiko-exec-command.yaml +36 -0
- package/rules/python/lang/security/audit/paramiko-implicit-trust-host-key.yaml +34 -0
- package/rules/python/lang/security/audit/python-reverse-shell.yaml +32 -0
- package/rules/python/lang/security/audit/regex-dos.yaml +34 -0
- package/rules/python/lang/security/audit/sha224-hash.yaml +30 -0
- package/rules/python/lang/security/audit/sqli/aiopg-sqli.yaml +103 -0
- package/rules/python/lang/security/audit/sqli/asyncpg-sqli.yaml +96 -0
- package/rules/python/lang/security/audit/sqli/pg8000-sqli.yaml +90 -0
- package/rules/python/lang/security/audit/sqli/psycopg-sqli.yaml +86 -0
- package/rules/python/lang/security/audit/ssl-wrap-socket-is-deprecated.yaml +27 -0
- package/rules/python/lang/security/audit/subprocess-list-passed-as-string.yaml +43 -0
- package/rules/python/lang/security/audit/subprocess-shell-true.yaml +42 -0
- package/rules/python/lang/security/audit/system-wildcard-detected.yaml +37 -0
- package/rules/python/lang/security/audit/telnetlib.yaml +27 -0
- package/rules/python/lang/security/audit/weak-ssl-version.yaml +43 -0
- package/rules/python/lang/security/dangerous-code-run.yaml +156 -0
- package/rules/python/lang/security/dangerous-globals-use.yaml +54 -0
- package/rules/python/lang/security/dangerous-os-exec.yaml +160 -0
- package/rules/python/lang/security/dangerous-spawn-process.yaml +206 -0
- package/rules/python/lang/security/dangerous-subinterpreters-run-string.yaml +132 -0
- package/rules/python/lang/security/dangerous-subprocess-use.yaml +164 -0
- package/rules/python/lang/security/dangerous-system-call.yaml +164 -0
- package/rules/python/lang/security/dangerous-testcapi-run-in-subinterp.yaml +136 -0
- package/rules/python/lang/security/deserialization/avoid-jsonpickle.yaml +33 -0
- package/rules/python/lang/security/deserialization/avoid-pyyaml-load.yaml +50 -0
- package/rules/python/lang/security/deserialization/avoid-unsafe-ruamel.yaml +32 -0
- package/rules/python/lang/security/deserialization/pickle.yaml +128 -0
- package/rules/python/lang/security/insecure-hash-algorithms-md5.yaml +39 -0
- package/rules/python/lang/security/insecure-hash-algorithms.yaml +40 -0
- package/rules/python/lang/security/insecure-hash-function.yaml +36 -0
- package/rules/python/lang/security/insecure-uuid-version.yaml +34 -0
- package/rules/python/lang/security/unverified-ssl-context.yaml +34 -0
- package/rules/python/lang/security/use-defused-xml-parse.yaml +34 -0
- package/rules/python/lang/security/use-defused-xml.yaml +30 -0
- package/rules/python/lang/security/use-defused-xmlrpc.yaml +31 -0
- package/rules/python/lang/security/use-defusedcsv.yaml +37 -0
- package/rules/python/pycryptodome/security/insecure-cipher-algorithm-blowfish.yaml +38 -0
- package/rules/python/pycryptodome/security/insecure-cipher-algorithm-des.yaml +40 -0
- package/rules/python/pycryptodome/security/insecure-cipher-algorithm-rc2.yaml +38 -0
- package/rules/python/pycryptodome/security/insecure-cipher-algorithm-rc4.yaml +36 -0
- package/rules/python/pycryptodome/security/insecure-cipher-algorithm.yaml +30 -0
- package/rules/python/pycryptodome/security/insecure-hash-algorithm-md2.yaml +40 -0
- package/rules/python/pycryptodome/security/insecure-hash-algorithm-md4.yaml +40 -0
- package/rules/python/pycryptodome/security/insecure-hash-algorithm-md5.yaml +40 -0
- package/rules/python/pycryptodome/security/insecure-hash-algorithm.yaml +33 -0
- package/rules/python/pycryptodome/security/insufficient-dsa-key-size.yaml +40 -0
- package/rules/python/pycryptodome/security/insufficient-rsa-key-size.yaml +40 -0
- package/rules/python/pycryptodome/security/mode-without-authentication.yaml +44 -0
- package/rules/python/pymongo/security/mongodb.yaml +26 -0
- package/rules/python/pyramid/audit/authtkt-cookie-httponly-unsafe-default.yaml +37 -0
- package/rules/python/pyramid/audit/authtkt-cookie-httponly-unsafe-value.yaml +40 -0
- package/rules/python/pyramid/audit/authtkt-cookie-samesite.yaml +35 -0
- package/rules/python/pyramid/audit/authtkt-cookie-secure-unsafe-default.yaml +38 -0
- package/rules/python/pyramid/audit/authtkt-cookie-secure-unsafe-value.yaml +40 -0
- package/rules/python/pyramid/audit/csrf-check-disabled.yaml +42 -0
- package/rules/python/pyramid/audit/csrf-origin-check-disabled-globally.yaml +37 -0
- package/rules/python/pyramid/audit/csrf-origin-check-disabled.yaml +44 -0
- package/rules/python/pyramid/audit/set-cookie-httponly-unsafe-default.yaml +44 -0
- package/rules/python/pyramid/audit/set-cookie-httponly-unsafe-value.yaml +49 -0
- package/rules/python/pyramid/audit/set-cookie-samesite-unsafe-default.yaml +44 -0
- package/rules/python/pyramid/audit/set-cookie-samesite-unsafe-value.yaml +46 -0
- package/rules/python/pyramid/audit/set-cookie-secure-unsafe-default.yaml +44 -0
- package/rules/python/pyramid/audit/set-cookie-secure-unsafe-value.yaml +47 -0
- package/rules/python/pyramid/security/csrf-check-disabled-globally.yaml +36 -0
- package/rules/python/pyramid/security/direct-use-of-response.yaml +54 -0
- package/rules/python/pyramid/security/sqlalchemy-sql-injection.yaml +62 -0
- package/rules/python/requests/best-practice/use-raise-for-status.yaml +62 -0
- package/rules/python/requests/best-practice/use-request-json-shortcut.yaml +19 -0
- package/rules/python/requests/best-practice/use-response-json-shortcut.yaml +20 -0
- package/rules/python/requests/best-practice/use-timeout.yaml +46 -0
- package/rules/python/requests/security/disabled-cert-validation.yaml +37 -0
- package/rules/python/requests/security/no-auth-over-http.yaml +38 -0
- package/rules/python/sh/security/string-concat.yaml +31 -0
- package/rules/python/sqlalchemy/correctness/bad-operator-in-filter.yaml +29 -0
- package/rules/python/sqlalchemy/correctness/delete-where.yaml +15 -0
- package/rules/python/sqlalchemy/performance/performance-improvements.yaml +23 -0
- package/rules/python/sqlalchemy/security/audit/avoid-sqlalchemy-text.yaml +60 -0
- package/rules/python/sqlalchemy/security/sqlalchemy-execute-raw-query.yaml +67 -0
- package/rules/python/sqlalchemy/security/sqlalchemy-sql-injection.yaml +59 -0
- package/rules/python/twilio/security/twiml-injection.yaml +50 -0
- package/rules/ruby/aws-lambda/security/activerecord-sqli.yaml +50 -0
- package/rules/ruby/aws-lambda/security/mysql2-sqli.yaml +50 -0
- package/rules/ruby/aws-lambda/security/pg-sqli.yaml +54 -0
- package/rules/ruby/aws-lambda/security/sequel-sqli.yaml +49 -0
- package/rules/ruby/aws-lambda/security/tainted-deserialization.yaml +54 -0
- package/rules/ruby/aws-lambda/security/tainted-sql-string.yaml +57 -0
- package/rules/ruby/jwt/security/audit/jwt-decode-without-verify.yaml +32 -0
- package/rules/ruby/jwt/security/audit/jwt-exposed-data.yaml +36 -0
- package/rules/ruby/jwt/security/jwt-exposed-credentials.yaml +35 -0
- package/rules/ruby/jwt/security/jwt-hardcode.yaml +53 -0
- package/rules/ruby/jwt/security/jwt-none-alg.yaml +34 -0
- package/rules/ruby/lang/security/audit/sha224-hash.yaml +41 -0
- package/rules/ruby/lang/security/bad-deserialization-env.yaml +46 -0
- package/rules/ruby/lang/security/bad-deserialization-yaml.yaml +63 -0
- package/rules/ruby/lang/security/bad-deserialization.yaml +47 -0
- package/rules/ruby/lang/security/cookie-serialization.yaml +33 -0
- package/rules/ruby/lang/security/create-with.yaml +33 -0
- package/rules/ruby/lang/security/dangerous-exec.yaml +53 -0
- package/rules/ruby/lang/security/dangerous-open.yaml +34 -0
- package/rules/ruby/lang/security/dangerous-open3-pipeline.yaml +34 -0
- package/rules/ruby/lang/security/dangerous-subshell.yaml +34 -0
- package/rules/ruby/lang/security/dangerous-syscall.yaml +26 -0
- package/rules/ruby/lang/security/divide-by-zero.yaml +31 -0
- package/rules/ruby/lang/security/file-disclosure.yaml +33 -0
- package/rules/ruby/lang/security/filter-skipping.yaml +33 -0
- package/rules/ruby/lang/security/force-ssl-false.yaml +31 -0
- package/rules/ruby/lang/security/hardcoded-http-auth-in-controller.yaml +37 -0
- package/rules/ruby/lang/security/hardcoded-secret-rsa-passphrase.yaml +103 -0
- package/rules/ruby/lang/security/insufficient-rsa-key-size.yaml +51 -0
- package/rules/ruby/lang/security/json-entity-escape.yaml +33 -0
- package/rules/ruby/lang/security/mass-assignment-protection-disabled.yaml +29 -0
- package/rules/ruby/lang/security/md5-used-as-password.yaml +37 -0
- package/rules/ruby/lang/security/missing-csrf-protection.yaml +43 -0
- package/rules/ruby/lang/security/model-attr-accessible.yaml +47 -0
- package/rules/ruby/lang/security/model-attributes-attr-accessible.yaml +47 -0
- package/rules/ruby/lang/security/no-eval.yaml +56 -0
- package/rules/ruby/lang/security/no-send.yaml +46 -0
- package/rules/ruby/lang/security/ssl-mode-no-verify.yaml +30 -0
- package/rules/ruby/lang/security/unprotected-mass-assign.yaml +39 -0
- package/rules/ruby/lang/security/weak-hashes-md5.yaml +36 -0
- package/rules/ruby/lang/security/weak-hashes-sha1.yaml +31 -0
- package/rules/ruby/rails/correctness/rails-no-render-after-save.yaml +29 -0
- package/rules/ruby/rails/performance/ruby-rails-performance-indexes-are-really-beneficial.yaml +27 -0
- package/rules/ruby/rails/security/audit/avoid-logging-everything.yaml +52 -0
- package/rules/ruby/rails/security/audit/avoid-session-manipulation.yaml +41 -0
- package/rules/ruby/rails/security/audit/avoid-tainted-file-access.yaml +71 -0
- package/rules/ruby/rails/security/audit/avoid-tainted-ftp-call.yaml +41 -0
- package/rules/ruby/rails/security/audit/avoid-tainted-http-request.yaml +79 -0
- package/rules/ruby/rails/security/audit/avoid-tainted-shell-call.yaml +80 -0
- package/rules/ruby/rails/security/audit/detailed-exceptions.yaml +47 -0
- package/rules/ruby/rails/security/audit/rails-skip-forgery-protection.yaml +25 -0
- package/rules/ruby/rails/security/audit/sqli/ruby-pg-sqli.yaml +64 -0
- package/rules/ruby/rails/security/audit/xss/avoid-content-tag.yaml +32 -0
- package/rules/ruby/rails/security/audit/xss/avoid-default-routes.yaml +34 -0
- package/rules/ruby/rails/security/audit/xss/avoid-html-safe.yaml +32 -0
- package/rules/ruby/rails/security/audit/xss/avoid-link-to.yaml +49 -0
- package/rules/ruby/rails/security/audit/xss/avoid-raw.yaml +30 -0
- package/rules/ruby/rails/security/audit/xss/avoid-redirect.yaml +60 -0
- package/rules/ruby/rails/security/audit/xss/avoid-render-dynamic-path.yaml +44 -0
- package/rules/ruby/rails/security/audit/xss/avoid-render-inline.yaml +30 -0
- package/rules/ruby/rails/security/audit/xss/avoid-render-text.yaml +33 -0
- package/rules/ruby/rails/security/audit/xss/manual-template-creation.yaml +30 -0
- package/rules/ruby/rails/security/audit/xss/templates/alias-for-html-safe.yaml +36 -0
- package/rules/ruby/rails/security/audit/xss/templates/avoid-content-tag.yaml +36 -0
- package/rules/ruby/rails/security/audit/xss/templates/avoid-html-safe.yaml +37 -0
- package/rules/ruby/rails/security/audit/xss/templates/avoid-raw.yaml +37 -0
- package/rules/ruby/rails/security/audit/xss/templates/dangerous-link-to.yaml +43 -0
- package/rules/ruby/rails/security/audit/xss/templates/unquoted-attribute.yaml +41 -0
- package/rules/ruby/rails/security/audit/xss/templates/var-in-href.yaml +39 -0
- package/rules/ruby/rails/security/audit/xss/templates/var-in-script-tag.yaml +43 -0
- package/rules/ruby/rails/security/audit/xxe/libxml-backend.yaml +30 -0
- package/rules/ruby/rails/security/audit/xxe/xml-external-entities-enabled.yaml +42 -0
- package/rules/ruby/rails/security/brakeman/check-before-filter.yaml +35 -0
- package/rules/ruby/rails/security/brakeman/check-cookie-store-session-security-attributes.yaml +39 -0
- package/rules/ruby/rails/security/brakeman/check-dynamic-render-local-file-include.yaml +38 -0
- package/rules/ruby/rails/security/brakeman/check-http-verb-confusion.yaml +39 -0
- package/rules/ruby/rails/security/brakeman/check-permit-attributes-high.yaml +30 -0
- package/rules/ruby/rails/security/brakeman/check-permit-attributes-medium.yaml +30 -0
- package/rules/ruby/rails/security/brakeman/check-rails-secret-yaml.secrets.test.yml +26 -0
- package/rules/ruby/rails/security/brakeman/check-rails-secret-yaml.yaml +43 -0
- package/rules/ruby/rails/security/brakeman/check-rails-session-secret-handling.yaml +43 -0
- package/rules/ruby/rails/security/brakeman/check-redirect-to.yaml +80 -0
- package/rules/ruby/rails/security/brakeman/check-regex-dos.yaml +66 -0
- package/rules/ruby/rails/security/brakeman/check-render-local-file-include.yaml +63 -0
- package/rules/ruby/rails/security/brakeman/check-reverse-tabnabbing.yaml +63 -0
- package/rules/ruby/rails/security/brakeman/check-secrets.yaml +36 -0
- package/rules/ruby/rails/security/brakeman/check-send-file.yaml +45 -0
- package/rules/ruby/rails/security/brakeman/check-sql.yaml +90 -0
- package/rules/ruby/rails/security/brakeman/check-unsafe-reflection-methods.yaml +60 -0
- package/rules/ruby/rails/security/brakeman/check-unsafe-reflection.yaml +55 -0
- package/rules/ruby/rails/security/brakeman/check-unscoped-find.yaml +52 -0
- package/rules/ruby/rails/security/brakeman/check-validation-regex.yaml +39 -0
- package/rules/ruby/rails/security/injection/raw-html-format.yaml +60 -0
- package/rules/ruby/rails/security/injection/tainted-sql-string.yaml +70 -0
- package/rules/ruby/rails/security/injection/tainted-url-host.yaml +59 -0
- package/rules/rust/lang/security/args-os.yml +21 -0
- package/rules/rust/lang/security/args.yml +21 -0
- package/rules/rust/lang/security/current-exe.yml +21 -0
- package/rules/rust/lang/security/insecure-hashes.yml +25 -0
- package/rules/rust/lang/security/reqwest-accept-invalid.yml +20 -0
- package/rules/rust/lang/security/reqwest-set-sensitive.yml +44 -0
- package/rules/rust/lang/security/rustls-dangerous.yml +24 -0
- package/rules/rust/lang/security/ssl-verify-none.yml +17 -0
- package/rules/rust/lang/security/temp-dir.yml +23 -0
- package/rules/rust/lang/security/unsafe-usage.yml +17 -0
- package/rules/third-party/go-extra/anon-struct-args.yml +12 -0
- package/rules/third-party/go-extra/badexponentiation.yml +9 -0
- package/rules/third-party/go-extra/badnilguard.yml +15 -0
- package/rules/third-party/go-extra/close-sql-query-rows.yml +57 -0
- package/rules/third-party/go-extra/contextCancelable.yml +22 -0
- package/rules/third-party/go-extra/contextTODO.yml +9 -0
- package/rules/third-party/go-extra/ctx-time.yml +24 -0
- package/rules/third-party/go-extra/errclosed.yml +10 -0
- package/rules/third-party/go-extra/errnilcheck.yml +18 -0
- package/rules/third-party/go-extra/errtodo.yml +22 -0
- package/rules/third-party/go-extra/gofuzz.yml +18 -0
- package/rules/third-party/go-extra/hashsum.yml +25 -0
- package/rules/third-party/go-extra/hmac-bytes.yml +19 -0
- package/rules/third-party/go-extra/hmac-hash.yml +21 -0
- package/rules/third-party/go-extra/hostport.yml +28 -0
- package/rules/third-party/go-extra/http-ctx-goroutine.yml +14 -0
- package/rules/third-party/go-extra/ioutil.yml +48 -0
- package/rules/third-party/go-extra/joinpath.yml +11 -0
- package/rules/third-party/go-extra/json-writer.yml +35 -0
- package/rules/third-party/go-extra/mail-address.yml +13 -0
- package/rules/third-party/go-extra/marshaljson.yml +31 -0
- package/rules/third-party/go-extra/marshalyaml.yml +22 -0
- package/rules/third-party/go-extra/mathbits.yml +23 -0
- package/rules/third-party/go-extra/netip.yml +9 -0
- package/rules/third-party/go-extra/nilerr.yml +15 -0
- package/rules/third-party/go-extra/nrtxn.yml +16 -0
- package/rules/third-party/go-extra/oddbitwise.yml +14 -0
- package/rules/third-party/go-extra/oddcompare.yml +59 -0
- package/rules/third-party/go-extra/oddcompound.yml +11 -0
- package/rules/third-party/go-extra/oddifsequence.yml +134 -0
- package/rules/third-party/go-extra/oddmathbits.yml +11 -0
- package/rules/third-party/go-extra/oserrors.yml +28 -0
- package/rules/third-party/go-extra/parseint-downcast.yml +31 -0
- package/rules/third-party/go-extra/readeof.yml +16 -0
- package/rules/third-party/go-extra/readfull.yml +17 -0
- package/rules/third-party/go-extra/returnnil.yml +16 -0
- package/rules/third-party/go-extra/sortslice.yml +40 -0
- package/rules/third-party/go-extra/sprinterr.yml +54 -0
- package/rules/third-party/go-extra/timeafter.yml +16 -0
- package/rules/third-party/go-extra/unixnano.yml +15 -0
- package/rules/third-party/go-extra/writestring.yml +19 -0
- package/rules/third-party/go-extra/wrongerrcall.yml +16 -0
- package/rules/third-party/go-extra/wronglock.yml +19 -0
- package/rules/third-party/shopify/go/gorilla/security/audit/handler-assignment-from-multiple-sources.yaml +54 -0
- package/rules/third-party/shopify/go/gorilla/security/audit/session-cookie-missing-httponly.yaml +32 -0
- package/rules/third-party/shopify/go/gorilla/security/audit/session-cookie-missing-secure.yaml +31 -0
- package/rules/third-party/shopify/go/grpc/security/grpc-client-insecure-connection.yaml +22 -0
- package/rules/third-party/shopify/go/grpc/security/grpc-server-insecure-connection.yaml +37 -0
- package/rules/third-party/shopify/go/jwt-go/security/audit/jwt-parse-unverified.yaml +21 -0
- package/rules/third-party/shopify/go/jwt-go/security/jwt-none-alg.yaml +25 -0
- package/rules/third-party/shopify/go/jwt-go/security/jwt.yaml +18 -0
- package/rules/third-party/shopify/go/lang/best-practice/channel-guarded-with-mutex.yaml +22 -0
- package/rules/third-party/shopify/go/lang/best-practice/hidden-goroutine.yaml +27 -0
- package/rules/third-party/shopify/go/lang/correctness/looppointer.yaml +29 -0
- package/rules/third-party/shopify/go/lang/correctness/overflow/overflow.yaml +35 -0
- package/rules/third-party/shopify/go/lang/correctness/permissions/file_permission.yaml +22 -0
- package/rules/third-party/shopify/go/lang/correctness/useless-eqeq.yaml +26 -0
- package/rules/third-party/shopify/go/lang/maintainability/useless-ifelse.yaml +31 -0
- package/rules/third-party/shopify/go/lang/security/audit/crypto/bad_imports.yaml +47 -0
- package/rules/third-party/shopify/go/lang/security/audit/crypto/insecure_ssh.yaml +22 -0
- package/rules/third-party/shopify/go/lang/security/audit/crypto/math_random.yaml +31 -0
- package/rules/third-party/shopify/go/lang/security/audit/crypto/missing-ssl-minversion.yaml +27 -0
- package/rules/third-party/shopify/go/lang/security/audit/crypto/ssl.yaml +22 -0
- package/rules/third-party/shopify/go/lang/security/audit/crypto/tls.yaml +44 -0
- package/rules/third-party/shopify/go/lang/security/audit/crypto/use_of_weak_crypto.yaml +72 -0
- package/rules/third-party/shopify/go/lang/security/audit/crypto/use_of_weak_rsa_key.yaml +23 -0
- package/rules/third-party/shopify/go/lang/security/audit/dangerous-command-write.yaml +34 -0
- package/rules/third-party/shopify/go/lang/security/audit/dangerous-exec-cmd.yaml +75 -0
- package/rules/third-party/shopify/go/lang/security/audit/dangerous-exec-command.yaml +46 -0
- package/rules/third-party/shopify/go/lang/security/audit/dangerous-syscall-exec.yaml +87 -0
- package/rules/third-party/shopify/go/lang/security/audit/database/string-formatted-query.yaml +154 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/bind_all.yaml +18 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/cookie-missing-httponly.yaml +33 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/cookie-missing-secure.yaml +32 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/dynamic-httptrace-clienttrace.yaml +31 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/formatted-template-string.yaml +46 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/pprof.yaml +30 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/unescaped-data-in-htmlattr.yaml +43 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/unescaped-data-in-js.yaml +43 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/unescaped-data-in-url.yaml +43 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/use-tls.yaml +17 -0
- package/rules/third-party/shopify/go/lang/security/audit/net/wip-xss-using-responsewriter-and-printf.yaml +60 -0
- package/rules/third-party/shopify/go/lang/security/audit/reflect-makefunc.yaml +17 -0
- package/rules/third-party/shopify/go/lang/security/audit/sqli/gosql-sqli.yaml +51 -0
- package/rules/third-party/shopify/go/lang/security/audit/sqli/pg-orm-sqli.yaml +53 -0
- package/rules/third-party/shopify/go/lang/security/audit/sqli/pg-sqli.yaml +54 -0
- package/rules/third-party/shopify/go/lang/security/audit/sqli/pgx-sqli.yaml +58 -0
- package/rules/third-party/shopify/go/lang/security/audit/unsafe-reflect-by-name.yaml +33 -0
- package/rules/third-party/shopify/go/lang/security/audit/unsafe.yaml +15 -0
- package/rules/third-party/shopify/go/lang/security/audit/xss/import-text-template.yaml +18 -0
- package/rules/third-party/shopify/go/lang/security/audit/xss/no-direct-write-to-responsewriter.yaml +37 -0
- package/rules/third-party/shopify/go/lang/security/audit/xss/no-fprintf-to-responsewriter.yaml +30 -0
- package/rules/third-party/shopify/go/lang/security/audit/xss/no-interpolation-in-tag.yaml +21 -0
- package/rules/third-party/shopify/go/lang/security/audit/xss/no-interpolation-js-template-string.yaml +25 -0
- package/rules/third-party/shopify/go/lang/security/audit/xss/no-io-writestring-to-responsewriter.yaml +31 -0
- package/rules/third-party/shopify/go/lang/security/audit/xss/no-printf-in-responsewriter.yaml +30 -0
- package/rules/third-party/shopify/go/lang/security/audit/xss/template-html-does-not-escape.yaml +31 -0
- package/rules/third-party/shopify/go/lang/security/bad_tmp.yaml +14 -0
- package/rules/third-party/shopify/go/lang/security/decompression_bomb.yaml +58 -0
- package/rules/third-party/shopify/go/lang/security/injection/raw-html-format.yaml +41 -0
- package/rules/third-party/shopify/go/lang/security/injection/tainted-url-host.yaml +38 -0
- package/rules/third-party/shopify/go/lang/security/zip.yaml +19 -0
- package/rules/third-party/shopify/go/otto/security/audit/dangerous-execution.yaml +23 -0
- package/rules/third-party/shopify/go/template/security/insecure-types.yaml +25 -0
- package/rules/third-party/shopify/javascript/ajv/security/audit/ajv-allerrors-true.yaml +22 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-angular-element-methods.yaml +31 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-angular-open-redirect.yaml +25 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-angular-resource-loading.yaml +24 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-angular-sce-disabled.yaml +17 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-angular-trust-as-css.yaml +27 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-angular-trust-as-html-method.yaml +27 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-angular-trust-as-js-method.yaml +27 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-angular-trust-as-method.yaml +26 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-angular-trust-as-resourceurl-method.yaml +27 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-angular-trust-as-url-method.yaml +27 -0
- package/rules/third-party/shopify/javascript/angular/security/detect-third-party-angular-translate.yaml +43 -0
- package/rules/third-party/shopify/javascript/apollo/security/apollo-axios-ssrf.yaml +37 -0
- package/rules/third-party/shopify/javascript/bluebird/security/audit/tofastproperties-code-execution.yaml +29 -0
- package/rules/third-party/shopify/javascript/browser/security/dom-based-xss.yaml +23 -0
- package/rules/third-party/shopify/javascript/browser/security/eval-detected.yaml +25 -0
- package/rules/third-party/shopify/javascript/browser/security/insecure-document-method.yaml +26 -0
- package/rules/third-party/shopify/javascript/browser/security/insecure-innerhtml.yaml +19 -0
- package/rules/third-party/shopify/javascript/browser/security/insufficient-postmessage-origin-validation.yaml +40 -0
- package/rules/third-party/shopify/javascript/browser/security/new-function-detected.yaml +24 -0
- package/rules/third-party/shopify/javascript/browser/security/open-redirect.yaml +37 -0
- package/rules/third-party/shopify/javascript/browser/security/raw-html-concat.yaml +62 -0
- package/rules/third-party/shopify/javascript/browser/security/raw-html-join.yaml +32 -0
- package/rules/third-party/shopify/javascript/browser/security/wildcard-postmessage-configuration.yaml +15 -0
- package/rules/third-party/shopify/javascript/chrome-remote-interface/security/audit/chrome-remote-interface-compilescript-injection.yaml +23 -0
- package/rules/third-party/shopify/javascript/chrome-remote-interface/security/audit/chrome-remote-interface-evaluate-injection.yaml +23 -0
- package/rules/third-party/shopify/javascript/chrome-remote-interface/security/audit/chrome-remote-interface-navigate-injection.yaml +23 -0
- package/rules/third-party/shopify/javascript/chrome-remote-interface/security/audit/chrome-remote-interface-printtopdf-injection.yaml +28 -0
- package/rules/third-party/shopify/javascript/chrome-remote-interface/security/audit/chrome-remote-interface-setdocumentcontent-injection.yaml +23 -0
- package/rules/third-party/shopify/javascript/deno/security/audit/deno-dangerous-run.yaml +36 -0
- package/rules/third-party/shopify/javascript/express/security/audit/express-cookie-settings.yaml +291 -0
- package/rules/third-party/shopify/javascript/express/security/audit/express-jwt-not-revoked.yaml +29 -0
- package/rules/third-party/shopify/javascript/express/security/audit/express-path-join-resolve-traversal.yaml +47 -0
- package/rules/third-party/shopify/javascript/express/security/audit/express-xml2json-xxe-event.yaml +28 -0
- package/rules/third-party/shopify/javascript/express/security/audit/possible-user-input-redirect.yaml +32 -0
- package/rules/third-party/shopify/javascript/express/security/audit/remote-property-injection.yaml +35 -0
- package/rules/third-party/shopify/javascript/express/security/audit/res-render-injection.yaml +25 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/direct-response-write.yaml +38 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/ejs/explicit-unescape.yaml +27 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/ejs/var-in-href.yaml +27 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/ejs/var-in-script-src.yaml +32 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/ejs/var-in-script-tag.yaml +32 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/mustache/escape-function-overwrite.yaml +25 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/mustache/explicit-unescape.yaml +28 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/mustache/var-in-href.yaml +28 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/mustache/var-in-script-tag.yaml +31 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/pug/and-attributes.yaml +23 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/pug/explicit-unescape.yaml +26 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/pug/var-in-href.yaml +26 -0
- package/rules/third-party/shopify/javascript/express/security/audit/xss/pug/var-in-script-tag.yaml +33 -0
- package/rules/third-party/shopify/javascript/express/security/cors-misconfiguration.yaml +43 -0
- package/rules/third-party/shopify/javascript/express/security/express-data-exfiltration.yaml +34 -0
- package/rules/third-party/shopify/javascript/express/security/express-expat-xxe.yaml +48 -0
- package/rules/third-party/shopify/javascript/express/security/express-jwt-hardcoded-secret.yaml +31 -0
- package/rules/third-party/shopify/javascript/express/security/express-phantom-injection.yaml +79 -0
- package/rules/third-party/shopify/javascript/express/security/express-puppeteer-injection.yaml +109 -0
- package/rules/third-party/shopify/javascript/express/security/express-sandbox-injection.yaml +43 -0
- package/rules/third-party/shopify/javascript/express/security/express-vm-injection.yaml +43 -0
- package/rules/third-party/shopify/javascript/express/security/express-vm2-injection.yaml +53 -0
- package/rules/third-party/shopify/javascript/express/security/express-wkhtml-injection.yaml +77 -0
- package/rules/third-party/shopify/javascript/express/security/express-xml2json-xxe.yaml +42 -0
- package/rules/third-party/shopify/javascript/express/security/require-request.yaml +26 -0
- package/rules/third-party/shopify/javascript/express/security/x-frame-options-misconfiguration.yaml +44 -0
- package/rules/third-party/shopify/javascript/fbjs/security/audit/insecure-createnodesfrommarkup.yaml +20 -0
- package/rules/third-party/shopify/javascript/grpc/security/grpc-nodejs-insecure-connection.yaml +24 -0
- package/rules/third-party/shopify/javascript/jose/security/audit/jose-exposed-data.yaml +35 -0
- package/rules/third-party/shopify/javascript/jose/security/jwt-exposed-credentials.yaml +233 -0
- package/rules/third-party/shopify/javascript/jose/security/jwt-hardcode.yaml +160 -0
- package/rules/third-party/shopify/javascript/jose/security/jwt-none-alg.yaml +42 -0
- package/rules/third-party/shopify/javascript/jquery/security/audit/jquery-insecure-method.yaml +40 -0
- package/rules/third-party/shopify/javascript/jquery/security/audit/jquery-insecure-selector.yaml +70 -0
- package/rules/third-party/shopify/javascript/jquery/security/audit/prohibit-jquery-html.yaml +23 -0
- package/rules/third-party/shopify/javascript/jsonwebtoken/security/audit/jwt-decode-without-verify.yaml +34 -0
- package/rules/third-party/shopify/javascript/jsonwebtoken/security/audit/jwt-exposed-data.yaml +27 -0
- package/rules/third-party/shopify/javascript/jsonwebtoken/security/jwt-exposed-credentials.yaml +60 -0
- package/rules/third-party/shopify/javascript/jsonwebtoken/security/jwt-hardcode.yaml +36 -0
- package/rules/third-party/shopify/javascript/jsonwebtoken/security/jwt-none-alg.yaml +27 -0
- package/rules/third-party/shopify/javascript/lang/best-practice/assigned-undefined.yaml +17 -0
- package/rules/third-party/shopify/javascript/lang/best-practice/lazy-load-module.yaml +24 -0
- package/rules/third-party/shopify/javascript/lang/best-practice/leftover_debugging.yaml +50 -0
- package/rules/third-party/shopify/javascript/lang/best-practice/zlib-async-loop.yaml +41 -0
- package/rules/third-party/shopify/javascript/lang/correctness/missing-template-string-indicator.yaml +18 -0
- package/rules/third-party/shopify/javascript/lang/correctness/no-replaceall.yaml +16 -0
- package/rules/third-party/shopify/javascript/lang/correctness/useless-assign.yaml +18 -0
- package/rules/third-party/shopify/javascript/lang/correctness/useless-eqeq.yaml +21 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/code-string-concat.yaml +34 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/dangerous-spawn-shell.yaml +55 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/detect-bracket-object-injection.yaml +22 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/detect-non-literal-fs-filename.yaml +70 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/detect-non-literal-regexp.yaml +23 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/incomplete-sanitization.yaml +19 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/non-constant-sql-query.yaml +18 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/path-traversal/path-join-resolve-traversal.yaml +53 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/prototype-pollution/prototype-pollution-assignment.yaml +61 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/prototype-pollution/prototype-pollution-function.yaml +82 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/prototype-pollution/prototype-pollution-loop.yaml +62 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/spawn-shell-true.yaml +37 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/sqli/node-mssql-sqli.yaml +62 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/sqli/node-postgres-sqli.yaml +64 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/unknown-value-with-script-tag.yaml +25 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/unsafe-dynamic-method.yaml +42 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/unsafe-formatstring.yaml +39 -0
- package/rules/third-party/shopify/javascript/lang/security/audit/vm-injection.yaml +495 -0
- package/rules/third-party/shopify/javascript/lang/security/detect-buffer-noassert.yaml +22 -0
- package/rules/third-party/shopify/javascript/lang/security/detect-child-process.yaml +30 -0
- package/rules/third-party/shopify/javascript/lang/security/detect-disable-mustache-escape.yaml +17 -0
- package/rules/third-party/shopify/javascript/lang/security/detect-eval-with-expression.yaml +30 -0
- package/rules/third-party/shopify/javascript/lang/security/detect-insecure-websocket.yaml +15 -0
- package/rules/third-party/shopify/javascript/lang/security/detect-no-csrf-before-method-override.yaml +23 -0
- package/rules/third-party/shopify/javascript/lang/security/detect-non-literal-require.yaml +20 -0
- package/rules/third-party/shopify/javascript/lang/security/detect-pseudoRandomBytes.yaml +22 -0
- package/rules/third-party/shopify/javascript/lang/security/insecure-object-assign.yaml +25 -0
- package/rules/third-party/shopify/javascript/lang/security/spawn-git-clone.yaml +27 -0
- package/rules/third-party/shopify/javascript/monaco-editor/security/audit/monaco-hover-htmlsupport.yaml +33 -0
- package/rules/third-party/shopify/javascript/node-expat/security/audit/expat-xxe.yaml +71 -0
- package/rules/third-party/shopify/javascript/passport-jwt/security/passport-hardcode.yaml +805 -0
- package/rules/third-party/shopify/javascript/phantom/security/audit/phantom-injection.yaml +27 -0
- package/rules/third-party/shopify/javascript/playwright/security/audit/playwright-addinitscript-code-injection.yaml +22 -0
- package/rules/third-party/shopify/javascript/playwright/security/audit/playwright-evaluate-arg-injection.yaml +22 -0
- package/rules/third-party/shopify/javascript/playwright/security/audit/playwright-evaluate-code-injection.yaml +29 -0
- package/rules/third-party/shopify/javascript/playwright/security/audit/playwright-exposed-chrome-devtools.yaml +21 -0
- package/rules/third-party/shopify/javascript/playwright/security/audit/playwright-goto-injection.yaml +24 -0
- package/rules/third-party/shopify/javascript/playwright/security/audit/playwright-setcontent-injection.yaml +24 -0
- package/rules/third-party/shopify/javascript/puppeteer/security/audit/puppeteer-evaluate-arg-injection.yaml +23 -0
- package/rules/third-party/shopify/javascript/puppeteer/security/audit/puppeteer-evaluate-code-injection.yaml +29 -0
- package/rules/third-party/shopify/javascript/puppeteer/security/audit/puppeteer-exposed-chrome-devtools.yaml +21 -0
- package/rules/third-party/shopify/javascript/puppeteer/security/audit/puppeteer-goto-injection.yaml +24 -0
- package/rules/third-party/shopify/javascript/puppeteer/security/audit/puppeteer-setcontent-injection.yaml +23 -0
- package/rules/third-party/shopify/javascript/react/correctness/hooks/set-state-no-op.yaml +16 -0
- package/rules/third-party/shopify/javascript/sandbox/security/audit/sandbox-code-injection.yaml +33 -0
- package/rules/third-party/shopify/javascript/sax/security/audit/sax-xxe.yaml +28 -0
- package/rules/third-party/shopify/javascript/sequelize/security/audit/sequelize-enforce-tls.yaml +50 -0
- package/rules/third-party/shopify/javascript/sequelize/security/audit/sequelize-raw-query.yaml +32 -0
- package/rules/third-party/shopify/javascript/sequelize/security/audit/sequelize-tls-disabled-cert-validation.yaml +44 -0
- package/rules/third-party/shopify/javascript/sequelize/security/audit/sequelize-weak-tls-version.yaml +46 -0
- package/rules/third-party/shopify/javascript/serialize-javascript/security/audit/unsafe-serialize-javascript.yaml +20 -0
- package/rules/third-party/shopify/javascript/shelljs/security/shelljs-exec-injection.yaml +23 -0
- package/rules/third-party/shopify/javascript/thenify/security/audit/multiargs-code-execution.yaml +35 -0
- package/rules/third-party/shopify/javascript/vm2/security/audit/vm2-code-injection.yaml +53 -0
- package/rules/third-party/shopify/javascript/vm2/security/audit/vm2-context-injection.yaml +337 -0
- package/rules/third-party/shopify/javascript/vue/security/audit/xss/templates/avoid-v-html.yaml +16 -0
- package/rules/third-party/shopify/javascript/wkhtmltoimage/security/audit/wkhtmltoimage-injection.yaml +21 -0
- package/rules/third-party/shopify/javascript/wkhtmltopdf/security/audit/wkhtmltopdf-injection.yaml +21 -0
- package/rules/third-party/shopify/javascript/xml2json/security/audit/xml2json-xxe.yaml +33 -0
- package/rules/third-party/shopify/python/airflow/security/audit/formatted-string-bashoperator.yaml +46 -0
- package/rules/third-party/shopify/python/attr/correctness/mutable-initializer.yaml +31 -0
- package/rules/third-party/shopify/python/bokeh/maintainability/deprecated/deprecated_apis.yaml +15 -0
- package/rules/third-party/shopify/python/boto3/security/hardcoded-token.yaml +22 -0
- package/rules/third-party/shopify/python/click/best-practice/echo-style.yaml +10 -0
- package/rules/third-party/shopify/python/cryptography/security/insecure-cipher-algorithms.yaml +56 -0
- package/rules/third-party/shopify/python/cryptography/security/insecure-cipher-mode-ecb.yaml +19 -0
- package/rules/third-party/shopify/python/cryptography/security/insecure-hash-algorithms.yaml +44 -0
- package/rules/third-party/shopify/python/cryptography/security/insufficient-dsa-key-size.yaml +23 -0
- package/rules/third-party/shopify/python/cryptography/security/insufficient-ec-key-size.yaml +23 -0
- package/rules/third-party/shopify/python/cryptography/security/insufficient-rsa-key-size.yaml +23 -0
- package/rules/third-party/shopify/python/distributed/security.yaml +17 -0
- package/rules/third-party/shopify/python/django/best-practice/json_response.yaml +17 -0
- package/rules/third-party/shopify/python/django/best-practice/upsell_django_environ.yaml +26 -0
- package/rules/third-party/shopify/python/django/best-practice/use-onetoonefield.yaml +16 -0
- package/rules/third-party/shopify/python/django/compatibility/django-2_0-compat.yaml +58 -0
- package/rules/third-party/shopify/python/django/correctness/model-save.yaml +24 -0
- package/rules/third-party/shopify/python/django/correctness/nontext-field-must-set-null-true.yaml +25 -0
- package/rules/third-party/shopify/python/django/correctness/string-field-null-checks.yaml +40 -0
- package/rules/third-party/shopify/python/django/correctness/use-decimalfield-for-money.yaml +17 -0
- package/rules/third-party/shopify/python/django/maintainability/duplicate-path-assignment.yaml +69 -0
- package/rules/third-party/shopify/python/django/performance/access-foreign-keys.yaml +10 -0
- package/rules/third-party/shopify/python/django/performance/upsell-count.yaml +14 -0
- package/rules/third-party/shopify/python/django/performance/upsell_earliest_latest.yaml +14 -0
- package/rules/third-party/shopify/python/django/security/audit/avoid-insecure-deserialization.yaml +50 -0
- package/rules/third-party/shopify/python/django/security/audit/avoid-mark-safe.yaml +22 -0
- package/rules/third-party/shopify/python/django/security/audit/csrf-exempt.yaml +15 -0
- package/rules/third-party/shopify/python/django/security/audit/custom-expression-as-sql.yaml +18 -0
- package/rules/third-party/shopify/python/django/security/audit/django-ratelimit/missing-ratelimit.yaml +25 -0
- package/rules/third-party/shopify/python/django/security/audit/django-rest-framework/missing-throttle-config.yaml +26 -0
- package/rules/third-party/shopify/python/django/security/audit/extends-custom-expression.yaml +134 -0
- package/rules/third-party/shopify/python/django/security/audit/query-set-extra.yaml +18 -0
- package/rules/third-party/shopify/python/django/security/audit/raw-query.yaml +20 -0
- package/rules/third-party/shopify/python/django/security/audit/secure-cookies.yaml +51 -0
- package/rules/third-party/shopify/python/django/security/audit/templates/debug-template-tag.yaml +20 -0
- package/rules/third-party/shopify/python/django/security/audit/unvalidated-password.yaml +46 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/class-extends-safestring.yaml +30 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/context-autoescape-off.yaml +25 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/direct-use-of-httpresponse.yaml +33 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/filter-with-is-safe.yaml +27 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/formathtml-fstring-parameter.yaml +24 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/global-autoescape-off.yaml +24 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/html-magic-method.yaml +28 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/html-safe.yaml +28 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/template-autoescape-off.yaml +22 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/template-blocktranslate-no-escape.yaml +36 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/template-href-var.yaml +27 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/template-translate-as-no-escape.yaml +119 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/template-translate-no-escape.yaml +40 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/template-var-unescaped-with-safeseq.yaml +23 -0
- package/rules/third-party/shopify/python/django/security/audit/xss/var-in-script-tag.yaml +28 -0
- package/rules/third-party/shopify/python/django/security/globals-as-template-context.yaml +32 -0
- package/rules/third-party/shopify/python/django/security/injection/code/globals-misuse-code-execution.yaml +213 -0
- package/rules/third-party/shopify/python/django/security/injection/code/user-eval-format-string.yaml +117 -0
- package/rules/third-party/shopify/python/django/security/injection/code/user-eval.yaml +36 -0
- package/rules/third-party/shopify/python/django/security/injection/code/user-exec-format-string.yaml +203 -0
- package/rules/third-party/shopify/python/django/security/injection/code/user-exec.yaml +34 -0
- package/rules/third-party/shopify/python/django/security/injection/command/command-injection-os-system.yaml +268 -0
- package/rules/third-party/shopify/python/django/security/injection/email/xss-html-email-body.yaml +195 -0
- package/rules/third-party/shopify/python/django/security/injection/email/xss-send-mail-html-message.yaml +233 -0
- package/rules/third-party/shopify/python/django/security/injection/mass-assignment.yaml +26 -0
- package/rules/third-party/shopify/python/django/security/injection/open-redirect.yaml +531 -0
- package/rules/third-party/shopify/python/django/security/injection/path-traversal/path-traversal-file-name.yaml +68 -0
- package/rules/third-party/shopify/python/django/security/injection/path-traversal/path-traversal-join.yaml +91 -0
- package/rules/third-party/shopify/python/django/security/injection/path-traversal/path-traversal-open.yaml +427 -0
- package/rules/third-party/shopify/python/django/security/injection/raw-html-format.yaml +49 -0
- package/rules/third-party/shopify/python/django/security/injection/reflected-data-httpresponse.yaml +249 -0
- package/rules/third-party/shopify/python/django/security/injection/reflected-data-httpresponsebadrequest.yaml +243 -0
- package/rules/third-party/shopify/python/django/security/injection/request-data-fileresponse.yaml +71 -0
- package/rules/third-party/shopify/python/django/security/injection/request-data-write.yaml +188 -0
- package/rules/third-party/shopify/python/django/security/injection/sql/sql-injection-extra.yaml +283 -0
- package/rules/third-party/shopify/python/django/security/injection/sql/sql-injection-rawsql.yaml +283 -0
- package/rules/third-party/shopify/python/django/security/injection/sql/sql-injection-using-db-cursor-execute.yaml +283 -0
- package/rules/third-party/shopify/python/django/security/injection/sql/sql-injection-using-raw.yaml +283 -0
- package/rules/third-party/shopify/python/django/security/injection/ssrf/ssrf-injection-requests.yaml +249 -0
- package/rules/third-party/shopify/python/django/security/injection/ssrf/ssrf-injection-urllib.yaml +249 -0
- package/rules/third-party/shopify/python/django/security/locals-as-template-context.yaml +32 -0
- package/rules/third-party/shopify/python/django/security/passwords/password-empty-string.yaml +31 -0
- package/rules/third-party/shopify/python/django/security/passwords/use-none-for-password-default.yaml +30 -0
- package/rules/third-party/shopify/python/docker/security/audit/docker-arbitrary-container-run.yaml +28 -0
- package/rules/third-party/shopify/python/flask/best-practice/get-class-method-with-side-effects.yaml +23 -0
- package/rules/third-party/shopify/python/flask/best-practice/use-jsonify.yaml +24 -0
- package/rules/third-party/shopify/python/flask/caching/query-string.yaml +45 -0
- package/rules/third-party/shopify/python/flask/correctness/access-request-in-wrong-handler.yaml +21 -0
- package/rules/third-party/shopify/python/flask/correctness/same-handler-name.yaml +18 -0
- package/rules/third-party/shopify/python/flask/maintainability/deprecated/deprecated-apis.yaml +44 -0
- package/rules/third-party/shopify/python/flask/security/audit/app-run-param-config.yaml +16 -0
- package/rules/third-party/shopify/python/flask/security/audit/app-run-security-config.yaml +20 -0
- package/rules/third-party/shopify/python/flask/security/audit/debug-enabled.yaml +22 -0
- package/rules/third-party/shopify/python/flask/security/audit/directly-returned-format-string.yaml +46 -0
- package/rules/third-party/shopify/python/flask/security/audit/hardcoded-config.yaml +74 -0
- package/rules/third-party/shopify/python/flask/security/audit/render-template-string.yaml +15 -0
- package/rules/third-party/shopify/python/flask/security/audit/secure-set-cookie.yaml +31 -0
- package/rules/third-party/shopify/python/flask/security/audit/wtf-csrf-disabled.yaml +16 -0
- package/rules/third-party/shopify/python/flask/security/audit/xss/make-response-with-unknown-content.yaml +41 -0
- package/rules/third-party/shopify/python/flask/security/dangerous-template-string.yaml +54 -0
- package/rules/third-party/shopify/python/flask/security/flask-api-method-string-format.yaml +27 -0
- package/rules/third-party/shopify/python/flask/security/injection/os-system-injection.yaml +60 -0
- package/rules/third-party/shopify/python/flask/security/injection/path-traversal-open.yaml +94 -0
- package/rules/third-party/shopify/python/flask/security/injection/raw-html-concat.yaml +55 -0
- package/rules/third-party/shopify/python/flask/security/injection/ssrf-requests.yaml +62 -0
- package/rules/third-party/shopify/python/flask/security/injection/user-eval.yaml +58 -0
- package/rules/third-party/shopify/python/flask/security/injection/user-exec.yaml +58 -0
- package/rules/third-party/shopify/python/flask/security/insecure-deserialization.yaml +32 -0
- package/rules/third-party/shopify/python/flask/security/open-redirect.yaml +53 -0
- package/rules/third-party/shopify/python/flask/security/secure-static-file-serve.yaml +21 -0
- package/rules/third-party/shopify/python/flask/security/unescaped-template-extension.yaml +44 -0
- package/rules/third-party/shopify/python/flask/security/unsanitized-input.yaml +36 -0
- package/rules/third-party/shopify/python/flask/security/xss/audit/direct-use-of-jinja2.yaml +32 -0
- package/rules/third-party/shopify/python/flask/security/xss/audit/explicit-unescape-with-markup.yaml +23 -0
- package/rules/third-party/shopify/python/flask/security/xss/audit/template-autoescape-off.yaml +23 -0
- package/rules/third-party/shopify/python/flask/security/xss/audit/template-href-var.yaml +33 -0
- package/rules/third-party/shopify/python/flask/security/xss/audit/template-unescaped-with-safe.yaml +22 -0
- package/rules/third-party/shopify/python/flask/security/xss/audit/template-unquoted-attribute-var.yaml +28 -0
- package/rules/third-party/shopify/python/jinja2/security/audit/autoescape-disabled.yaml +25 -0
- package/rules/third-party/shopify/python/jwt/security/audit/jwt-exposed-data.yaml +20 -0
- package/rules/third-party/shopify/python/jwt/security/jwt-exposed-credentials.yaml +24 -0
- package/rules/third-party/shopify/python/jwt/security/jwt-hardcode.yaml +22 -0
- package/rules/third-party/shopify/python/jwt/security/jwt-none-alg.yaml +22 -0
- package/rules/third-party/shopify/python/jwt/security/unverified-jwt-decode.yaml +22 -0
- package/rules/third-party/shopify/python/lang/best-practice/hardcoded-tmp-path.yaml +14 -0
- package/rules/third-party/shopify/python/lang/best-practice/manual-collections-create.yaml +94 -0
- package/rules/third-party/shopify/python/lang/best-practice/missing-hash-with-eq.yaml +23 -0
- package/rules/third-party/shopify/python/lang/best-practice/open-never-closed.yaml +95 -0
- package/rules/third-party/shopify/python/lang/best-practice/pass-body.yaml +30 -0
- package/rules/third-party/shopify/python/lang/best-practice/pdb.yaml +13 -0
- package/rules/third-party/shopify/python/lang/best-practice/sleep.yaml +16 -0
- package/rules/third-party/shopify/python/lang/compatibility/python36.yaml +28 -0
- package/rules/third-party/shopify/python/lang/compatibility/python37.yaml +171 -0
- package/rules/third-party/shopify/python/lang/correctness/baseclass-attribute-override.yaml +22 -0
- package/rules/third-party/shopify/python/lang/correctness/common-mistakes/default-mutable-dict.yaml +198 -0
- package/rules/third-party/shopify/python/lang/correctness/common-mistakes/default-mutable-list.yaml +215 -0
- package/rules/third-party/shopify/python/lang/correctness/common-mistakes/is-comparison-string.yaml +32 -0
- package/rules/third-party/shopify/python/lang/correctness/common-mistakes/is-not-is-not.yaml +12 -0
- package/rules/third-party/shopify/python/lang/correctness/common-mistakes/string-concat-in-list.yaml +20 -0
- package/rules/third-party/shopify/python/lang/correctness/concurrent.yaml +33 -0
- package/rules/third-party/shopify/python/lang/correctness/dict-modify-iterating.yaml +21 -0
- package/rules/third-party/shopify/python/lang/correctness/exceptions/exceptions.yaml +20 -0
- package/rules/third-party/shopify/python/lang/correctness/exit.yaml +15 -0
- package/rules/third-party/shopify/python/lang/correctness/file-object-redefined-before-close.yaml +22 -0
- package/rules/third-party/shopify/python/lang/correctness/list-modify-iterating.yaml +28 -0
- package/rules/third-party/shopify/python/lang/correctness/pdb.yaml +14 -0
- package/rules/third-party/shopify/python/lang/correctness/return-in-init.yaml +48 -0
- package/rules/third-party/shopify/python/lang/correctness/tempfile/flush.yaml +78 -0
- package/rules/third-party/shopify/python/lang/correctness/tempfile/mktemp.yaml +12 -0
- package/rules/third-party/shopify/python/lang/correctness/unchecked-returns.yaml +16 -0
- package/rules/third-party/shopify/python/lang/correctness/useless-comparison.yaml +28 -0
- package/rules/third-party/shopify/python/lang/correctness/useless-eqeq.yaml +27 -0
- package/rules/third-party/shopify/python/lang/correctness/writing-to-file-in-read-mode.yaml +27 -0
- package/rules/third-party/shopify/python/lang/maintainability/improper-list-concat.yaml +18 -0
- package/rules/third-party/shopify/python/lang/maintainability/is-function-without-parentheses.yaml +17 -0
- package/rules/third-party/shopify/python/lang/maintainability/return.yaml +29 -0
- package/rules/third-party/shopify/python/lang/maintainability/useless-assign-keyed.yaml +16 -0
- package/rules/third-party/shopify/python/lang/maintainability/useless-ifelse.yaml +27 -0
- package/rules/third-party/shopify/python/lang/maintainability/useless-innerfunction.yaml +37 -0
- package/rules/third-party/shopify/python/lang/maintainability/useless-literal.yaml +24 -0
- package/rules/third-party/shopify/python/lang/security/audit/conn_recv.yaml +23 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-annotations-usage.yaml +25 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-asyncio-create-exec.yaml +46 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-asyncio-exec.yaml +35 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-asyncio-shell.yaml +36 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-code-run.yaml +45 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-os-exec.yaml +44 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-spawn-process.yaml +44 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-subinterpreters-run-string.yaml +23 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-subprocess-use.yaml +44 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-system-call.yaml +28 -0
- package/rules/third-party/shopify/python/lang/security/audit/dangerous-testcapi-run-in-subinterp.yaml +26 -0
- package/rules/third-party/shopify/python/lang/security/audit/dynamic-urllib-use-detected.yaml +49 -0
- package/rules/third-party/shopify/python/lang/security/audit/eval-detected.yaml +23 -0
- package/rules/third-party/shopify/python/lang/security/audit/exec-detected.yaml +23 -0
- package/rules/third-party/shopify/python/lang/security/audit/formatted-sql-query.yaml +31 -0
- package/rules/third-party/shopify/python/lang/security/audit/ftplib.yaml +19 -0
- package/rules/third-party/shopify/python/lang/security/audit/hardcoded-password-default-argument.yaml +15 -0
- package/rules/third-party/shopify/python/lang/security/audit/httpsconnection-detected.yaml +24 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-file-permissions.yaml +53 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/ftplib/use-ftp-tls.yaml +19 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/requests/request-session-http-in-with-context.yaml +36 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/requests/request-session-with-http.yaml +50 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/requests/request-with-http.yaml +50 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/ssl/no-set-ciphers.yaml +23 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-openerdirector-open-ftp.yaml +47 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-openerdirector-open.yaml +49 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-request-object-ftp.yaml +27 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-request-object.yaml +30 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-urlopen-ftp.yaml +26 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-urlopen.yaml +28 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-urlopener-open-ftp.yaml +46 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-urlopener-open.yaml +49 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-urlopener-retrieve-ftp.yaml +46 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-urlopener-retrieve.yaml +49 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-urlretrieve-ftp.yaml +26 -0
- package/rules/third-party/shopify/python/lang/security/audit/insecure-transport/urllib/insecure-urlretrieve.yaml +28 -0
- package/rules/third-party/shopify/python/lang/security/audit/logging/listeneval.yaml +21 -0
- package/rules/third-party/shopify/python/lang/security/audit/logging/logger-credential-leak.yaml +19 -0
- package/rules/third-party/shopify/python/lang/security/audit/mako-templates-detected.yaml +21 -0
- package/rules/third-party/shopify/python/lang/security/audit/marshal.yaml +23 -0
- package/rules/third-party/shopify/python/lang/security/audit/network/bind.yaml +28 -0
- package/rules/third-party/shopify/python/lang/security/audit/network/disabled-cert-validation.yaml +24 -0
- package/rules/third-party/shopify/python/lang/security/audit/network/http-not-https-connection.yaml +19 -0
- package/rules/third-party/shopify/python/lang/security/audit/non-literal-import.yaml +20 -0
- package/rules/third-party/shopify/python/lang/security/audit/paramiko/paramiko-exec-command.yaml +25 -0
- package/rules/third-party/shopify/python/lang/security/audit/paramiko-implicit-trust-host-key.yaml +26 -0
- package/rules/third-party/shopify/python/lang/security/audit/sqli/aiopg-sqli.yaml +91 -0
- package/rules/third-party/shopify/python/lang/security/audit/sqli/asyncpg-sqli.yaml +79 -0
- package/rules/third-party/shopify/python/lang/security/audit/sqli/pg8000-sqli.yaml +77 -0
- package/rules/third-party/shopify/python/lang/security/audit/sqli/psycopg-sqli.yaml +73 -0
- package/rules/third-party/shopify/python/lang/security/audit/ssl-wrap-socket-is-deprecated.yaml +18 -0
- package/rules/third-party/shopify/python/lang/security/audit/subprocess-shell-true.yaml +26 -0
- package/rules/third-party/shopify/python/lang/security/audit/system-wildcard-detected.yaml +31 -0
- package/rules/third-party/shopify/python/lang/security/audit/telnetlib.yaml +18 -0
- package/rules/third-party/shopify/python/lang/security/audit/weak-ssl-version.yaml +34 -0
- package/rules/third-party/shopify/python/lang/security/dangerous-globals-use.yaml +46 -0
- package/rules/third-party/shopify/python/lang/security/deserialization/avoid-jsonpickle.yaml +22 -0
- package/rules/third-party/shopify/python/lang/security/deserialization/avoid-pyyaml-load.yaml +36 -0
- package/rules/third-party/shopify/python/lang/security/deserialization/avoid-unsafe-ruamel.yaml +21 -0
- package/rules/third-party/shopify/python/lang/security/deserialization/pickle.yaml +78 -0
- package/rules/third-party/shopify/python/lang/security/insecure-hash-algorithms.yaml +54 -0
- package/rules/third-party/shopify/python/lang/security/insecure-hash-function.yaml +27 -0
- package/rules/third-party/shopify/python/lang/security/unquoted-csv-writer.yaml +19 -0
- package/rules/third-party/shopify/python/lang/security/unverified-ssl-context.yaml +19 -0
- package/rules/third-party/shopify/python/lang/security/use-defused-xml.yaml +23 -0
- package/rules/third-party/shopify/python/lang/security/use-defused-xmlrpc.yaml +23 -0
- package/rules/third-party/shopify/python/pycryptodome/security/insecure-cipher-algorithm.yaml +102 -0
- package/rules/third-party/shopify/python/pycryptodome/security/insecure-hash-algorithm.yaml +87 -0
- package/rules/third-party/shopify/python/pycryptodome/security/insufficient-dsa-key-size.yaml +25 -0
- package/rules/third-party/shopify/python/pycryptodome/security/insufficient-rsa-key-size.yaml +25 -0
- package/rules/third-party/shopify/python/pymongo/security/mongodb.yaml +16 -0
- package/rules/third-party/shopify/python/requests/best-practice/use-raise-for-status.yaml +50 -0
- package/rules/third-party/shopify/python/requests/best-practice/use-request-json-shortcut.yaml +19 -0
- package/rules/third-party/shopify/python/requests/best-practice/use-response-json-shortcut.yaml +20 -0
- package/rules/third-party/shopify/python/requests/best-practice/use-timeout.yaml +59 -0
- package/rules/third-party/shopify/python/requests/security/disabled-cert-validation.yaml +25 -0
- package/rules/third-party/shopify/python/requests/security/no-auth-over-http.yaml +29 -0
- package/rules/third-party/shopify/python/sh/security/string-concat.yaml +18 -0
- package/rules/third-party/shopify/python/sqlalchemy/correctness/bad-operator-in-filter.yaml +29 -0
- package/rules/third-party/shopify/python/sqlalchemy/correctness/delete-where.yaml +14 -0
- package/rules/third-party/shopify/python/sqlalchemy/performance/performance-improvements.yaml +22 -0
- package/rules/third-party/shopify/python/sqlalchemy/security/sqlalchemy-execute-raw-query.yaml +53 -0
- package/rules/third-party/shopify/python/sqlalchemy/security/sqlalchemy-sql-injection.yaml +42 -0
- package/rules/third-party/shopify/ruby/jwt/security/audit/jwt-decode-without-verify.yaml +22 -0
- package/rules/third-party/shopify/ruby/jwt/security/audit/jwt-exposed-data.yaml +24 -0
- package/rules/third-party/shopify/ruby/jwt/security/jwt-exposed-credentials.yaml +25 -0
- package/rules/third-party/shopify/ruby/jwt/security/jwt-hardcode.yaml +36 -0
- package/rules/third-party/shopify/ruby/jwt/security/jwt-none-alg.yaml +23 -0
- package/rules/third-party/shopify/ruby/lang/security/bad-deserialization.yaml +45 -0
- package/rules/third-party/shopify/ruby/lang/security/cookie-serialization.yaml +22 -0
- package/rules/third-party/shopify/ruby/lang/security/create-with.yaml +23 -0
- package/rules/third-party/shopify/ruby/lang/security/dangerous-exec.yaml +72 -0
- package/rules/third-party/shopify/ruby/lang/security/dangerous-open.yaml +23 -0
- package/rules/third-party/shopify/ruby/lang/security/dangerous-open3-pipeline.yaml +23 -0
- package/rules/third-party/shopify/ruby/lang/security/dangerous-subshell.yaml +23 -0
- package/rules/third-party/shopify/ruby/lang/security/dangerous-syscall.yaml +15 -0
- package/rules/third-party/shopify/ruby/lang/security/divide-by-zero.yaml +22 -0
- package/rules/third-party/shopify/ruby/lang/security/file-disclosure.yaml +17 -0
- package/rules/third-party/shopify/ruby/lang/security/filter-skipping.yaml +23 -0
- package/rules/third-party/shopify/ruby/lang/security/force-ssl-false.yaml +17 -0
- package/rules/third-party/shopify/ruby/lang/security/hardcoded-http-auth-in-controller.yaml +22 -0
- package/rules/third-party/shopify/ruby/lang/security/jruby-xml.yaml +22 -0
- package/rules/third-party/shopify/ruby/lang/security/json-encoding.yaml +23 -0
- package/rules/third-party/shopify/ruby/lang/security/json-entity-escape.yaml +19 -0
- package/rules/third-party/shopify/ruby/lang/security/mass-assignment-protection-disabled.yaml +19 -0
- package/rules/third-party/shopify/ruby/lang/security/missing-csrf-protection.yaml +31 -0
- package/rules/third-party/shopify/ruby/lang/security/model-attr-accessible.yaml +37 -0
- package/rules/third-party/shopify/ruby/lang/security/model-attributes-attr-accessible.yaml +32 -0
- package/rules/third-party/shopify/ruby/lang/security/model-attributes-attr-protected.yaml +19 -0
- package/rules/third-party/shopify/ruby/lang/security/nested-attributes-bypass.yaml +22 -0
- package/rules/third-party/shopify/ruby/lang/security/nested-attributes.yaml +19 -0
- package/rules/third-party/shopify/ruby/lang/security/no-eval.yaml +41 -0
- package/rules/third-party/shopify/ruby/lang/security/no-send.yaml +35 -0
- package/rules/third-party/shopify/ruby/lang/security/ssl-mode-no-verify.yaml +17 -0
- package/rules/third-party/shopify/ruby/lang/security/timing-attack.yaml +19 -0
- package/rules/third-party/shopify/ruby/lang/security/unprotected-mass-assign.yaml +31 -0
- package/rules/third-party/shopify/ruby/lang/security/weak-hashes-md5.yaml +25 -0
- package/rules/third-party/shopify/ruby/lang/security/weak-hashes-sha1.yaml +22 -0
- package/rules/third-party/shopify/ruby/lang/security/yaml-parsing.yaml +17 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/avoid-session-manipulation.yaml +23 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/avoid-tainted-file-access.yaml +59 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/avoid-tainted-ftp-call.yaml +29 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/avoid-tainted-http-request.yaml +68 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/avoid-tainted-shell-call.yaml +69 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/sqli/ruby-pg-sqli.yaml +66 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/avoid-content-tag.yaml +20 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/avoid-default-routes.yaml +24 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/avoid-html-safe.yaml +20 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/avoid-link-to.yaml +37 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/avoid-raw.yaml +18 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/avoid-redirect.yaml +51 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/avoid-render-dynamic-path.yaml +31 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/avoid-render-inline.yaml +18 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/avoid-render-text.yaml +21 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/manual-template-creation.yaml +18 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/templates/alias-for-html-safe.yaml +23 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/templates/avoid-content-tag.yaml +23 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/templates/avoid-html-safe.yaml +23 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/templates/avoid-raw.yaml +23 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/templates/dangerous-link-to.yaml +31 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/templates/unquoted-attribute.yaml +29 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/templates/var-in-href.yaml +28 -0
- package/rules/third-party/shopify/ruby/rails/security/audit/xss/templates/var-in-script-tag.yaml +30 -0
- package/rules/third-party/shopify/ruby/rails/security/injection/raw-html-format.yaml +48 -0
- package/rules/typescript/angular/security/audit/angular-domsanitizer.yaml +133 -0
- package/rules/typescript/aws-cdk/security/audit/awscdk-bucket-encryption.yml +49 -0
- package/rules/typescript/aws-cdk/security/audit/awscdk-bucket-enforcessl.yml +39 -0
- package/rules/typescript/aws-cdk/security/audit/awscdk-sqs-unencryptedqueue.yml +44 -0
- package/rules/typescript/aws-cdk/security/awscdk-bucket-grantpublicaccessmethod.yml +42 -0
- package/rules/typescript/aws-cdk/security/awscdk-codebuild-project-public.yml +39 -0
- package/rules/typescript/lang/best-practice/moment-deprecated.yaml +17 -0
- package/rules/typescript/lang/correctness/useless-ternary.yaml +15 -0
- package/rules/typescript/lang/security/audit/cors-regex-wildcard.yaml +33 -0
- package/rules/typescript/nestjs/security/audit/nestjs-header-cors-any.yaml +45 -0
- package/rules/typescript/nestjs/security/audit/nestjs-header-xss-disabled.yaml +35 -0
- package/rules/typescript/nestjs/security/audit/nestjs-open-redirect.yaml +35 -0
- package/rules/typescript/react/best-practice/define-styled-components-on-module-level.yaml +32 -0
- package/rules/typescript/react/best-practice/react-find-dom.yaml +20 -0
- package/rules/typescript/react/best-practice/react-legacy-component.yaml +20 -0
- package/rules/typescript/react/best-practice/react-props-in-state.yaml +58 -0
- package/rules/typescript/react/best-practice/react-props-spreading.yaml +22 -0
- package/rules/typescript/react/portability/i18next/i18next-key-format.yaml +57 -0
- package/rules/typescript/react/portability/i18next/jsx-label-not-i18n.yaml +26 -0
- package/rules/typescript/react/portability/i18next/jsx-not-internationalized.yaml +26 -0
- package/rules/typescript/react/portability/i18next/mui-snackbar-message.yaml +20 -0
- package/rules/typescript/react/portability/i18next/useselect-label-not-i18n.yaml +25 -0
- package/rules/typescript/react/security/audit/react-dangerouslysetinnerhtml.yaml +147 -0
- package/rules/typescript/react/security/audit/react-href-var.yaml +90 -0
- package/rules/typescript/react/security/audit/react-jwt-decoded-property.yaml +32 -0
- package/rules/typescript/react/security/audit/react-jwt-in-localstorage.yaml +38 -0
- package/rules/typescript/react/security/audit/react-unsanitized-method.yaml +148 -0
- package/rules/typescript/react/security/audit/react-unsanitized-property.yaml +162 -0
- package/rules/typescript/react/security/react-insecure-request.yaml +62 -0
- package/rules/typescript/react/security/react-markdown-insecure-html.yaml +51 -0
package/index.js
CHANGED
|
@@ -21,6 +21,21 @@ try {
|
|
|
21
21
|
__dirname = process.cwd();
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
// Helper: return correct env var access syntax per language
|
|
25
|
+
function envVarReplacement(envName, lang) {
|
|
26
|
+
switch(lang) {
|
|
27
|
+
case 'python': return `os.environ.get("${envName}")`;
|
|
28
|
+
case 'go': return `os.Getenv("${envName}")`;
|
|
29
|
+
case 'java': return `System.getenv("${envName}")`;
|
|
30
|
+
case 'php': return `getenv('${envName}')`;
|
|
31
|
+
case 'ruby': return `ENV["${envName}"]`;
|
|
32
|
+
case 'csharp': return `Environment.GetEnvironmentVariable("${envName}")`;
|
|
33
|
+
case 'rust': return `std::env::var("${envName}").unwrap_or_default()`;
|
|
34
|
+
case 'c': case 'cpp': return `getenv("${envName}")`;
|
|
35
|
+
default: return `process.env.${envName}`;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
24
39
|
// Security fix templates - comprehensive coverage for 165+ rules
|
|
25
40
|
const FIX_TEMPLATES = {
|
|
26
41
|
// ===========================================
|
|
@@ -28,73 +43,7 @@ const FIX_TEMPLATES = {
|
|
|
28
43
|
// ===========================================
|
|
29
44
|
"sql-injection": {
|
|
30
45
|
description: "Use parameterized queries instead of string concatenation",
|
|
31
|
-
|
|
32
|
-
// Python f-strings: cursor.execute(f"SELECT * FROM users WHERE id = {user_id}")
|
|
33
|
-
{
|
|
34
|
-
match: /f["'].*(?:SELECT|INSERT|UPDATE|DELETE).*\{(\w+)\}.*["']/i,
|
|
35
|
-
fix: (line) => {
|
|
36
|
-
// Extract the query and variable
|
|
37
|
-
const match = line.match(/(\w+\.(?:execute|query|run))\s*\(\s*f(["'])(.*?)(?:SELECT|INSERT|UPDATE|DELETE)(.*?)\{(\w+)\}(.*?)\2/i);
|
|
38
|
-
if (match) {
|
|
39
|
-
const [, method, quote, prefix, queryStart, varName, suffix] = match;
|
|
40
|
-
// Reconstruct as parameterized query
|
|
41
|
-
const cleanPrefix = prefix.replace(/\{[^}]+\}/g, '?');
|
|
42
|
-
const cleanSuffix = suffix.replace(/\{[^}]+\}/g, '?');
|
|
43
|
-
return line.replace(
|
|
44
|
-
/f(["']).*\1/,
|
|
45
|
-
`"${cleanPrefix}${queryStart.trim().toUpperCase()}${cleanSuffix}?", (${varName},)`
|
|
46
|
-
);
|
|
47
|
-
}
|
|
48
|
-
// Simpler fallback for f-strings
|
|
49
|
-
return line.replace(/f(["'])(.*?)\{(\w+)\}(.*?)\1/, '"$2?$4", ($3,)');
|
|
50
|
-
},
|
|
51
|
-
languages: ['python']
|
|
52
|
-
},
|
|
53
|
-
// Python .format(): "SELECT ... WHERE id = {}".format(user_id)
|
|
54
|
-
{
|
|
55
|
-
match: /["'].*(?:SELECT|INSERT|UPDATE|DELETE).*\{\}.*["']\.format\s*\(/i,
|
|
56
|
-
fix: (line) => {
|
|
57
|
-
return line.replace(
|
|
58
|
-
/(["'])(.*?)\{\}(.*?)\1\.format\s*\(\s*(\w+)\s*\)/,
|
|
59
|
-
'"$2?$3", [$4]'
|
|
60
|
-
);
|
|
61
|
-
},
|
|
62
|
-
languages: ['python']
|
|
63
|
-
},
|
|
64
|
-
// Python % formatting: "SELECT ... WHERE id = %s" % user_id
|
|
65
|
-
{
|
|
66
|
-
match: /["'].*(?:SELECT|INSERT|UPDATE|DELETE).*%s.*["']\s*%\s*\(/i,
|
|
67
|
-
fix: (line) => {
|
|
68
|
-
return line.replace(
|
|
69
|
-
/(["'])(.*?)%s(.*?)\1\s*%\s*\(\s*(\w+)\s*,?\s*\)/,
|
|
70
|
-
'"$2?$3", [$4]'
|
|
71
|
-
);
|
|
72
|
-
},
|
|
73
|
-
languages: ['python']
|
|
74
|
-
},
|
|
75
|
-
// JS template literals: `SELECT * FROM users WHERE id = ${userId}`
|
|
76
|
-
{
|
|
77
|
-
match: /`.*(?:SELECT|INSERT|UPDATE|DELETE).*\$\{.*\}.*`/i,
|
|
78
|
-
fix: (line) => {
|
|
79
|
-
return line.replace(
|
|
80
|
-
/`(.*?)\$\{(\w+)\}(.*?)`/,
|
|
81
|
-
'"$1?$3", [$2]'
|
|
82
|
-
);
|
|
83
|
-
},
|
|
84
|
-
languages: ['javascript', 'typescript']
|
|
85
|
-
},
|
|
86
|
-
// Simple concatenation (no quotes inside): "SELECT ... WHERE id = " + userId
|
|
87
|
-
{
|
|
88
|
-
match: /["'](?:SELECT|INSERT|UPDATE|DELETE)[^"']+["']\s*\+\s*\w+(?!\s*\+\s*["'])/i,
|
|
89
|
-
fix: (line) => {
|
|
90
|
-
return line.replace(
|
|
91
|
-
/(["'])((?:SELECT|INSERT|UPDATE|DELETE)[^"']+)\1\s*\+\s*(\w+)/i,
|
|
92
|
-
'"$2?", [$3]'
|
|
93
|
-
);
|
|
94
|
-
},
|
|
95
|
-
languages: ['javascript', 'python', 'java', 'go', 'ruby', 'php']
|
|
96
|
-
}
|
|
97
|
-
]
|
|
46
|
+
fix: (line) => line.replace(/["']([^"']*)\s*["']\s*\+\s*(\w+)/, '"$1?", [$2]')
|
|
98
47
|
},
|
|
99
48
|
"nosql-injection": {
|
|
100
49
|
description: "Sanitize MongoDB query inputs",
|
|
@@ -170,92 +119,60 @@ const FIX_TEMPLATES = {
|
|
|
170
119
|
// ===========================================
|
|
171
120
|
"hardcoded": {
|
|
172
121
|
description: "Use environment variables",
|
|
173
|
-
fix: (line, lang) => {
|
|
174
|
-
if (lang === 'python') {
|
|
175
|
-
return line.replace(/=\s*["'][^"']+["']/, '= os.environ.get("SECRET")');
|
|
176
|
-
}
|
|
177
|
-
return line.replace(/=\s*["'][^"']+["']/, '= process.env.SECRET');
|
|
178
|
-
}
|
|
122
|
+
fix: (line, lang) => line.replace(/=\s*["'][^"']+["']/, `= ${envVarReplacement("SECRET", lang)}`)
|
|
179
123
|
},
|
|
180
124
|
"api-key": {
|
|
181
125
|
description: "Use environment variables for API keys",
|
|
182
|
-
fix: (line, lang) => {
|
|
183
|
-
if (lang === 'python') return line.replace(/=\s*["'][^"']+["']/, '= os.environ.get("API_KEY")');
|
|
184
|
-
if (lang === 'go') return line.replace(/=\s*["'][^"']+["']/, '= os.Getenv("API_KEY")');
|
|
185
|
-
return line.replace(/=\s*["'][^"']+["']/, '= process.env.API_KEY');
|
|
186
|
-
}
|
|
126
|
+
fix: (line, lang) => line.replace(/=\s*["'][^"']+["']/, `= ${envVarReplacement("API_KEY", lang)}`)
|
|
187
127
|
},
|
|
188
128
|
"password": {
|
|
189
129
|
description: "Use environment variables for passwords",
|
|
190
|
-
fix: (line, lang) => {
|
|
191
|
-
if (lang === 'python') return line.replace(/=\s*["'][^"']+["']/, '= os.environ.get("PASSWORD")');
|
|
192
|
-
if (lang === 'go') return line.replace(/=\s*["'][^"']+["']/, '= os.Getenv("PASSWORD")');
|
|
193
|
-
return line.replace(/=\s*["'][^"']+["']/, '= process.env.PASSWORD');
|
|
194
|
-
}
|
|
130
|
+
fix: (line, lang) => line.replace(/=\s*["'][^"']+["']/, `= ${envVarReplacement("PASSWORD", lang)}`)
|
|
195
131
|
},
|
|
196
132
|
"secret-key": {
|
|
197
133
|
description: "Use environment variables for secret keys",
|
|
198
|
-
fix: (line, lang) => {
|
|
199
|
-
if (lang === 'python') return line.replace(/=\s*["'][^"']+["']/, '= os.environ.get("SECRET_KEY")');
|
|
200
|
-
return line.replace(/=\s*["'][^"']+["']/, '= process.env.SECRET_KEY');
|
|
201
|
-
}
|
|
134
|
+
fix: (line, lang) => line.replace(/=\s*["'][^"']+["']/, `= ${envVarReplacement("SECRET_KEY", lang)}`)
|
|
202
135
|
},
|
|
203
136
|
"aws-access": {
|
|
204
137
|
description: "Use AWS credentials from environment or IAM roles",
|
|
205
|
-
fix: (line) => line.replace(/=\s*["']AKIA[^"']+["']/,
|
|
138
|
+
fix: (line, lang) => line.replace(/=\s*["']AKIA[^"']+["']/, `= ${envVarReplacement("AWS_ACCESS_KEY_ID", lang)}`)
|
|
206
139
|
},
|
|
207
140
|
"aws-secret": {
|
|
208
141
|
description: "Use AWS credentials from environment or IAM roles",
|
|
209
|
-
fix: (line) => line.replace(/=\s*["'][^"']{40}["']/,
|
|
142
|
+
fix: (line, lang) => line.replace(/=\s*["'][^"']{40}["']/, `= ${envVarReplacement("AWS_SECRET_ACCESS_KEY", lang)}`)
|
|
210
143
|
},
|
|
211
144
|
"stripe": {
|
|
212
145
|
description: "Use environment variables for Stripe keys",
|
|
213
|
-
fix: (line, lang) => {
|
|
214
|
-
if (lang === 'python') return line.replace(/=\s*["']sk_(live|test)_[^"']+["']/, '= os.environ.get("STRIPE_SECRET_KEY")');
|
|
215
|
-
return line.replace(/=\s*["']sk_(live|test)_[^"']+["']/, '= process.env.STRIPE_SECRET_KEY');
|
|
216
|
-
}
|
|
146
|
+
fix: (line, lang) => line.replace(/=\s*["']sk_(live|test)_[^"']+["']/, `= ${envVarReplacement("STRIPE_SECRET_KEY", lang)}`)
|
|
217
147
|
},
|
|
218
148
|
"github": {
|
|
219
149
|
description: "Use environment variables for GitHub tokens",
|
|
220
|
-
fix: (line, lang) => {
|
|
221
|
-
if (lang === 'python') return line.replace(/=\s*["'](ghp_|github_pat_)[^"']+["']/, '= os.environ.get("GITHUB_TOKEN")');
|
|
222
|
-
return line.replace(/=\s*["'](ghp_|github_pat_)[^"']+["']/, '= process.env.GITHUB_TOKEN');
|
|
223
|
-
}
|
|
150
|
+
fix: (line, lang) => line.replace(/=\s*["'](ghp_|github_pat_)[^"']+["']/, `= ${envVarReplacement("GITHUB_TOKEN", lang)}`)
|
|
224
151
|
},
|
|
225
152
|
"openai": {
|
|
226
153
|
description: "Use environment variables for OpenAI keys",
|
|
227
|
-
fix: (line, lang) => {
|
|
228
|
-
if (lang === 'python') return line.replace(/=\s*["']sk-[^"']+["']/, '= os.environ.get("OPENAI_API_KEY")');
|
|
229
|
-
return line.replace(/=\s*["']sk-[^"']+["']/, '= process.env.OPENAI_API_KEY');
|
|
230
|
-
}
|
|
154
|
+
fix: (line, lang) => line.replace(/=\s*["']sk-[^"']+["']/, `= ${envVarReplacement("OPENAI_API_KEY", lang)}`)
|
|
231
155
|
},
|
|
232
156
|
"slack": {
|
|
233
157
|
description: "Use environment variables for Slack tokens",
|
|
234
|
-
fix: (line, lang) => {
|
|
235
|
-
if (lang === 'python') return line.replace(/=\s*["']xox[baprs]-[^"']+["']/, '= os.environ.get("SLACK_TOKEN")');
|
|
236
|
-
return line.replace(/=\s*["']xox[baprs]-[^"']+["']/, '= process.env.SLACK_TOKEN');
|
|
237
|
-
}
|
|
158
|
+
fix: (line, lang) => line.replace(/=\s*["']xox[baprs]-[^"']+["']/, `= ${envVarReplacement("SLACK_TOKEN", lang)}`)
|
|
238
159
|
},
|
|
239
160
|
"jwt-token": {
|
|
240
161
|
description: "Use environment variables for JWT secrets",
|
|
241
|
-
fix: (line, lang) => {
|
|
242
|
-
if (lang === 'python') return line.replace(/=\s*["'][^"']+["']/, '= os.environ.get("JWT_SECRET")');
|
|
243
|
-
return line.replace(/=\s*["'][^"']+["']/, '= process.env.JWT_SECRET');
|
|
244
|
-
}
|
|
162
|
+
fix: (line, lang) => line.replace(/=\s*["'][^"']+["']/, `= ${envVarReplacement("JWT_SECRET", lang)}`)
|
|
245
163
|
},
|
|
246
164
|
"private-key": {
|
|
247
165
|
description: "Load private keys from secure file or vault",
|
|
248
166
|
fix: (line, lang) => {
|
|
249
|
-
if (lang === 'python') return line.replace(/=\s*["']-----BEGIN[^"']+["']/,
|
|
167
|
+
if (lang === 'python') return line.replace(/=\s*["']-----BEGIN[^"']+["']/, `= load_key_from_file(${envVarReplacement("PRIVATE_KEY_PATH", lang)})`);
|
|
168
|
+
if (lang === 'go' || lang === 'java' || lang === 'csharp' || lang === 'rust' || lang === 'c' || lang === 'cpp')
|
|
169
|
+
return line.replace(/=\s*["']-----BEGIN[^"']+["']/, `= ${envVarReplacement("PRIVATE_KEY_PATH", lang)}`);
|
|
250
170
|
return line.replace(/=\s*["']-----BEGIN[^"']+["']/, '= fs.readFileSync(process.env.PRIVATE_KEY_PATH)');
|
|
251
171
|
}
|
|
252
172
|
},
|
|
253
173
|
"database-url": {
|
|
254
174
|
description: "Use environment variables for database URLs",
|
|
255
|
-
fix: (line, lang) => {
|
|
256
|
-
if (lang === 'python') return line.replace(/=\s*["'][^"']+["']/, '= os.environ.get("DATABASE_URL")');
|
|
257
|
-
return line.replace(/=\s*["'][^"']+["']/, '= process.env.DATABASE_URL');
|
|
258
|
-
}
|
|
175
|
+
fix: (line, lang) => line.replace(/=\s*["'][^"']+["']/, `= ${envVarReplacement("DATABASE_URL", lang)}`)
|
|
259
176
|
},
|
|
260
177
|
|
|
261
178
|
// ===========================================
|
|
@@ -805,11 +722,20 @@ const FIX_TEMPLATES = {
|
|
|
805
722
|
|
|
806
723
|
// Detect language from file extension
|
|
807
724
|
function detectLanguage(filePath) {
|
|
725
|
+
// Check basename first for extensionless files like Dockerfile
|
|
726
|
+
const basename = filePath.split('/').pop().split('\\').pop().toLowerCase();
|
|
727
|
+
if (basename === 'dockerfile' || basename.startsWith('dockerfile.')) return 'dockerfile';
|
|
728
|
+
|
|
808
729
|
const ext = filePath.split('.').pop().toLowerCase();
|
|
809
730
|
const langMap = {
|
|
810
731
|
'py': 'python', 'js': 'javascript', 'ts': 'typescript',
|
|
811
732
|
'tsx': 'typescript', 'jsx': 'javascript', 'java': 'java',
|
|
812
733
|
'go': 'go', 'rb': 'ruby', 'php': 'php',
|
|
734
|
+
'cs': 'csharp', 'rs': 'rust', 'c': 'c', 'cpp': 'cpp',
|
|
735
|
+
'cc': 'cpp', 'cxx': 'cpp', 'h': 'c', 'hpp': 'cpp',
|
|
736
|
+
'tf': 'terraform', 'hcl': 'terraform',
|
|
737
|
+
'yaml': 'generic', 'yml': 'generic',
|
|
738
|
+
'sql': 'sql',
|
|
813
739
|
// Prompt/text file extensions for prompt injection scanning
|
|
814
740
|
'txt': 'generic', 'md': 'generic', 'prompt': 'generic',
|
|
815
741
|
'jinja': 'generic', 'jinja2': 'generic', 'j2': 'generic'
|
|
@@ -831,96 +757,17 @@ function runAnalyzer(filePath) {
|
|
|
831
757
|
}
|
|
832
758
|
}
|
|
833
759
|
|
|
834
|
-
// Validate that a fix produces valid syntax
|
|
835
|
-
function validateFix(original, fixed, language) {
|
|
836
|
-
// Rule 1: Fix must be different from original
|
|
837
|
-
if (fixed === original || !fixed) {
|
|
838
|
-
return { valid: false, reason: 'no_change' };
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
// Rule 2: Balanced quotes (ignore escaped quotes)
|
|
842
|
-
const unescaped = fixed.replace(/\\["'`]/g, '');
|
|
843
|
-
const singleQuotes = (unescaped.match(/'/g) || []).length;
|
|
844
|
-
const doubleQuotes = (unescaped.match(/"/g) || []).length;
|
|
845
|
-
const backticks = (unescaped.match(/`/g) || []).length;
|
|
846
|
-
if (singleQuotes % 2 !== 0 || doubleQuotes % 2 !== 0 || backticks % 2 !== 0) {
|
|
847
|
-
return { valid: false, reason: 'unbalanced_quotes' };
|
|
848
|
-
}
|
|
849
|
-
|
|
850
|
-
// Rule 3: Balanced brackets
|
|
851
|
-
const brackets = { '(': 0, '[': 0, '{': 0 };
|
|
852
|
-
const closers = { ')': '(', ']': '[', '}': '{' };
|
|
853
|
-
for (const char of unescaped) {
|
|
854
|
-
if (brackets[char] !== undefined) brackets[char]++;
|
|
855
|
-
if (closers[char]) brackets[closers[char]]--;
|
|
856
|
-
}
|
|
857
|
-
if (Object.values(brackets).some(v => v !== 0)) {
|
|
858
|
-
return { valid: false, reason: 'unbalanced_brackets' };
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
// Rule 4: No obvious syntax errors
|
|
862
|
-
const badPatterns = [
|
|
863
|
-
/""[^,\s\]);}]/, // empty string followed by unexpected char
|
|
864
|
-
/\+\s*[)\]}]/, // + followed by closing bracket
|
|
865
|
-
/,\s*\+/, // comma followed by +
|
|
866
|
-
/\(\s*\+/, // open paren followed by +
|
|
867
|
-
];
|
|
868
|
-
for (const pattern of badPatterns) {
|
|
869
|
-
if (pattern.test(fixed)) {
|
|
870
|
-
return { valid: false, reason: 'syntax_error' };
|
|
871
|
-
}
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
return { valid: true };
|
|
875
|
-
}
|
|
876
|
-
|
|
877
760
|
// Generate fix suggestion for an issue
|
|
878
761
|
function generateFix(issue, line, language) {
|
|
879
762
|
const ruleId = issue.ruleId.toLowerCase();
|
|
880
763
|
|
|
881
|
-
for (const [
|
|
882
|
-
if (
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
if (pattern.languages && !pattern.languages.includes(language)) {
|
|
889
|
-
continue;
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
// Skip if pattern doesn't match the line
|
|
893
|
-
if (!pattern.match.test(line)) {
|
|
894
|
-
continue;
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
// Try the fix
|
|
898
|
-
const candidate = pattern.fix(line, language);
|
|
899
|
-
const validation = validateFix(line, candidate, language);
|
|
900
|
-
|
|
901
|
-
if (validation.valid) {
|
|
902
|
-
return {
|
|
903
|
-
description: template.description,
|
|
904
|
-
original: line,
|
|
905
|
-
fixed: candidate
|
|
906
|
-
};
|
|
907
|
-
}
|
|
908
|
-
// If invalid, try next pattern
|
|
909
|
-
}
|
|
910
|
-
}
|
|
911
|
-
|
|
912
|
-
// Fallback: old-style single fix function (backward compatible)
|
|
913
|
-
if (template.fix && typeof template.fix === 'function') {
|
|
914
|
-
const candidate = template.fix(line, language);
|
|
915
|
-
const validation = validateFix(line, candidate, language);
|
|
916
|
-
|
|
917
|
-
if (validation.valid) {
|
|
918
|
-
return {
|
|
919
|
-
description: template.description,
|
|
920
|
-
original: line,
|
|
921
|
-
fixed: candidate
|
|
922
|
-
};
|
|
923
|
-
}
|
|
764
|
+
for (const [pattern, template] of Object.entries(FIX_TEMPLATES)) {
|
|
765
|
+
if (ruleId.includes(pattern)) {
|
|
766
|
+
return {
|
|
767
|
+
description: template.description,
|
|
768
|
+
original: line,
|
|
769
|
+
fixed: template.fix(line, language)
|
|
770
|
+
};
|
|
924
771
|
}
|
|
925
772
|
}
|
|
926
773
|
|
|
@@ -949,88 +796,70 @@ export function createSandboxServer() {
|
|
|
949
796
|
return server;
|
|
950
797
|
}
|
|
951
798
|
|
|
952
|
-
//
|
|
953
|
-
|
|
954
|
-
function convertToSarif(filePath, language, issues) {
|
|
799
|
+
// Convert issues to SARIF 2.1.0 format
|
|
800
|
+
function toSarif(file_path, language, issues) {
|
|
955
801
|
const severityToLevel = {
|
|
802
|
+
'error': 'error',
|
|
956
803
|
'ERROR': 'error',
|
|
804
|
+
'warning': 'warning',
|
|
957
805
|
'WARNING': 'warning',
|
|
958
|
-
'
|
|
959
|
-
'
|
|
806
|
+
'info': 'note',
|
|
807
|
+
'INFO': 'note'
|
|
960
808
|
};
|
|
961
809
|
|
|
962
|
-
// Build rules from
|
|
810
|
+
// Build unique rules from issues
|
|
963
811
|
const rulesMap = new Map();
|
|
964
|
-
|
|
812
|
+
for (const issue of issues) {
|
|
965
813
|
if (!rulesMap.has(issue.ruleId)) {
|
|
966
814
|
rulesMap.set(issue.ruleId, {
|
|
967
815
|
id: issue.ruleId,
|
|
968
|
-
|
|
969
|
-
shortDescription: {
|
|
970
|
-
text: issue.message.replace(/^\[.*?\]\s*/, '') // Remove [RuleName] prefix
|
|
971
|
-
},
|
|
816
|
+
shortDescription: { text: issue.message },
|
|
972
817
|
defaultConfiguration: {
|
|
973
818
|
level: severityToLevel[issue.severity] || 'warning'
|
|
974
819
|
},
|
|
975
|
-
properties: {
|
|
976
|
-
tags: ['security'],
|
|
977
|
-
...(issue.metadata?.cwe && { 'security-severity': '7.0' }),
|
|
978
|
-
},
|
|
979
|
-
helpUri: issue.metadata?.references?.[0] || `https://cwe.mitre.org/data/definitions/${issue.metadata?.cwe?.replace('CWE-', '')}.html`
|
|
820
|
+
properties: issue.metadata || {}
|
|
980
821
|
});
|
|
981
822
|
}
|
|
982
|
-
}
|
|
823
|
+
}
|
|
983
824
|
|
|
984
825
|
// Build results
|
|
985
|
-
const results = issues.map(issue =>
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
text: issue.message
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
region: {
|
|
998
|
-
startLine: (issue.line || 0) + 1, // SARIF uses 1-indexed lines
|
|
999
|
-
startColumn: (issue.column || 0) + 1,
|
|
1000
|
-
endLine: (issue.endLine || issue.line || 0) + 1,
|
|
1001
|
-
endColumn: (issue.endColumn || issue.column || 0) + 1,
|
|
1002
|
-
snippet: issue.line_content ? { text: issue.line_content } : undefined
|
|
826
|
+
const results = issues.map(issue => {
|
|
827
|
+
const result = {
|
|
828
|
+
ruleId: issue.ruleId,
|
|
829
|
+
level: severityToLevel[issue.severity] || 'warning',
|
|
830
|
+
message: { text: issue.message },
|
|
831
|
+
locations: [{
|
|
832
|
+
physicalLocation: {
|
|
833
|
+
artifactLocation: { uri: file_path },
|
|
834
|
+
region: {
|
|
835
|
+
startLine: (issue.line || 0) + 1,
|
|
836
|
+
startColumn: (issue.column || 0) + 1
|
|
837
|
+
}
|
|
1003
838
|
}
|
|
1004
|
-
}
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
},
|
|
839
|
+
}]
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
// Add fix if available
|
|
843
|
+
if (issue.suggested_fix && issue.suggested_fix.fixed) {
|
|
844
|
+
result.fixes = [{
|
|
845
|
+
description: { text: issue.suggested_fix.description || 'Apply security fix' },
|
|
1011
846
|
artifactChanges: [{
|
|
1012
|
-
artifactLocation: {
|
|
1013
|
-
uri: filePath
|
|
1014
|
-
},
|
|
847
|
+
artifactLocation: { uri: file_path },
|
|
1015
848
|
replacements: [{
|
|
1016
849
|
deletedRegion: {
|
|
1017
850
|
startLine: (issue.line || 0) + 1,
|
|
1018
851
|
startColumn: 1,
|
|
1019
852
|
endLine: (issue.line || 0) + 1,
|
|
1020
|
-
endColumn: (issue.
|
|
853
|
+
endColumn: (issue.line_content?.length || 0) + 1
|
|
1021
854
|
},
|
|
1022
|
-
insertedContent: {
|
|
1023
|
-
text: issue.suggested_fix.fixed
|
|
1024
|
-
}
|
|
855
|
+
insertedContent: { text: issue.suggested_fix.fixed }
|
|
1025
856
|
}]
|
|
1026
857
|
}]
|
|
1027
|
-
}]
|
|
1028
|
-
}),
|
|
1029
|
-
properties: {
|
|
1030
|
-
...(issue.metadata?.cwe && { cwe: issue.metadata.cwe }),
|
|
1031
|
-
...(issue.metadata?.owasp && { owasp: issue.metadata.owasp })
|
|
858
|
+
}];
|
|
1032
859
|
}
|
|
1033
|
-
|
|
860
|
+
|
|
861
|
+
return result;
|
|
862
|
+
});
|
|
1034
863
|
|
|
1035
864
|
return {
|
|
1036
865
|
$schema: 'https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json',
|
|
@@ -1039,23 +868,12 @@ function convertToSarif(filePath, language, issues) {
|
|
|
1039
868
|
tool: {
|
|
1040
869
|
driver: {
|
|
1041
870
|
name: 'agent-security-scanner-mcp',
|
|
1042
|
-
version: '
|
|
871
|
+
version: '3.1.0',
|
|
1043
872
|
informationUri: 'https://github.com/sinewaveai/agent-security-scanner-mcp',
|
|
1044
873
|
rules: Array.from(rulesMap.values())
|
|
1045
874
|
}
|
|
1046
875
|
},
|
|
1047
|
-
results
|
|
1048
|
-
invocations: [{
|
|
1049
|
-
executionSuccessful: true,
|
|
1050
|
-
endTimeUtc: new Date().toISOString()
|
|
1051
|
-
}],
|
|
1052
|
-
artifacts: [{
|
|
1053
|
-
location: {
|
|
1054
|
-
uri: filePath,
|
|
1055
|
-
uriBaseId: '%SRCROOT%'
|
|
1056
|
-
},
|
|
1057
|
-
sourceLanguage: language
|
|
1058
|
-
}]
|
|
876
|
+
results: results
|
|
1059
877
|
}]
|
|
1060
878
|
};
|
|
1061
879
|
}
|
|
@@ -1068,7 +886,7 @@ server.tool(
|
|
|
1068
886
|
file_path: z.string().describe("Path to the file to scan"),
|
|
1069
887
|
output_format: z.enum(['json', 'sarif']).optional().describe("Output format: 'json' (default) or 'sarif' for GitHub/GitLab integration")
|
|
1070
888
|
},
|
|
1071
|
-
async ({ file_path, output_format
|
|
889
|
+
async ({ file_path, output_format }) => {
|
|
1072
890
|
if (!existsSync(file_path)) {
|
|
1073
891
|
return {
|
|
1074
892
|
content: [{ type: "text", text: JSON.stringify({ error: "File not found" }) }]
|
|
@@ -1099,13 +917,12 @@ server.tool(
|
|
|
1099
917
|
};
|
|
1100
918
|
});
|
|
1101
919
|
|
|
1102
|
-
// Return SARIF format if requested
|
|
920
|
+
// Return SARIF format if requested
|
|
1103
921
|
if (output_format === 'sarif') {
|
|
1104
|
-
const sarif = convertToSarif(file_path, language, enhancedIssues);
|
|
1105
922
|
return {
|
|
1106
923
|
content: [{
|
|
1107
924
|
type: "text",
|
|
1108
|
-
text: JSON.stringify(
|
|
925
|
+
text: JSON.stringify(toSarif(file_path, language, enhancedIssues), null, 2)
|
|
1109
926
|
}]
|
|
1110
927
|
};
|
|
1111
928
|
}
|
|
@@ -1453,7 +1270,9 @@ server.tool(
|
|
|
1453
1270
|
all_results: results,
|
|
1454
1271
|
recommendation: hallucinated.length > 0
|
|
1455
1272
|
? `⚠️ Found ${hallucinated.length} potentially hallucinated package(s): ${hallucinated.map(r => r.package).join(', ')}`
|
|
1456
|
-
:
|
|
1273
|
+
: unknown.length > 0
|
|
1274
|
+
? `⚠️ ${unknown.length} package(s) could not be verified (no data available for ${ecosystem})`
|
|
1275
|
+
: "✅ All packages verified as legitimate"
|
|
1457
1276
|
}, null, 2)
|
|
1458
1277
|
}]
|
|
1459
1278
|
};
|
|
@@ -1466,18 +1285,31 @@ server.tool(
|
|
|
1466
1285
|
"List statistics about loaded package lists for hallucination detection",
|
|
1467
1286
|
{},
|
|
1468
1287
|
async () => {
|
|
1469
|
-
const stats = Object.entries(LEGITIMATE_PACKAGES).map(([ecosystem, packages]) =>
|
|
1470
|
-
ecosystem
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1288
|
+
const stats = Object.entries(LEGITIMATE_PACKAGES).map(([ecosystem, packages]) => {
|
|
1289
|
+
const bloomFilter = BLOOM_FILTERS[ecosystem];
|
|
1290
|
+
const setSize = packages.size;
|
|
1291
|
+
const hasBloom = !!bloomFilter;
|
|
1292
|
+
return {
|
|
1293
|
+
ecosystem,
|
|
1294
|
+
packages_loaded: setSize,
|
|
1295
|
+
bloom_filter_loaded: hasBloom,
|
|
1296
|
+
status: setSize > 0 ? 'ready' : hasBloom ? 'ready (bloom filter)' : 'not loaded'
|
|
1297
|
+
};
|
|
1298
|
+
});
|
|
1299
|
+
|
|
1300
|
+
const totalSet = stats.reduce((sum, s) => sum + s.packages_loaded, 0);
|
|
1301
|
+
const bloomEcosystems = stats.filter(s => s.bloom_filter_loaded).map(s => s.ecosystem);
|
|
1474
1302
|
|
|
1475
1303
|
return {
|
|
1476
1304
|
content: [{
|
|
1477
1305
|
type: "text",
|
|
1478
1306
|
text: JSON.stringify({
|
|
1479
1307
|
package_lists: stats,
|
|
1480
|
-
total_packages:
|
|
1308
|
+
total_packages: totalSet,
|
|
1309
|
+
bloom_filter_ecosystems: bloomEcosystems,
|
|
1310
|
+
note: bloomEcosystems.length > 0
|
|
1311
|
+
? `Bloom filters provide coverage for: ${bloomEcosystems.join(', ')} (not counted in total_packages)`
|
|
1312
|
+
: undefined,
|
|
1481
1313
|
usage: "Use check_package or scan_packages to detect hallucinated packages"
|
|
1482
1314
|
}, null, 2)
|
|
1483
1315
|
}]
|
|
@@ -1706,35 +1538,50 @@ function calculateRiskScore(findings, context) {
|
|
|
1706
1538
|
|
|
1707
1539
|
avgScore = Math.min(100, avgScore);
|
|
1708
1540
|
|
|
1709
|
-
// Apply sensitivity adjustment
|
|
1541
|
+
// Apply sensitivity adjustment (wider spread for meaningful impact)
|
|
1710
1542
|
if (context?.sensitivity_level === 'high') {
|
|
1711
|
-
avgScore = Math.min(100, avgScore * 1.
|
|
1543
|
+
avgScore = Math.min(100, avgScore * 1.5);
|
|
1712
1544
|
} else if (context?.sensitivity_level === 'low') {
|
|
1713
|
-
avgScore = avgScore * 0.
|
|
1545
|
+
avgScore = avgScore * 0.5;
|
|
1714
1546
|
}
|
|
1715
1547
|
|
|
1716
1548
|
return Math.round(avgScore);
|
|
1717
1549
|
}
|
|
1718
1550
|
|
|
1719
|
-
// Determine action based on risk score and
|
|
1720
|
-
function determineAction(riskScore, findings) {
|
|
1551
|
+
// Determine action based on risk score, findings, and context
|
|
1552
|
+
function determineAction(riskScore, findings, context) {
|
|
1553
|
+
// Adjust thresholds based on sensitivity level
|
|
1554
|
+
let blockThreshold = RISK_THRESHOLDS.HIGH;
|
|
1555
|
+
let warnThreshold = RISK_THRESHOLDS.MEDIUM;
|
|
1556
|
+
let logThreshold = RISK_THRESHOLDS.LOW;
|
|
1557
|
+
|
|
1558
|
+
if (context?.sensitivity_level === 'high') {
|
|
1559
|
+
blockThreshold = 50;
|
|
1560
|
+
warnThreshold = 30;
|
|
1561
|
+
logThreshold = 15;
|
|
1562
|
+
} else if (context?.sensitivity_level === 'low') {
|
|
1563
|
+
blockThreshold = 75;
|
|
1564
|
+
warnThreshold = 50;
|
|
1565
|
+
logThreshold = 30;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1721
1568
|
// Check for any BLOCK action findings
|
|
1722
1569
|
const hasBlockFinding = findings.some(f => f.action === 'BLOCK');
|
|
1723
1570
|
if (hasBlockFinding || riskScore >= RISK_THRESHOLDS.CRITICAL) {
|
|
1724
1571
|
return 'BLOCK';
|
|
1725
1572
|
}
|
|
1726
1573
|
|
|
1727
|
-
if (riskScore >=
|
|
1574
|
+
if (riskScore >= blockThreshold) {
|
|
1728
1575
|
return 'BLOCK';
|
|
1729
1576
|
}
|
|
1730
1577
|
|
|
1731
1578
|
const hasWarnFinding = findings.some(f => f.action === 'WARN');
|
|
1732
|
-
if (hasWarnFinding || riskScore >=
|
|
1579
|
+
if (hasWarnFinding || riskScore >= warnThreshold) {
|
|
1733
1580
|
return 'WARN';
|
|
1734
1581
|
}
|
|
1735
1582
|
|
|
1736
1583
|
const hasLogFinding = findings.some(f => f.action === 'LOG');
|
|
1737
|
-
if (hasLogFinding || riskScore >=
|
|
1584
|
+
if (hasLogFinding || riskScore >= logThreshold) {
|
|
1738
1585
|
return 'LOG';
|
|
1739
1586
|
}
|
|
1740
1587
|
|
|
@@ -1920,9 +1767,45 @@ server.tool(
|
|
|
1920
1767
|
}
|
|
1921
1768
|
}
|
|
1922
1769
|
|
|
1770
|
+
// Multi-turn escalation detection (Bug 9)
|
|
1771
|
+
if (context?.previous_messages && Array.isArray(context.previous_messages) && context.previous_messages.length > 0) {
|
|
1772
|
+
let prevMatchCount = 0;
|
|
1773
|
+
for (const prevMsg of context.previous_messages) {
|
|
1774
|
+
for (const rule of allRules) {
|
|
1775
|
+
for (const pattern of rule.patterns) {
|
|
1776
|
+
try {
|
|
1777
|
+
const regex = new RegExp(pattern, 'i');
|
|
1778
|
+
if (regex.test(prevMsg)) {
|
|
1779
|
+
prevMatchCount++;
|
|
1780
|
+
break;
|
|
1781
|
+
}
|
|
1782
|
+
} catch (e) {
|
|
1783
|
+
// Skip invalid regex
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
if (prevMatchCount > 0) break;
|
|
1787
|
+
}
|
|
1788
|
+
if (prevMatchCount > 0) break;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
// If both previous and current messages have matches, flag escalation
|
|
1792
|
+
if (prevMatchCount > 0 && findings.length > 0) {
|
|
1793
|
+
findings.push({
|
|
1794
|
+
rule_id: 'multi-turn.escalation',
|
|
1795
|
+
category: 'social-engineering',
|
|
1796
|
+
severity: 'WARNING',
|
|
1797
|
+
message: 'Multi-turn escalation detected: suspicious patterns found in both previous and current messages.',
|
|
1798
|
+
matched_text: 'escalation across conversation turns',
|
|
1799
|
+
confidence: 'MEDIUM',
|
|
1800
|
+
risk_score: '70',
|
|
1801
|
+
action: 'WARN'
|
|
1802
|
+
});
|
|
1803
|
+
}
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1923
1806
|
// Calculate risk score
|
|
1924
1807
|
const riskScore = calculateRiskScore(findings, context);
|
|
1925
|
-
const action = determineAction(riskScore, findings);
|
|
1808
|
+
const action = determineAction(riskScore, findings, context);
|
|
1926
1809
|
const riskLevel = getRiskLevel(riskScore);
|
|
1927
1810
|
const explanation = generateExplanation(findings, action);
|
|
1928
1811
|
const recommendations = generateRecommendations(findings);
|
|
@@ -1993,10 +1876,7 @@ const CLIENT_CONFIGS = {
|
|
|
1993
1876
|
name: 'Claude Code',
|
|
1994
1877
|
configKey: 'mcpServers',
|
|
1995
1878
|
configPath: () => join(homedir(), '.claude', 'settings.json'),
|
|
1996
|
-
buildEntry: () => ({ ...MCP_SERVER_ENTRY })
|
|
1997
|
-
// Claude Code stores MCP config per-project in ~/.claude.json, not in settings.json
|
|
1998
|
-
// Use the 'claude mcp add' CLI for reliable per-project configuration
|
|
1999
|
-
useCliCommand: true
|
|
1879
|
+
buildEntry: () => ({ ...MCP_SERVER_ENTRY })
|
|
2000
1880
|
},
|
|
2001
1881
|
'cursor': {
|
|
2002
1882
|
name: 'Cursor',
|
|
@@ -2115,91 +1995,6 @@ function printInitUsage() {
|
|
|
2115
1995
|
console.log(' npx agent-security-scanner-mcp init cline --force --name my-scanner\n');
|
|
2116
1996
|
}
|
|
2117
1997
|
|
|
2118
|
-
// Special init handler for clients that use CLI commands (e.g., Claude Code)
|
|
2119
|
-
async function runCliInit(client, flags) {
|
|
2120
|
-
const serverName = flags.name;
|
|
2121
|
-
const cwd = process.cwd();
|
|
2122
|
-
|
|
2123
|
-
console.log(`\n Client: ${client.name}`);
|
|
2124
|
-
console.log(` Project: ${cwd}`);
|
|
2125
|
-
console.log(` OS: ${platform()} (${process.arch})`);
|
|
2126
|
-
console.log(` Key: ${serverName}\n`);
|
|
2127
|
-
|
|
2128
|
-
// Check if claude CLI is available
|
|
2129
|
-
const claudeCheck = checkCommand('claude', ['--version']);
|
|
2130
|
-
if (!claudeCheck.ok) {
|
|
2131
|
-
console.log(' ERROR: Claude Code CLI not found.');
|
|
2132
|
-
console.log(' Please install Claude Code first: https://claude.ai/download\n');
|
|
2133
|
-
console.log(' Alternative: Use --path to write to ~/.claude/settings.json directly:\n');
|
|
2134
|
-
console.log(` npx agent-security-scanner-mcp init claude-code --path ~/.claude/settings.json\n`);
|
|
2135
|
-
process.exit(1);
|
|
2136
|
-
}
|
|
2137
|
-
|
|
2138
|
-
// Check if already configured for this project
|
|
2139
|
-
const listCheck = checkCommand('claude', ['mcp', 'list']);
|
|
2140
|
-
if (listCheck.ok && listCheck.output.includes(serverName)) {
|
|
2141
|
-
if (!flags.force) {
|
|
2142
|
-
console.log(` ${serverName} is already configured for this project.`);
|
|
2143
|
-
console.log(` Use --force to reconfigure.\n`);
|
|
2144
|
-
process.exit(0);
|
|
2145
|
-
}
|
|
2146
|
-
// Remove existing entry first if --force
|
|
2147
|
-
console.log(` Removing existing ${serverName} configuration...`);
|
|
2148
|
-
try {
|
|
2149
|
-
execFileSync('claude', ['mcp', 'remove', serverName], { encoding: 'utf-8', stdio: 'pipe' });
|
|
2150
|
-
} catch {
|
|
2151
|
-
// Ignore errors - might not exist
|
|
2152
|
-
}
|
|
2153
|
-
}
|
|
2154
|
-
|
|
2155
|
-
// Build the CLI command
|
|
2156
|
-
const cliArgs = ['mcp', 'add', serverName, '--', 'npx', '-y', 'agent-security-scanner-mcp'];
|
|
2157
|
-
const fullCommand = `claude ${cliArgs.join(' ')}`;
|
|
2158
|
-
|
|
2159
|
-
if (flags.dryRun) {
|
|
2160
|
-
console.log(` [dry-run] Would run: ${fullCommand}`);
|
|
2161
|
-
console.log(` [dry-run] In directory: ${cwd}`);
|
|
2162
|
-
console.log(`\n No changes made.\n`);
|
|
2163
|
-
process.exit(0);
|
|
2164
|
-
}
|
|
2165
|
-
|
|
2166
|
-
console.log(` Running: ${fullCommand}`);
|
|
2167
|
-
console.log(` In directory: ${cwd}\n`);
|
|
2168
|
-
|
|
2169
|
-
try {
|
|
2170
|
-
const result = execFileSync('claude', cliArgs, { encoding: 'utf-8', stdio: 'pipe', cwd });
|
|
2171
|
-
console.log(` ${result.trim()}\n`);
|
|
2172
|
-
} catch (e) {
|
|
2173
|
-
console.error(` ERROR: Failed to add MCP server.`);
|
|
2174
|
-
console.error(` ${e.message}\n`);
|
|
2175
|
-
console.log(' Alternative: Add manually to ~/.claude/settings.json:\n');
|
|
2176
|
-
console.log(` {
|
|
2177
|
-
"mcpServers": {
|
|
2178
|
-
"${serverName}": {
|
|
2179
|
-
"command": "npx",
|
|
2180
|
-
"args": ["-y", "agent-security-scanner-mcp"]
|
|
2181
|
-
}
|
|
2182
|
-
}
|
|
2183
|
-
}\n`);
|
|
2184
|
-
process.exit(1);
|
|
2185
|
-
}
|
|
2186
|
-
|
|
2187
|
-
// Verify it was added
|
|
2188
|
-
const verifyCheck = checkCommand('claude', ['mcp', 'list']);
|
|
2189
|
-
if (verifyCheck.ok && verifyCheck.output.includes(serverName)) {
|
|
2190
|
-
console.log(` ✓ Successfully configured ${serverName} for this project!\n`);
|
|
2191
|
-
} else {
|
|
2192
|
-
console.log(` ⚠ Configuration may have succeeded but verification failed.`);
|
|
2193
|
-
console.log(` Run 'claude mcp list' to check.\n`);
|
|
2194
|
-
}
|
|
2195
|
-
|
|
2196
|
-
console.log(` Next steps:`);
|
|
2197
|
-
console.log(` 1. Restart Claude Code in this folder`);
|
|
2198
|
-
console.log(` 2. Verify by asking: "What MCP tools do you have?"`);
|
|
2199
|
-
console.log(` 3. Test: "Scan this file for security issues"\n`);
|
|
2200
|
-
console.log(` Note: Run this command in each project folder where you want security scanning.\n`);
|
|
2201
|
-
}
|
|
2202
|
-
|
|
2203
1998
|
async function runInit(flags) {
|
|
2204
1999
|
let clientName = flags.client;
|
|
2205
2000
|
|
|
@@ -2220,12 +2015,6 @@ async function runInit(flags) {
|
|
|
2220
2015
|
process.exit(1);
|
|
2221
2016
|
}
|
|
2222
2017
|
|
|
2223
|
-
// Special handling for clients that use CLI commands (like Claude Code)
|
|
2224
|
-
if (client.useCliCommand && !flags.path) {
|
|
2225
|
-
await runCliInit(client, flags);
|
|
2226
|
-
return;
|
|
2227
|
-
}
|
|
2228
|
-
|
|
2229
2018
|
const configPath = flags.path || client.configPath();
|
|
2230
2019
|
const serverName = flags.name;
|
|
2231
2020
|
const entry = client.buildEntry();
|
|
@@ -2430,53 +2219,6 @@ async function runDoctor(flags) {
|
|
|
2430
2219
|
console.log('\n Client Configurations');
|
|
2431
2220
|
|
|
2432
2221
|
for (const [key, client] of Object.entries(CLIENT_CONFIGS)) {
|
|
2433
|
-
// Special handling for Claude Code - uses per-project config via CLI
|
|
2434
|
-
if (client.useCliCommand) {
|
|
2435
|
-
const claudeCheck = checkCommand('claude', ['--version']);
|
|
2436
|
-
if (!claudeCheck.ok) {
|
|
2437
|
-
console.log(` \u2014 ${client.name.padEnd(20)} not installed (claude CLI not found)`);
|
|
2438
|
-
continue;
|
|
2439
|
-
}
|
|
2440
|
-
|
|
2441
|
-
// Check if configured for current project using claude mcp list
|
|
2442
|
-
const listCheck = checkCommand('claude', ['mcp', 'list']);
|
|
2443
|
-
if (listCheck.ok && listCheck.output) {
|
|
2444
|
-
const output = listCheck.output.toLowerCase();
|
|
2445
|
-
const hasScanner = output.includes('security-scanner') ||
|
|
2446
|
-
output.includes('agentic-security') ||
|
|
2447
|
-
output.includes('agent-security-scanner');
|
|
2448
|
-
if (hasScanner) {
|
|
2449
|
-
// Extract the actual server name from output
|
|
2450
|
-
let serverName = 'security-scanner';
|
|
2451
|
-
if (output.includes('agentic-security')) serverName = 'agentic-security';
|
|
2452
|
-
console.log(` \u2713 ${client.name.padEnd(20)} configured (${serverName})`);
|
|
2453
|
-
} else if (output.includes('no mcp servers configured')) {
|
|
2454
|
-
console.log(` \u2717 ${client.name.padEnd(20)} not configured for this project`);
|
|
2455
|
-
if (fix) {
|
|
2456
|
-
try {
|
|
2457
|
-
execFileSync('claude', ['mcp', 'add', 'security-scanner', '--', 'npx', '-y', 'agent-security-scanner-mcp'],
|
|
2458
|
-
{ encoding: 'utf-8', stdio: 'pipe' });
|
|
2459
|
-
console.log(` \u2713 Fixed: added security-scanner via claude mcp add`);
|
|
2460
|
-
fixed++;
|
|
2461
|
-
} catch {
|
|
2462
|
-
console.log(` \u2717 Auto-fix failed. Run: npx agent-security-scanner-mcp init claude-code`);
|
|
2463
|
-
issues++;
|
|
2464
|
-
}
|
|
2465
|
-
} else {
|
|
2466
|
-
console.log(` Fix: npx agent-security-scanner-mcp init claude-code`);
|
|
2467
|
-
issues++;
|
|
2468
|
-
}
|
|
2469
|
-
} else {
|
|
2470
|
-
console.log(` \u2717 ${client.name.padEnd(20)} entry missing from project config`);
|
|
2471
|
-
console.log(` Fix: npx agent-security-scanner-mcp init claude-code`);
|
|
2472
|
-
issues++;
|
|
2473
|
-
}
|
|
2474
|
-
} else {
|
|
2475
|
-
console.log(` \u26a0 ${client.name.padEnd(20)} could not check config (run 'claude mcp list' manually)`);
|
|
2476
|
-
}
|
|
2477
|
-
continue;
|
|
2478
|
-
}
|
|
2479
|
-
|
|
2480
2222
|
let configPath;
|
|
2481
2223
|
try { configPath = client.configPath(); } catch { continue; }
|
|
2482
2224
|
|
|
@@ -2615,7 +2357,7 @@ app.get("/run", (req, res) => {
|
|
|
2615
2357
|
import subprocess
|
|
2616
2358
|
import hashlib
|
|
2617
2359
|
|
|
2618
|
-
API_SECRET = "
|
|
2360
|
+
API_SECRET = "stripe_test_FAKEFAKEFAKEFAKE1234"
|
|
2619
2361
|
|
|
2620
2362
|
def get_user(user_id):
|
|
2621
2363
|
query = f"SELECT * FROM users WHERE id = {user_id}"
|