@iflow-mcp/sinewaveai-agent-security-scanner-mcp 3.18.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/LICENSE +21 -0
- package/README.md +1293 -0
- package/analyzer.py +314 -0
- package/ast_parser.py +296 -0
- package/cross_file_analyzer.py +216 -0
- package/daemon.py +179 -0
- package/generic_ast.py +577 -0
- package/index.js +584 -0
- package/openclaw.plugin.json +41 -0
- package/package.json +1 -0
- package/packages/crates.txt +156488 -0
- package/packages/dart.txt +67353 -0
- package/packages/npm-bloom.json +1 -0
- package/packages/perl.txt +55924 -0
- package/packages/pypi-bloom.json +1 -0
- package/packages/raku.txt +2138 -0
- package/packages/rubygems-bloom.json +1 -0
- package/pattern_matcher.py +551 -0
- package/regex_fallback.py +732 -0
- package/requirements.txt +14 -0
- package/rules/__init__.py +261 -0
- package/rules/__pycache__/__init__.cpython-311.pyc +0 -0
- package/rules/agent-attacks.security.yaml +791 -0
- 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/c.security.yaml +459 -0
- package/rules/clawhavoc.yaml +443 -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/dockerfile.security.yaml +291 -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/generic.secrets.yaml +503 -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/go.security.yaml +380 -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/java.security.yaml +453 -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/javascript.security.yaml +504 -0
- package/rules/openclaw.security.yaml +283 -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/php.security.yaml +461 -0
- package/rules/prompt-injection.security.yaml +1075 -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/python.security.yaml +602 -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/ruby.security.yaml +400 -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/semantic-security.yaml +679 -0
- package/rules/terraform.security.yaml +505 -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/scripts/postinstall.js +60 -0
- package/semgrep_loader.py +575 -0
- package/server.json +8 -0
- package/skills/openclaw/SKILL.md +102 -0
- package/skills/security-review.md +139 -0
- package/skills/security-scan-batch.md +107 -0
- package/skills/security-scanner.md +76 -0
- package/src/analyzer.py +119 -0
- package/src/cli/audit.js +25 -0
- package/src/cli/demo.js +228 -0
- package/src/cli/doctor.js +316 -0
- package/src/cli/harden.js +22 -0
- package/src/cli/init-hooks.js +164 -0
- package/src/cli/init.js +443 -0
- package/src/cli/report.js +444 -0
- package/src/cli/scan-clawhub-full.js +518 -0
- package/src/cli/scan-clawhub-safe.js +393 -0
- package/src/cli/scan-clawhub.js +308 -0
- package/src/config.js +250 -0
- package/src/context.js +293 -0
- package/src/daemon-client.js +292 -0
- package/src/dedup.js +129 -0
- package/src/fix-patterns.js +755 -0
- package/src/history.js +159 -0
- package/src/plugin-config.js +77 -0
- package/src/plugin-health.js +49 -0
- package/src/python.js +54 -0
- package/src/tools/check-package.js +193 -0
- package/src/tools/fix-security.js +142 -0
- package/src/tools/import-resolver.js +249 -0
- package/src/tools/project-context.js +365 -0
- package/src/tools/scan-action.js +709 -0
- package/src/tools/scan-diff.js +151 -0
- package/src/tools/scan-mcp.js +1108 -0
- package/src/tools/scan-packages.js +154 -0
- package/src/tools/scan-project.js +320 -0
- package/src/tools/scan-prompt.js +891 -0
- package/src/tools/scan-security.js +226 -0
- package/src/tools/scan-skill-prompt.js +547 -0
- package/src/tools/scan-skill.js +1115 -0
- package/src/typosquat.js +210 -0
- package/src/utils.js +477 -0
- package/taint_analyzer.py +856 -0
- package/templates/gitlab-ci-security.yml +225 -0
- package/templates/pre-commit-hook.sh +233 -0
|
@@ -0,0 +1,2138 @@
|
|
|
1
|
+
ABC
|
|
2
|
+
ACME::Fez
|
|
3
|
+
ADT
|
|
4
|
+
AI::Agent
|
|
5
|
+
AI::FANN
|
|
6
|
+
AI::Gator
|
|
7
|
+
AI::NLP
|
|
8
|
+
ANTLR4::Grammar
|
|
9
|
+
API::Discord
|
|
10
|
+
API::Perspective
|
|
11
|
+
API::USNavalObservatory
|
|
12
|
+
APISports::Football
|
|
13
|
+
ASCII::To::Uni
|
|
14
|
+
ASN::BER
|
|
15
|
+
ASN::Grammar
|
|
16
|
+
ASN::META
|
|
17
|
+
ASTQuery
|
|
18
|
+
AVL-Tree
|
|
19
|
+
AWS::Pricing
|
|
20
|
+
AWS::SNS::Notification
|
|
21
|
+
AWS::Session
|
|
22
|
+
Abbreviations
|
|
23
|
+
AccessorFacade
|
|
24
|
+
AccountableBagHash
|
|
25
|
+
Acme::Anguish
|
|
26
|
+
Acme::BaseCJK
|
|
27
|
+
Acme::Cow
|
|
28
|
+
Acme::Don't
|
|
29
|
+
Acme::Insult::Lala
|
|
30
|
+
Acme::Mangle
|
|
31
|
+
Acme::Meow
|
|
32
|
+
Acme::Overreact
|
|
33
|
+
Acme::OwO
|
|
34
|
+
Acme::Polyglot::Levenshtein::Damerau
|
|
35
|
+
Acme::Rautavistic::Sort
|
|
36
|
+
Acme::Scrub
|
|
37
|
+
Acme::Skynet
|
|
38
|
+
Acme::Sudoku
|
|
39
|
+
Acme::Test::Module
|
|
40
|
+
Acme::Test::Module::Zef
|
|
41
|
+
Acme::Text::UpsideDown
|
|
42
|
+
Actor
|
|
43
|
+
Adverb::Eject
|
|
44
|
+
Air
|
|
45
|
+
Air::Examples
|
|
46
|
+
Air::Play
|
|
47
|
+
Air::Plugin::Hilite
|
|
48
|
+
Algorithm::AhoCorasick
|
|
49
|
+
Algorithm::BinaryIndexedTree
|
|
50
|
+
Algorithm::BloomFilter
|
|
51
|
+
Algorithm::DawkinsWeasel
|
|
52
|
+
Algorithm::Diff
|
|
53
|
+
Algorithm::Elo
|
|
54
|
+
Algorithm::Evolutionary::Simple
|
|
55
|
+
Algorithm::Genetic
|
|
56
|
+
Algorithm::GooglePolylineEncoding
|
|
57
|
+
Algorithm::Heap::Binary
|
|
58
|
+
Algorithm::HierarchicalPAM
|
|
59
|
+
Algorithm::KDimensionalTree
|
|
60
|
+
Algorithm::KdTree
|
|
61
|
+
Algorithm::Kruskal
|
|
62
|
+
Algorithm::LBFGS
|
|
63
|
+
Algorithm::LCS
|
|
64
|
+
Algorithm::LDA
|
|
65
|
+
Algorithm::LibSVM
|
|
66
|
+
Algorithm::Manacher
|
|
67
|
+
Algorithm::MinMaxHeap
|
|
68
|
+
Algorithm::NaiveBayes
|
|
69
|
+
Algorithm::SetUnion
|
|
70
|
+
Algorithm::SkewHeap
|
|
71
|
+
Algorithm::Soundex
|
|
72
|
+
Algorithm::SpiralMatrix
|
|
73
|
+
Algorithm::Tarjan
|
|
74
|
+
Algorithm::TernarySearchTree
|
|
75
|
+
Algorithm::Treap
|
|
76
|
+
Algorithm::Trie::libdatrie
|
|
77
|
+
Algorithm::Viterbi
|
|
78
|
+
Algorithm::XGBoost
|
|
79
|
+
Algorithm::ZhangShasha
|
|
80
|
+
Algorithm::ZobristHashing
|
|
81
|
+
AlgorithmsIT
|
|
82
|
+
Amazon::DynamoDB
|
|
83
|
+
Apache::LogFormat
|
|
84
|
+
App::APOTD
|
|
85
|
+
App::AizuOnlineJudge
|
|
86
|
+
App::Assixt
|
|
87
|
+
App::Browser
|
|
88
|
+
App::CPAN
|
|
89
|
+
App::Cal
|
|
90
|
+
App::Crag
|
|
91
|
+
App::Doc-N-Save
|
|
92
|
+
App::Ebread
|
|
93
|
+
App::Ecosystems
|
|
94
|
+
App::FIT2GPX
|
|
95
|
+
App::FindSource
|
|
96
|
+
App::GPTrixie
|
|
97
|
+
App::GTD
|
|
98
|
+
App::Game::Concentration
|
|
99
|
+
App::Gitstatus
|
|
100
|
+
App::Heater
|
|
101
|
+
App::IRC::Log
|
|
102
|
+
App::InstallerMaker::WiX
|
|
103
|
+
App::JSONDiff
|
|
104
|
+
App::Lorea
|
|
105
|
+
App::MPD::AutoQueue
|
|
106
|
+
App::MPD::Notify
|
|
107
|
+
App::Mi6
|
|
108
|
+
App::MoarVM::ConfprogCompiler
|
|
109
|
+
App::MoarVM::Debug
|
|
110
|
+
App::MoarVM::HeapAnalyzer::Model
|
|
111
|
+
App::ModuleSnap
|
|
112
|
+
App::Nopaste
|
|
113
|
+
App::OrgSleep
|
|
114
|
+
App::P6Dx
|
|
115
|
+
App::Perl6LangServer
|
|
116
|
+
App::Platform
|
|
117
|
+
App::Prove6
|
|
118
|
+
App::RaCoCo
|
|
119
|
+
App::Racoco::Report::ReporterCoveralls
|
|
120
|
+
App::Rak
|
|
121
|
+
App::Rak::Complete
|
|
122
|
+
App::Rak::Markdown
|
|
123
|
+
App::Raku::Log
|
|
124
|
+
App::RakuCron
|
|
125
|
+
App::Rakuman
|
|
126
|
+
App::SerializerPerf
|
|
127
|
+
App::ShowPath
|
|
128
|
+
App::SixLib
|
|
129
|
+
App::Stouch
|
|
130
|
+
App::SudokuHelper
|
|
131
|
+
App::Tasks
|
|
132
|
+
App::Uni
|
|
133
|
+
App::Unicode::Mangle
|
|
134
|
+
App::Whiff
|
|
135
|
+
App::Workflows::Github
|
|
136
|
+
App::Zef-Deps
|
|
137
|
+
App::ecogen
|
|
138
|
+
App::fix.raku
|
|
139
|
+
App::nm2perl6
|
|
140
|
+
App::pack.raku
|
|
141
|
+
App::pixel::pick
|
|
142
|
+
App::pixelpick
|
|
143
|
+
App::termie
|
|
144
|
+
App::tmeta
|
|
145
|
+
App::upgrade-raku.raku
|
|
146
|
+
App:Racl
|
|
147
|
+
Archive::Ar
|
|
148
|
+
Archive::Libarchive
|
|
149
|
+
Archive::Libarchive::Raw
|
|
150
|
+
Archive::SimpleZip
|
|
151
|
+
Archive::Tar::PP
|
|
152
|
+
Arithmetic::PaperAndPencil
|
|
153
|
+
Array::Agnostic
|
|
154
|
+
Array::Circular
|
|
155
|
+
Array::Rounded
|
|
156
|
+
Array::Shaped::Console
|
|
157
|
+
Array::Sorted::Map
|
|
158
|
+
Array::Sorted::Util
|
|
159
|
+
Array::Sparse
|
|
160
|
+
Array::Unsorted::Map
|
|
161
|
+
ArrayHash
|
|
162
|
+
Ask
|
|
163
|
+
Asserter
|
|
164
|
+
Astro::Sunrise
|
|
165
|
+
Astro::Utils
|
|
166
|
+
Async::Command
|
|
167
|
+
Async::Workers
|
|
168
|
+
AttrX::Lazy
|
|
169
|
+
AttrX::Mooish
|
|
170
|
+
AttrX::PrivateAccessor
|
|
171
|
+
Attribute::Lazy
|
|
172
|
+
Attribute::Predicate
|
|
173
|
+
Audio::Convert::Samplerate
|
|
174
|
+
Audio::Encode::LameMP3
|
|
175
|
+
Audio::Fingerprint::Chromaprint
|
|
176
|
+
Audio::Hydrogen
|
|
177
|
+
Audio::Icecast
|
|
178
|
+
Audio::Libshout
|
|
179
|
+
Audio::Liquidsoap
|
|
180
|
+
Audio::MIDI::Note
|
|
181
|
+
Audio::OggVorbis
|
|
182
|
+
Audio::Playlist::JSPF
|
|
183
|
+
Audio::PortAudio
|
|
184
|
+
Audio::PortMIDI
|
|
185
|
+
Audio::Silan
|
|
186
|
+
Audio::Sndfile
|
|
187
|
+
Audio::TagLib
|
|
188
|
+
Audio::Taglib::Simple
|
|
189
|
+
Auth::PAM::Simple
|
|
190
|
+
Auth::SAML2
|
|
191
|
+
Auth::SASL
|
|
192
|
+
Auth::SCRAM
|
|
193
|
+
Auth::SCRAM::Async
|
|
194
|
+
Automata::Cellular
|
|
195
|
+
Avro
|
|
196
|
+
BDD::Behave
|
|
197
|
+
BSON
|
|
198
|
+
BSON::Simple
|
|
199
|
+
BTree
|
|
200
|
+
Backtrace::AsHTML
|
|
201
|
+
Backtrace::Files
|
|
202
|
+
Badger
|
|
203
|
+
Bailador
|
|
204
|
+
Bailador::Plugin::NamedQueries
|
|
205
|
+
Base58
|
|
206
|
+
Base64
|
|
207
|
+
Base64::Native
|
|
208
|
+
Base::Any
|
|
209
|
+
Bench
|
|
210
|
+
Benchmark
|
|
211
|
+
Benchmark::Plot
|
|
212
|
+
Benchy
|
|
213
|
+
BigRoot
|
|
214
|
+
Bin::Utils
|
|
215
|
+
Binary::Structured
|
|
216
|
+
BinaryHeap
|
|
217
|
+
Bio
|
|
218
|
+
BioInfo
|
|
219
|
+
BioPerl6
|
|
220
|
+
BitEnum
|
|
221
|
+
Bitcoin
|
|
222
|
+
Bitcoin::Core::Secp256k1
|
|
223
|
+
Bitcoin::RPC::Client
|
|
224
|
+
Bits
|
|
225
|
+
Blin
|
|
226
|
+
BlkMeV
|
|
227
|
+
Brazilian::FederalDocuments
|
|
228
|
+
Browser::Open
|
|
229
|
+
BuildToolchainRepo
|
|
230
|
+
Bundle-Compress-Zlib
|
|
231
|
+
Bundle-IO-Compress-Bzip2
|
|
232
|
+
Business::CreditCard
|
|
233
|
+
BusyIndicator
|
|
234
|
+
C::Parser
|
|
235
|
+
CBOR::Simple
|
|
236
|
+
CCChart
|
|
237
|
+
CCColor
|
|
238
|
+
CCLog
|
|
239
|
+
CI::Gen
|
|
240
|
+
CLDR::List
|
|
241
|
+
CLI::AWS::EC2-Simple
|
|
242
|
+
CLI::Ecosystem
|
|
243
|
+
CLI::Graphing::BarChart
|
|
244
|
+
CLI::Help
|
|
245
|
+
CLI::Version
|
|
246
|
+
CLI::Wordpress
|
|
247
|
+
CLI::Wordpress::Migrator
|
|
248
|
+
CPAN::Uploader::Tiny
|
|
249
|
+
CRDT
|
|
250
|
+
CSS
|
|
251
|
+
CSS::Font::Resources
|
|
252
|
+
CSS::Grammar
|
|
253
|
+
CSS::Module
|
|
254
|
+
CSS::Module::CSS3::Selectors
|
|
255
|
+
CSS::Nested
|
|
256
|
+
CSS::Properties
|
|
257
|
+
CSS::Selector::To::XPath
|
|
258
|
+
CSS::Specification
|
|
259
|
+
CSS::Stylesheet
|
|
260
|
+
CSS::TagSet
|
|
261
|
+
CSS::Writer
|
|
262
|
+
CSV-AutoClass
|
|
263
|
+
CSV::Parser
|
|
264
|
+
CSV::Table
|
|
265
|
+
CUID
|
|
266
|
+
CWT-Repository-Hash
|
|
267
|
+
Cache::Async
|
|
268
|
+
Cache::Dir
|
|
269
|
+
Cache::Memcached
|
|
270
|
+
Cairo
|
|
271
|
+
Calendar
|
|
272
|
+
CamelPub
|
|
273
|
+
Canoe
|
|
274
|
+
Carp
|
|
275
|
+
Channel::Pauseable
|
|
276
|
+
Chart::EasyGnuplot
|
|
277
|
+
Chart::Gnuplot
|
|
278
|
+
CheckSocket
|
|
279
|
+
Chemistry::Elements
|
|
280
|
+
Chemistry::Stoichiometry
|
|
281
|
+
Chess
|
|
282
|
+
Chinese
|
|
283
|
+
Chronic
|
|
284
|
+
Class::Loader::Dynamic
|
|
285
|
+
Class::Utils
|
|
286
|
+
ClassX::StrictConstructor
|
|
287
|
+
ClassicalChinese
|
|
288
|
+
Clean
|
|
289
|
+
Clifford
|
|
290
|
+
Clipboard
|
|
291
|
+
Clu
|
|
292
|
+
Cmark
|
|
293
|
+
Code::Coverable
|
|
294
|
+
Code::Coverage
|
|
295
|
+
CodeUnit
|
|
296
|
+
Cofra
|
|
297
|
+
Collection
|
|
298
|
+
Collection-Plugin-Development
|
|
299
|
+
Collection-Raku-Documentation
|
|
300
|
+
Color
|
|
301
|
+
Color::Named
|
|
302
|
+
Color::Names
|
|
303
|
+
Color::Palette
|
|
304
|
+
Color::Scheme
|
|
305
|
+
Colorizable
|
|
306
|
+
Command::Despatch
|
|
307
|
+
Commands
|
|
308
|
+
CommonMark
|
|
309
|
+
CompUnit::DynamicLib
|
|
310
|
+
CompUnit::Repository::Github
|
|
311
|
+
CompUnit::Repository::Mask
|
|
312
|
+
CompUnit::Repository::Tar
|
|
313
|
+
CompUnit::Search
|
|
314
|
+
Compress::Brotli
|
|
315
|
+
Compress::Bzip2
|
|
316
|
+
Compress::Bzip2::Raw
|
|
317
|
+
Compress::PDF
|
|
318
|
+
Compress::Snappy
|
|
319
|
+
Compress::Zlib
|
|
320
|
+
Compress::Zlib::Raw
|
|
321
|
+
Compress::Zstd
|
|
322
|
+
Concurrent::BoundedChannel
|
|
323
|
+
Concurrent::Channelify
|
|
324
|
+
Concurrent::File::Find
|
|
325
|
+
Concurrent::Iterator
|
|
326
|
+
Concurrent::PChannel
|
|
327
|
+
Concurrent::PriorityQueue
|
|
328
|
+
Concurrent::Progress
|
|
329
|
+
Concurrent::Queue
|
|
330
|
+
Concurrent::Stack
|
|
331
|
+
Concurrent::Trie
|
|
332
|
+
Config
|
|
333
|
+
Config::BINDish
|
|
334
|
+
Config::Clever
|
|
335
|
+
Config::DataLang::Refine
|
|
336
|
+
Config::Ini
|
|
337
|
+
Config::Netrc
|
|
338
|
+
Config::Parser::NetRC
|
|
339
|
+
Config::Parser::json
|
|
340
|
+
Config::Parser::toml
|
|
341
|
+
Config::Parser::yaml
|
|
342
|
+
Config::Simple
|
|
343
|
+
Config::TOML
|
|
344
|
+
Configuration
|
|
345
|
+
Console::Blackjack
|
|
346
|
+
Constants::Net::If
|
|
347
|
+
Constants::Netinet::In
|
|
348
|
+
Constants::Sys::Socket
|
|
349
|
+
Contact
|
|
350
|
+
Contact::Name
|
|
351
|
+
Control::Bail
|
|
352
|
+
Cookie::Baker
|
|
353
|
+
Cookie::Jar
|
|
354
|
+
Cooklang
|
|
355
|
+
CoreHackers::Q
|
|
356
|
+
CoreHackers::Sourcery
|
|
357
|
+
Coro::Simple
|
|
358
|
+
Crane
|
|
359
|
+
Cro-HTTP-Middleware-GoatCounter
|
|
360
|
+
Cro::APIToken
|
|
361
|
+
Cro::APIToken::Store::Pg
|
|
362
|
+
Cro::CBOR
|
|
363
|
+
Cro::Core
|
|
364
|
+
Cro::FCGI
|
|
365
|
+
Cro::H
|
|
366
|
+
Cro::HTTP
|
|
367
|
+
Cro::HTTP::BodyParser::JSONClass
|
|
368
|
+
Cro::HTTP::BodySerializerJSONClass
|
|
369
|
+
Cro::HTTP::Session::MySQL
|
|
370
|
+
Cro::HTTP::Session::Pg
|
|
371
|
+
Cro::HTTP::Session::Red
|
|
372
|
+
Cro::HTTP::Session::SQLite
|
|
373
|
+
Cro::HTTP::Test
|
|
374
|
+
Cro::OpenAPI::RoutesFromDefinition
|
|
375
|
+
Cro::RPC::JSON
|
|
376
|
+
Cro::SSL
|
|
377
|
+
Cro::TLS
|
|
378
|
+
Cro::WebApp
|
|
379
|
+
Cro::WebApp::Evaluate
|
|
380
|
+
Cro::WebSocket
|
|
381
|
+
Cro::ZeroMQ
|
|
382
|
+
CroX::HTTP::Auth::Munge
|
|
383
|
+
CroX::HTTP::FallbackPassthru
|
|
384
|
+
CroX::HTTP::Transform::GraphQL
|
|
385
|
+
Cromponent
|
|
386
|
+
Cromtit
|
|
387
|
+
Crust
|
|
388
|
+
Crust::Handler::SCGI
|
|
389
|
+
Crust::Middleware::Session
|
|
390
|
+
Crust::Middleware::Syslog
|
|
391
|
+
Crypt::AnyPasswordHash
|
|
392
|
+
Crypt::Argon2
|
|
393
|
+
Crypt::Bcrypt
|
|
394
|
+
Crypt::CAST5
|
|
395
|
+
Crypt::LibGcrypt
|
|
396
|
+
Crypt::LibScrypt
|
|
397
|
+
Crypt::Libcrypt
|
|
398
|
+
Crypt::RC4
|
|
399
|
+
Crypt::RSA
|
|
400
|
+
Crypt::Random
|
|
401
|
+
Crypt::SodiumPasswordHash
|
|
402
|
+
Crypt::SodiumScrypt
|
|
403
|
+
Crypt::TweetNacl
|
|
404
|
+
CucumisSextus
|
|
405
|
+
Curlie
|
|
406
|
+
Curry
|
|
407
|
+
CustomImporting
|
|
408
|
+
DAWG
|
|
409
|
+
DB
|
|
410
|
+
DB::Migration::Declare
|
|
411
|
+
DB::Migration::Simple
|
|
412
|
+
DB::MySQL
|
|
413
|
+
DB::ORM::Quicky
|
|
414
|
+
DB::Pg
|
|
415
|
+
DB::SQLite
|
|
416
|
+
DB::Xoos
|
|
417
|
+
DB::Xoos::MySQL
|
|
418
|
+
DB::Xoos::Pg
|
|
419
|
+
DB::Xoos::SQLite
|
|
420
|
+
DBDish::ODBC
|
|
421
|
+
DBI::Async
|
|
422
|
+
DBIish
|
|
423
|
+
DBIish::Pool
|
|
424
|
+
DBIish::Transaction
|
|
425
|
+
DBIx::NamedQueries
|
|
426
|
+
DEBUG
|
|
427
|
+
DNS::Zone
|
|
428
|
+
DOM::Tiny
|
|
429
|
+
DSL::Bulgarian
|
|
430
|
+
DSL::English::ClassificationWorkflows
|
|
431
|
+
DSL::English::DataQueryWorkflows
|
|
432
|
+
DSL::English::LatentSemanticAnalysisWorkflows
|
|
433
|
+
DSL::English::QuantileRegressionWorkflows
|
|
434
|
+
DSL::English::RecommenderWorkflows
|
|
435
|
+
DSL::English::SearchEngineQueries
|
|
436
|
+
DSL::Entity::AddressBook
|
|
437
|
+
DSL::Entity::Geographics
|
|
438
|
+
DSL::Entity::MachineLearning
|
|
439
|
+
DSL::Entity::Metadata
|
|
440
|
+
DSL::Entity::WeatherData
|
|
441
|
+
DSL::Examples
|
|
442
|
+
DSL::FiniteStateMachines
|
|
443
|
+
DSL::Shared
|
|
444
|
+
Dan
|
|
445
|
+
Dan::Pandas
|
|
446
|
+
Dan::Polars
|
|
447
|
+
Data::Cryptocurrencies
|
|
448
|
+
Data::DPath
|
|
449
|
+
Data::Dump
|
|
450
|
+
Data::Dump::Tree
|
|
451
|
+
Data::ExampleDatasets
|
|
452
|
+
Data::Generators
|
|
453
|
+
Data::Geographics
|
|
454
|
+
Data::ICal
|
|
455
|
+
Data::Importers
|
|
456
|
+
Data::MessagePack
|
|
457
|
+
Data::RandomKeep
|
|
458
|
+
Data::Record
|
|
459
|
+
Data::Reshapers
|
|
460
|
+
Data::Selector
|
|
461
|
+
Data::StaticTable
|
|
462
|
+
Data::Summarizers
|
|
463
|
+
Data::TextOrBinary
|
|
464
|
+
Data::Translators
|
|
465
|
+
Data::Tree
|
|
466
|
+
Data::TypeSystem
|
|
467
|
+
Data::UkraineWar::MoD
|
|
468
|
+
Date::Calendar::Armenian
|
|
469
|
+
Date::Calendar::Bahai
|
|
470
|
+
Date::Calendar::CopticEthiopic
|
|
471
|
+
Date::Calendar::FrenchRevolutionary
|
|
472
|
+
Date::Calendar::Gregorian
|
|
473
|
+
Date::Calendar::Hebrew
|
|
474
|
+
Date::Calendar::Hijri
|
|
475
|
+
Date::Calendar::Julian
|
|
476
|
+
Date::Calendar::MayaAztec
|
|
477
|
+
Date::Calendar::Persian
|
|
478
|
+
Date::Calendar::Strftime
|
|
479
|
+
Date::Christian::Advent
|
|
480
|
+
Date::Discordian
|
|
481
|
+
Date::Easter
|
|
482
|
+
Date::Event
|
|
483
|
+
Date::Names
|
|
484
|
+
Date::Utils
|
|
485
|
+
Date::WorkdayCalendar
|
|
486
|
+
Date::YearDay
|
|
487
|
+
DateTime::DST
|
|
488
|
+
DateTime::Extended
|
|
489
|
+
DateTime::Format
|
|
490
|
+
DateTime::Format::LikeGo
|
|
491
|
+
DateTime::Grammar
|
|
492
|
+
DateTime::Julian
|
|
493
|
+
DateTime::Monotonic
|
|
494
|
+
DateTime::Parse
|
|
495
|
+
DateTime::Posix
|
|
496
|
+
DateTime::React
|
|
497
|
+
DateTime::TimeZone
|
|
498
|
+
DateTime::Timezones
|
|
499
|
+
DateTime::US
|
|
500
|
+
DateTime::strftime
|
|
501
|
+
Datetime::Math
|
|
502
|
+
Dawa
|
|
503
|
+
Ddt
|
|
504
|
+
Debug::Transput
|
|
505
|
+
Debugging::Tool
|
|
506
|
+
Deepgrep
|
|
507
|
+
Definitely
|
|
508
|
+
Dependency::Sort
|
|
509
|
+
Deps
|
|
510
|
+
Desktop::Notify
|
|
511
|
+
Desktop::Notify::Progress
|
|
512
|
+
Dev::ContainerizedService
|
|
513
|
+
Devel::ExecRunnerGenerator
|
|
514
|
+
Device::HIDAPI
|
|
515
|
+
Device::Velleman::K8055
|
|
516
|
+
Dice::Roller
|
|
517
|
+
Die
|
|
518
|
+
Digest
|
|
519
|
+
Digest::BubbleBabble
|
|
520
|
+
Digest::FNV
|
|
521
|
+
Digest::HMAC
|
|
522
|
+
Digest::MD5
|
|
523
|
+
Digest::MurmurHash3
|
|
524
|
+
Digest::PSHA1
|
|
525
|
+
Digest::SHA1::Native
|
|
526
|
+
Digest::SHA256::Native
|
|
527
|
+
Digest::xxHash
|
|
528
|
+
DirHandle
|
|
529
|
+
Directory
|
|
530
|
+
Discogs::API
|
|
531
|
+
Display::Listings
|
|
532
|
+
Dist::Helper
|
|
533
|
+
Dist::META
|
|
534
|
+
Distribution::Builder::Cmake
|
|
535
|
+
Distribution::Builder::MakeFromJSON
|
|
536
|
+
Distribution::Common
|
|
537
|
+
Distribution::Common::Remote
|
|
538
|
+
Distribution::Extension::Updater
|
|
539
|
+
Distribution::Resources::Menu
|
|
540
|
+
Do123
|
|
541
|
+
Doc::Executable
|
|
542
|
+
Doc::TypeGraph
|
|
543
|
+
Docker::API
|
|
544
|
+
Docker::File
|
|
545
|
+
Documentable
|
|
546
|
+
Doublephone
|
|
547
|
+
Duck::CSV
|
|
548
|
+
Duckie
|
|
549
|
+
EBNF::Grammar
|
|
550
|
+
EC
|
|
551
|
+
EC::Grammars::DIG
|
|
552
|
+
ECMA262Regex
|
|
553
|
+
EERPG
|
|
554
|
+
ENIGMA::Machine
|
|
555
|
+
ERK
|
|
556
|
+
Ecosystem
|
|
557
|
+
Ecosystem::Archive
|
|
558
|
+
Ecosystem::Archive::Update
|
|
559
|
+
Ecosystem::Cache
|
|
560
|
+
EcosystemMakerFaker
|
|
561
|
+
Edit::Files
|
|
562
|
+
Electron
|
|
563
|
+
Elucid8::Build
|
|
564
|
+
Elucid8::Run-locally
|
|
565
|
+
Email::Address
|
|
566
|
+
Email::MIME
|
|
567
|
+
Email::Notmuch
|
|
568
|
+
Email::SendGrid
|
|
569
|
+
Email::Simple
|
|
570
|
+
Email::Valid
|
|
571
|
+
Encode
|
|
572
|
+
Encoding::Huffman::PP6
|
|
573
|
+
English
|
|
574
|
+
Env
|
|
575
|
+
Env::Dotenv
|
|
576
|
+
Env::File
|
|
577
|
+
Ethelia
|
|
578
|
+
EuclideanRhythm
|
|
579
|
+
Event::Emitter
|
|
580
|
+
Event::Emitter::Inter-Process
|
|
581
|
+
EventSource::Client
|
|
582
|
+
EventSource::Server
|
|
583
|
+
Exportable
|
|
584
|
+
EyeofTheBeholder
|
|
585
|
+
EyeoftheBeholder3
|
|
586
|
+
FDF
|
|
587
|
+
FEN::Grammar
|
|
588
|
+
FHIR
|
|
589
|
+
FINALIZER
|
|
590
|
+
Facter
|
|
591
|
+
Failable
|
|
592
|
+
FanFou
|
|
593
|
+
Farabi6
|
|
594
|
+
FastCGI::NativeCall
|
|
595
|
+
FastCGI::NativeCall::Async
|
|
596
|
+
FastCGI::NativeCall::PSGI
|
|
597
|
+
Fasta
|
|
598
|
+
Fcntl
|
|
599
|
+
FeiShuBot
|
|
600
|
+
File-Path-Copy
|
|
601
|
+
File-TreeBuilder
|
|
602
|
+
File::Compare
|
|
603
|
+
File::Copy
|
|
604
|
+
File::Directory::Bubble
|
|
605
|
+
File::Directory::Tree
|
|
606
|
+
File::ExtendedAttributes
|
|
607
|
+
File::Find
|
|
608
|
+
File::Find::Duplicates
|
|
609
|
+
File::HomeDir
|
|
610
|
+
File::Ignore
|
|
611
|
+
File::Metadata::Libextractor
|
|
612
|
+
File::Name::Editor
|
|
613
|
+
File::Path::Copy
|
|
614
|
+
File::Spec::Case
|
|
615
|
+
File::Stat
|
|
616
|
+
File::Temp
|
|
617
|
+
File::TreeBuilder
|
|
618
|
+
File::Tudo
|
|
619
|
+
File::Utils
|
|
620
|
+
File::Which
|
|
621
|
+
File::XML::DMARC::Google
|
|
622
|
+
File::Zip
|
|
623
|
+
File::file
|
|
624
|
+
FileSystem::Capacity
|
|
625
|
+
FileSystem::Helpers
|
|
626
|
+
FileSystem::Parent
|
|
627
|
+
Files::Containing
|
|
628
|
+
Filetype::Magic
|
|
629
|
+
Finance::CompoundInterest
|
|
630
|
+
FindBin
|
|
631
|
+
FindBin-libs
|
|
632
|
+
FiniteFields
|
|
633
|
+
FixedInt
|
|
634
|
+
Flower
|
|
635
|
+
Font::AFM
|
|
636
|
+
Font::FreeType
|
|
637
|
+
FontConfig
|
|
638
|
+
FontConverter
|
|
639
|
+
FontFactory::Type1
|
|
640
|
+
Foo
|
|
641
|
+
Foo::Bar
|
|
642
|
+
Form
|
|
643
|
+
Format::Lisp
|
|
644
|
+
Fortran::Grammar
|
|
645
|
+
Fortune
|
|
646
|
+
ForwardIterables
|
|
647
|
+
French
|
|
648
|
+
Function::Validation
|
|
649
|
+
Functional::LinkedList
|
|
650
|
+
Functional::Queue
|
|
651
|
+
Functional::Stack
|
|
652
|
+
FunctionalParsers
|
|
653
|
+
Future
|
|
654
|
+
GD::Raw
|
|
655
|
+
GDBM
|
|
656
|
+
GEOS
|
|
657
|
+
GIO
|
|
658
|
+
GLFW
|
|
659
|
+
GLib
|
|
660
|
+
GNU::Time
|
|
661
|
+
GPGME
|
|
662
|
+
GTK::Scintilla
|
|
663
|
+
GTK::Simple
|
|
664
|
+
GTK::Simpler
|
|
665
|
+
GUI::Editors
|
|
666
|
+
Game::Adventure
|
|
667
|
+
Game::Amazing
|
|
668
|
+
Game::Bayes
|
|
669
|
+
Game::Covid19
|
|
670
|
+
Game::Decision
|
|
671
|
+
Game::Entities
|
|
672
|
+
Game::Numeric
|
|
673
|
+
Game::Quest
|
|
674
|
+
Game::Stats
|
|
675
|
+
Game::Sudoku
|
|
676
|
+
Games::BubbleBreaker
|
|
677
|
+
Games::Maze
|
|
678
|
+
Games::TauStation::DateTime
|
|
679
|
+
Games::Wordle
|
|
680
|
+
Gauge
|
|
681
|
+
Gcrypt
|
|
682
|
+
Geo::Basic
|
|
683
|
+
Geo::Coder::OpenCage
|
|
684
|
+
Geo::Coordinates::UTM
|
|
685
|
+
Geo::Ellipsoid
|
|
686
|
+
Geo::Geometry
|
|
687
|
+
Geo::Hash
|
|
688
|
+
Geo::IP2Location::Lite
|
|
689
|
+
Geo::Location
|
|
690
|
+
Geo::Polyline
|
|
691
|
+
Geo::Region
|
|
692
|
+
Geo::WellKnownBinary
|
|
693
|
+
Geo::WellKnownText
|
|
694
|
+
GeoIP2
|
|
695
|
+
German
|
|
696
|
+
Getopt::Advance
|
|
697
|
+
Getopt::ForClass
|
|
698
|
+
Getopt::Long
|
|
699
|
+
Getopt::Long::Grammar
|
|
700
|
+
Getopt::Std
|
|
701
|
+
Getopt::Subcommands
|
|
702
|
+
Getopt::Tiny
|
|
703
|
+
Getopt::Type
|
|
704
|
+
Gherkin::Grammar
|
|
705
|
+
Git::Add
|
|
706
|
+
Git::Blame
|
|
707
|
+
Git::Blame::File
|
|
708
|
+
Git::Config
|
|
709
|
+
Git::File::History
|
|
710
|
+
Git::Files
|
|
711
|
+
Git::Log
|
|
712
|
+
Git::Status
|
|
713
|
+
Git::Wrapper
|
|
714
|
+
GitHub::Actions
|
|
715
|
+
Github::PublicKeys
|
|
716
|
+
Glob::Grammar
|
|
717
|
+
GlotIO
|
|
718
|
+
Gnome::Cairo
|
|
719
|
+
Gnome::GObject
|
|
720
|
+
Gnome::Gdk3
|
|
721
|
+
Gnome::Gdk4
|
|
722
|
+
Gnome::GdkPixbuf
|
|
723
|
+
Gnome::Gio
|
|
724
|
+
Gnome::Glib
|
|
725
|
+
Gnome::Graphene
|
|
726
|
+
Gnome::Gsk4
|
|
727
|
+
Gnome::Gtk3
|
|
728
|
+
Gnome::Gtk4
|
|
729
|
+
Gnome::N
|
|
730
|
+
Gnome::Pango
|
|
731
|
+
Grammar::BNF
|
|
732
|
+
Grammar::Common
|
|
733
|
+
Grammar::Debugger
|
|
734
|
+
Grammar::DiceRolls
|
|
735
|
+
Grammar::ErrorReporting
|
|
736
|
+
Grammar::HTTP
|
|
737
|
+
Grammar::Highlighter
|
|
738
|
+
Grammar::Message
|
|
739
|
+
Grammar::Modelica
|
|
740
|
+
Grammar::PrettyErrors
|
|
741
|
+
Grammar::Profiler::Simple
|
|
742
|
+
Grammar::TodoTxt
|
|
743
|
+
Grammar::TokenProcessing
|
|
744
|
+
Grammar::Tracer::Compact
|
|
745
|
+
Graph
|
|
746
|
+
GraphQL
|
|
747
|
+
GraphQL::Server
|
|
748
|
+
Graphics::PLplot
|
|
749
|
+
Graphics::TinyTIFF
|
|
750
|
+
Graphviz::DOT::Chessboard
|
|
751
|
+
Graphviz::DOT::Grammar
|
|
752
|
+
Gravatar::URL
|
|
753
|
+
Gray::Code::RBC
|
|
754
|
+
Green
|
|
755
|
+
Grid
|
|
756
|
+
Grok
|
|
757
|
+
Growl::GNTP
|
|
758
|
+
GtkLayerShell
|
|
759
|
+
Gumbo
|
|
760
|
+
Gzz::Prompt
|
|
761
|
+
Gzz::Text::Utils
|
|
762
|
+
HTML::Canvas
|
|
763
|
+
HTML::Canvas::To::PDF
|
|
764
|
+
HTML::Component
|
|
765
|
+
HTML::Entity
|
|
766
|
+
HTML::Entity::Fast
|
|
767
|
+
HTML::Escape
|
|
768
|
+
HTML::EscapeUtils
|
|
769
|
+
HTML::Functional
|
|
770
|
+
HTML::Lazy
|
|
771
|
+
HTML::MyHTML
|
|
772
|
+
HTML::Parser
|
|
773
|
+
HTML::Parser::XML
|
|
774
|
+
HTML::Strip
|
|
775
|
+
HTML::Tag
|
|
776
|
+
HTML::Template
|
|
777
|
+
HTTP::API::MusicBrainz
|
|
778
|
+
HTTP::API::Pingdom
|
|
779
|
+
HTTP::Client
|
|
780
|
+
HTTP::Easy
|
|
781
|
+
HTTP::HPACK
|
|
782
|
+
HTTP::Headers
|
|
783
|
+
HTTP::MultiPartParser
|
|
784
|
+
HTTP::ParseParams
|
|
785
|
+
HTTP::Parser
|
|
786
|
+
HTTP::Request::FormData
|
|
787
|
+
HTTP::Request::Supply
|
|
788
|
+
HTTP::Roles
|
|
789
|
+
HTTP::Router::Blind
|
|
790
|
+
HTTP::Server::Async
|
|
791
|
+
HTTP::Server::Async::Plugins::Router::Simple
|
|
792
|
+
HTTP::Server::Logger
|
|
793
|
+
HTTP::Server::Middleware::JSON
|
|
794
|
+
HTTP::Server::Ogre
|
|
795
|
+
HTTP::Server::Router
|
|
796
|
+
HTTP::Server::Router::YAML
|
|
797
|
+
HTTP::Server::Simple
|
|
798
|
+
HTTP::Server::Tiny
|
|
799
|
+
HTTP::Signature
|
|
800
|
+
HTTP::Status
|
|
801
|
+
HTTP::Supply
|
|
802
|
+
HTTP::Tiny
|
|
803
|
+
HTTP::Tinyish
|
|
804
|
+
HTTP::UserAgent
|
|
805
|
+
Haikunator
|
|
806
|
+
HandleSupplier
|
|
807
|
+
HarfBuzz
|
|
808
|
+
HarfBuzz::Font::FreeType
|
|
809
|
+
HarfBuzz::Shaper::Cairo
|
|
810
|
+
HarfBuzz::Subset
|
|
811
|
+
Hash-with
|
|
812
|
+
Hash2Class
|
|
813
|
+
Hash::Agnostic
|
|
814
|
+
Hash::Consistent
|
|
815
|
+
Hash::File
|
|
816
|
+
Hash::LRU
|
|
817
|
+
Hash::Merge
|
|
818
|
+
Hash::MultiValue
|
|
819
|
+
Hash::Ordered
|
|
820
|
+
Hash::Restricted
|
|
821
|
+
Hash::Sorted
|
|
822
|
+
Hash::Timeout
|
|
823
|
+
Hash::Util
|
|
824
|
+
Hash::int
|
|
825
|
+
Hash::str
|
|
826
|
+
Heap
|
|
827
|
+
Hematite
|
|
828
|
+
Hematite::Middleware::Session
|
|
829
|
+
HexDump::Tiny
|
|
830
|
+
Hey
|
|
831
|
+
Highlight::Terminal
|
|
832
|
+
Hiker
|
|
833
|
+
Hilite
|
|
834
|
+
Hinges
|
|
835
|
+
Holidays::Miscellaneous
|
|
836
|
+
Holidays::US::Federal
|
|
837
|
+
HomoGlypher
|
|
838
|
+
HowToUseModuleResources
|
|
839
|
+
Humming-Bird
|
|
840
|
+
Humming-Bird::Core
|
|
841
|
+
Hydrate
|
|
842
|
+
Hyperscript
|
|
843
|
+
I18N::LangTags
|
|
844
|
+
I18n::Simple
|
|
845
|
+
IConv
|
|
846
|
+
IDNA::Punycode
|
|
847
|
+
IO-Archive
|
|
848
|
+
IO-Compress
|
|
849
|
+
IO-Compress-Lzf
|
|
850
|
+
IO-Compress-Lzma
|
|
851
|
+
IO-Compress-Lzop
|
|
852
|
+
IO-Socket-TLSViaAsync
|
|
853
|
+
IO::Blob
|
|
854
|
+
IO::Capture::Simple
|
|
855
|
+
IO::CatHandle::AutoLines
|
|
856
|
+
IO::Dir
|
|
857
|
+
IO::Glob
|
|
858
|
+
IO::Handle::Rollover
|
|
859
|
+
IO::Maildir
|
|
860
|
+
IO::MiddleMan
|
|
861
|
+
IO::Notification::Recursive
|
|
862
|
+
IO::Path::AutoDecompress
|
|
863
|
+
IO::Path::ChildSecure
|
|
864
|
+
IO::Path::Dirstack
|
|
865
|
+
IO::Path::Mode
|
|
866
|
+
IO::Path::More
|
|
867
|
+
IO::Path::XDG
|
|
868
|
+
IO::Prompt
|
|
869
|
+
IO::Prompter
|
|
870
|
+
IO::Socket::Async::SSL
|
|
871
|
+
IO::Socket::SSL
|
|
872
|
+
IO::Stem
|
|
873
|
+
IO::String
|
|
874
|
+
IO::URing
|
|
875
|
+
IP::Addr
|
|
876
|
+
IP::Random
|
|
877
|
+
IRC::Art
|
|
878
|
+
IRC::Channel::Log
|
|
879
|
+
IRC::Client
|
|
880
|
+
IRC::Client::Plugin::DiceRolls
|
|
881
|
+
IRC::Client::Plugin::Github
|
|
882
|
+
IRC::Client::Plugin::Ignore
|
|
883
|
+
IRC::Client::Plugin::Logger
|
|
884
|
+
IRC::Client::Plugin::NickServ
|
|
885
|
+
IRC::Client::Plugin::Rakkable
|
|
886
|
+
IRC::Client::Plugin::Reminders
|
|
887
|
+
IRC::Client::Plugin::UrlTitle
|
|
888
|
+
IRC::Client::Plugin::UserPoints
|
|
889
|
+
IRC::Log
|
|
890
|
+
IRC::Log::Colabti
|
|
891
|
+
IRC::Log::Textual
|
|
892
|
+
IRC::TextColor
|
|
893
|
+
IRC::Utils
|
|
894
|
+
IUP
|
|
895
|
+
Identity::Utils
|
|
896
|
+
Iec104Parser
|
|
897
|
+
Igo
|
|
898
|
+
Ikoko
|
|
899
|
+
Image::Libexif
|
|
900
|
+
Image::Markup::Utilities
|
|
901
|
+
Image::PNG::Inflated
|
|
902
|
+
Image::PNG::Portable
|
|
903
|
+
Image::QRCode
|
|
904
|
+
Image::RGBA
|
|
905
|
+
Image::RGBA::Text
|
|
906
|
+
Image::Resize
|
|
907
|
+
Imlib2
|
|
908
|
+
Inform
|
|
909
|
+
Ini::Storage
|
|
910
|
+
Injector
|
|
911
|
+
Inline
|
|
912
|
+
Inline::BASIC
|
|
913
|
+
Inline::Brainfuck
|
|
914
|
+
Inline::Go
|
|
915
|
+
Inline::J
|
|
916
|
+
Inline::Perl5
|
|
917
|
+
Inline::Python
|
|
918
|
+
Inline::Python3
|
|
919
|
+
Inline::Scheme::Gambit
|
|
920
|
+
Int::polydiv
|
|
921
|
+
InterceptAllMethods
|
|
922
|
+
Interval
|
|
923
|
+
Intl::CLDR
|
|
924
|
+
Intl::Fluent
|
|
925
|
+
Intl::Format::DateTime
|
|
926
|
+
Intl::Format::List
|
|
927
|
+
Intl::Format::Number
|
|
928
|
+
Intl::Format::Unit
|
|
929
|
+
Intl::LanguageTag
|
|
930
|
+
Intl::LanguageTag::Simple
|
|
931
|
+
Intl::LanguageTaggish
|
|
932
|
+
Intl::Number::Plural
|
|
933
|
+
Intl::Regex::CharClass
|
|
934
|
+
Intl::Token::Number
|
|
935
|
+
Intl::UserLanguage
|
|
936
|
+
IntlPromptYesNo
|
|
937
|
+
IoC
|
|
938
|
+
Iter::Able
|
|
939
|
+
JS::Minify
|
|
940
|
+
JSON-CSV
|
|
941
|
+
JSON-Simd
|
|
942
|
+
JSON5::Tiny
|
|
943
|
+
JSON::Class
|
|
944
|
+
JSON::Fast
|
|
945
|
+
JSON::Fast::Hyper
|
|
946
|
+
JSON::GLib
|
|
947
|
+
JSON::Hjson
|
|
948
|
+
JSON::Infer
|
|
949
|
+
JSON::JWT
|
|
950
|
+
JSON::Marshal
|
|
951
|
+
JSON::Mask
|
|
952
|
+
JSON::Name
|
|
953
|
+
JSON::OptIn
|
|
954
|
+
JSON::Path
|
|
955
|
+
JSON::Pointer
|
|
956
|
+
JSON::Pretty
|
|
957
|
+
JSON::Pretty::Sorted
|
|
958
|
+
JSON::RPC
|
|
959
|
+
JSON::Schema
|
|
960
|
+
JSON::Stream
|
|
961
|
+
JSON::Tiny
|
|
962
|
+
JSON::Unmarshal
|
|
963
|
+
JSON::WebToken
|
|
964
|
+
JSON::simd
|
|
965
|
+
JSONHound
|
|
966
|
+
Japanese
|
|
967
|
+
Java::Generate
|
|
968
|
+
JavaScript::D3
|
|
969
|
+
JavaScript::Google::Charts
|
|
970
|
+
JsonC
|
|
971
|
+
Jupyter::Chatbook
|
|
972
|
+
Jupyter::Kernel
|
|
973
|
+
KHPH
|
|
974
|
+
Karabiner::CompModGenerator
|
|
975
|
+
Keyring
|
|
976
|
+
Kind
|
|
977
|
+
Kind::Subset::Parametric
|
|
978
|
+
Kivuli
|
|
979
|
+
Korean
|
|
980
|
+
L10N
|
|
981
|
+
L10N::CY
|
|
982
|
+
L10N::Complete
|
|
983
|
+
L10N::DE
|
|
984
|
+
L10N::EN
|
|
985
|
+
L10N::EO
|
|
986
|
+
L10N::FR
|
|
987
|
+
L10N::HU
|
|
988
|
+
L10N::IT
|
|
989
|
+
L10N::JA
|
|
990
|
+
L10N::NL
|
|
991
|
+
L10N::PT
|
|
992
|
+
L10N::TLH
|
|
993
|
+
L10N::ZH
|
|
994
|
+
LCS::All
|
|
995
|
+
LCS::BV
|
|
996
|
+
LEB128
|
|
997
|
+
LIVR
|
|
998
|
+
LLM::Character
|
|
999
|
+
LLM::Chat
|
|
1000
|
+
LLM::Containerization
|
|
1001
|
+
LLM::DWIM
|
|
1002
|
+
LLM::Functions
|
|
1003
|
+
LLM::Prompts
|
|
1004
|
+
LLM::RetrievalAugmentedGeneration
|
|
1005
|
+
LLVM
|
|
1006
|
+
LMDB
|
|
1007
|
+
LN
|
|
1008
|
+
LR1
|
|
1009
|
+
LWP::Simple
|
|
1010
|
+
LZW::Revolunet
|
|
1011
|
+
Lang::JA::Kana
|
|
1012
|
+
Lang::Transliterate
|
|
1013
|
+
Lang::ZH::Palladius
|
|
1014
|
+
Lazy::Static
|
|
1015
|
+
Learn::Raku::With
|
|
1016
|
+
LendingClub
|
|
1017
|
+
LibCurl
|
|
1018
|
+
LibGit2
|
|
1019
|
+
LibUSB
|
|
1020
|
+
LibUUID
|
|
1021
|
+
LibXML
|
|
1022
|
+
LibXML::Class
|
|
1023
|
+
LibXML::Writer
|
|
1024
|
+
LibXSLT
|
|
1025
|
+
LibYAML
|
|
1026
|
+
LibZip
|
|
1027
|
+
Libarchive
|
|
1028
|
+
Libclang
|
|
1029
|
+
LibraryCheck
|
|
1030
|
+
LibraryMake
|
|
1031
|
+
Libui
|
|
1032
|
+
License::SPDX
|
|
1033
|
+
Linenoise
|
|
1034
|
+
Lines::Containing
|
|
1035
|
+
Lingua::Conjunction
|
|
1036
|
+
Lingua::EN::Conjugate
|
|
1037
|
+
Lingua::EN::Fathom
|
|
1038
|
+
Lingua::EN::Numbers
|
|
1039
|
+
Lingua::EN::Sentence
|
|
1040
|
+
Lingua::EN::Stem::Porter
|
|
1041
|
+
Lingua::EN::Stopwords
|
|
1042
|
+
Lingua::EN::Syllable
|
|
1043
|
+
Lingua::Lipogram
|
|
1044
|
+
Lingua::NumericWordForms
|
|
1045
|
+
Lingua::Palindrome
|
|
1046
|
+
Lingua::Pangram
|
|
1047
|
+
Lingua::Stem::Bulgarian
|
|
1048
|
+
Lingua::Stem::Es
|
|
1049
|
+
Lingua::Stem::Portuguese
|
|
1050
|
+
Lingua::Stem::Russian
|
|
1051
|
+
Lingua::Stopwords
|
|
1052
|
+
Lingua::StopwordsISO
|
|
1053
|
+
Lingua::Translation::DeepL
|
|
1054
|
+
Lingua::Unihan
|
|
1055
|
+
Lingy
|
|
1056
|
+
Linux::Cpuinfo
|
|
1057
|
+
Linux::Fuser
|
|
1058
|
+
Linux::Joystick
|
|
1059
|
+
Linux::NFTables
|
|
1060
|
+
Linux::Proc::Statm
|
|
1061
|
+
List::Agnostic
|
|
1062
|
+
List::AllUtils
|
|
1063
|
+
List::Allmax
|
|
1064
|
+
List::Divvy
|
|
1065
|
+
List::MoreUtils
|
|
1066
|
+
List::Operator::DoublePlus
|
|
1067
|
+
List::SomeUtils
|
|
1068
|
+
List::Util
|
|
1069
|
+
List::Utils
|
|
1070
|
+
List::UtilsBy
|
|
1071
|
+
Listicles
|
|
1072
|
+
LocalTime
|
|
1073
|
+
Locale::Codes
|
|
1074
|
+
Locale::Codes::Country
|
|
1075
|
+
Locale::Dates
|
|
1076
|
+
Locale::US
|
|
1077
|
+
Log
|
|
1078
|
+
Log::Any
|
|
1079
|
+
Log::Async
|
|
1080
|
+
Log::Colored
|
|
1081
|
+
Log::D
|
|
1082
|
+
Log::Dispatch
|
|
1083
|
+
Log::JSON
|
|
1084
|
+
Log::Minimal
|
|
1085
|
+
Log::Reader
|
|
1086
|
+
Log::Simple
|
|
1087
|
+
Log::Syslog::Native
|
|
1088
|
+
Log::Timeline
|
|
1089
|
+
Log::ZMQ
|
|
1090
|
+
LogP6
|
|
1091
|
+
LogP6-Writer-Journald
|
|
1092
|
+
LogP6::Writer::StackDriver
|
|
1093
|
+
Logger
|
|
1094
|
+
Lumberjack
|
|
1095
|
+
Lumberjack::Application
|
|
1096
|
+
Lumberjack::Config::JSON
|
|
1097
|
+
Lumberjack::Dispatcher::EventSource
|
|
1098
|
+
Lumberjack::Dispatcher::Syslog
|
|
1099
|
+
Lumberjack::Message::JSON
|
|
1100
|
+
META6
|
|
1101
|
+
META6::Query
|
|
1102
|
+
META6::bin
|
|
1103
|
+
META::constants
|
|
1104
|
+
META::verauthapi
|
|
1105
|
+
MIDI::Make
|
|
1106
|
+
MIME::Base64
|
|
1107
|
+
MIME::QuotedPrint
|
|
1108
|
+
MIME::Types
|
|
1109
|
+
ML::AssociationRuleLearning
|
|
1110
|
+
ML::Clustering
|
|
1111
|
+
ML::FindTextualAnswer
|
|
1112
|
+
ML::NLPTemplateEngine
|
|
1113
|
+
ML::ROCFunctions
|
|
1114
|
+
ML::TriesWithFrequencies
|
|
1115
|
+
MPD::Client
|
|
1116
|
+
MQ::Posix
|
|
1117
|
+
MQTT::Client
|
|
1118
|
+
MUGS
|
|
1119
|
+
MUGS::Core
|
|
1120
|
+
MUGS::Games
|
|
1121
|
+
MUGS::UI::CLI
|
|
1122
|
+
MUGS::UI::TUI
|
|
1123
|
+
MUGS::UI::WebSimple
|
|
1124
|
+
Mac::Applications::List
|
|
1125
|
+
Mac::Battery::Alerter
|
|
1126
|
+
MacOS::NativeLib
|
|
1127
|
+
Magento
|
|
1128
|
+
MagickWand
|
|
1129
|
+
Manifest::StopWar
|
|
1130
|
+
Manifesto
|
|
1131
|
+
Map::Agnostic
|
|
1132
|
+
Map::DeckGL
|
|
1133
|
+
Map::Leaflet
|
|
1134
|
+
Map::Match
|
|
1135
|
+
Map::Ordered
|
|
1136
|
+
Markdown::Grammar
|
|
1137
|
+
Markit
|
|
1138
|
+
Markup::Calendar
|
|
1139
|
+
Marpa
|
|
1140
|
+
Marrow
|
|
1141
|
+
Masquerade
|
|
1142
|
+
Math::Angle
|
|
1143
|
+
Math::Arrow
|
|
1144
|
+
Math::BijectiveBase
|
|
1145
|
+
Math::ChebyshevPolynomial
|
|
1146
|
+
Math::Combinatorics
|
|
1147
|
+
Math::Constants
|
|
1148
|
+
Math::ContinuedFractions
|
|
1149
|
+
Math::ConvergenceMethods
|
|
1150
|
+
Math::Curves
|
|
1151
|
+
Math::DistanceFunctions
|
|
1152
|
+
Math::DistanceFunctions::Edit
|
|
1153
|
+
Math::DistanceFunctions::Native
|
|
1154
|
+
Math::FFT::Libfftw3
|
|
1155
|
+
Math::FFT::Libfftw3::C2C
|
|
1156
|
+
Math::Factorial::Operator
|
|
1157
|
+
Math::Fitting
|
|
1158
|
+
Math::FourierTransform
|
|
1159
|
+
Math::FractionalPart
|
|
1160
|
+
Math::Handy
|
|
1161
|
+
Math::Interval
|
|
1162
|
+
Math::Libgsl::BLAS
|
|
1163
|
+
Math::Libgsl::Combination
|
|
1164
|
+
Math::Libgsl::Complex
|
|
1165
|
+
Math::Libgsl::Constants
|
|
1166
|
+
Math::Libgsl::DigitalFiltering
|
|
1167
|
+
Math::Libgsl::Eigensystem
|
|
1168
|
+
Math::Libgsl::Elementary
|
|
1169
|
+
Math::Libgsl::Function
|
|
1170
|
+
Math::Libgsl::Histogram
|
|
1171
|
+
Math::Libgsl::Interpolation
|
|
1172
|
+
Math::Libgsl::LinearAlgebra
|
|
1173
|
+
Math::Libgsl::Matrix
|
|
1174
|
+
Math::Libgsl::MovingWindow
|
|
1175
|
+
Math::Libgsl::Multiset
|
|
1176
|
+
Math::Libgsl::Permutation
|
|
1177
|
+
Math::Libgsl::Polynomial
|
|
1178
|
+
Math::Libgsl::QuasiRandom
|
|
1179
|
+
Math::Libgsl::Random
|
|
1180
|
+
Math::Libgsl::RandomDistribution
|
|
1181
|
+
Math::Libgsl::RunningStatistics
|
|
1182
|
+
Math::Libgsl::Series
|
|
1183
|
+
Math::Libgsl::Sort
|
|
1184
|
+
Math::Libgsl::Statistics
|
|
1185
|
+
Math::Libgsl::Wavelet
|
|
1186
|
+
Math::Matrix
|
|
1187
|
+
Math::Model
|
|
1188
|
+
Math::Nearest
|
|
1189
|
+
Math::NumberTheory
|
|
1190
|
+
Math::OddFunctions
|
|
1191
|
+
Math::PascalTriangle
|
|
1192
|
+
Math::Polygons
|
|
1193
|
+
Math::Polynomial
|
|
1194
|
+
Math::Polynomial::Chebyshev
|
|
1195
|
+
Math::Primesieve
|
|
1196
|
+
Math::Quaternion
|
|
1197
|
+
Math::Random
|
|
1198
|
+
Math::Roman
|
|
1199
|
+
Math::Root
|
|
1200
|
+
Math::RungeKutta
|
|
1201
|
+
Math::SelfDescriptiveNumbers
|
|
1202
|
+
Math::Sequences
|
|
1203
|
+
Math::SparseMatrix
|
|
1204
|
+
Math::SparseMatrix::Native
|
|
1205
|
+
Math::SpecialFunctions
|
|
1206
|
+
Math::Splines
|
|
1207
|
+
Math::Symbolic
|
|
1208
|
+
Math::Trig
|
|
1209
|
+
Math::Vector
|
|
1210
|
+
Math::Vector3D
|
|
1211
|
+
Mathematica::Serializer
|
|
1212
|
+
Matrix::Bot
|
|
1213
|
+
Matrix::Bot::Plugin::AutoAcceptInvites
|
|
1214
|
+
Matrix::Client
|
|
1215
|
+
MeCab
|
|
1216
|
+
Memoize
|
|
1217
|
+
Menu::Simple
|
|
1218
|
+
MergeOrderedSeqs
|
|
1219
|
+
MessagePack::Class
|
|
1220
|
+
MessageStream
|
|
1221
|
+
MetamodelX::Dataclass
|
|
1222
|
+
Method::Also
|
|
1223
|
+
Method::Modifiers
|
|
1224
|
+
Method::Protected
|
|
1225
|
+
Metropolis
|
|
1226
|
+
Mi6::Helper
|
|
1227
|
+
Migration::RTtoGithub
|
|
1228
|
+
MinG
|
|
1229
|
+
Mmap::Native
|
|
1230
|
+
MoarVM::Bytecode
|
|
1231
|
+
MoarVM::Remote
|
|
1232
|
+
ModelDB
|
|
1233
|
+
Modf
|
|
1234
|
+
Module2Rpm
|
|
1235
|
+
Module2Rpm::Spec
|
|
1236
|
+
Module::Does
|
|
1237
|
+
Module::Pod
|
|
1238
|
+
Monad
|
|
1239
|
+
Monad-Result
|
|
1240
|
+
Moneys
|
|
1241
|
+
MongoDB
|
|
1242
|
+
Monitor::Monit
|
|
1243
|
+
Moonphase
|
|
1244
|
+
Mortgage
|
|
1245
|
+
MsgPack
|
|
1246
|
+
Munge
|
|
1247
|
+
Music::Engine
|
|
1248
|
+
Music::Helpers
|
|
1249
|
+
Mux
|
|
1250
|
+
NCurses
|
|
1251
|
+
NQP::Eval
|
|
1252
|
+
NYI
|
|
1253
|
+
Native::Compile
|
|
1254
|
+
Native::Exec
|
|
1255
|
+
Native::FindVersion
|
|
1256
|
+
Native::Overflow
|
|
1257
|
+
Native::Packing
|
|
1258
|
+
NativeCall::TypeDiag
|
|
1259
|
+
NativeHelpers::Array
|
|
1260
|
+
NativeHelpers::Blob
|
|
1261
|
+
NativeHelpers::CBuffer
|
|
1262
|
+
NativeHelpers::Callback
|
|
1263
|
+
NativeHelpers::iovec
|
|
1264
|
+
NativeLibs
|
|
1265
|
+
Needle::Compile
|
|
1266
|
+
Net::AMQP
|
|
1267
|
+
Net::BGP
|
|
1268
|
+
Net::Curl
|
|
1269
|
+
Net::DNS
|
|
1270
|
+
Net::Ethereum
|
|
1271
|
+
Net::Gemini
|
|
1272
|
+
Net::Google::Sheets
|
|
1273
|
+
Net::HTTP
|
|
1274
|
+
Net::IMAP
|
|
1275
|
+
Net::IP::Parse
|
|
1276
|
+
Net::Jupyter
|
|
1277
|
+
Net::LibIDN
|
|
1278
|
+
Net::LibIDN2
|
|
1279
|
+
Net::NNG
|
|
1280
|
+
Net::NetRC
|
|
1281
|
+
Net::Netmask
|
|
1282
|
+
Net::Osc
|
|
1283
|
+
Net::POP3
|
|
1284
|
+
Net::Packet
|
|
1285
|
+
Net::Pcap
|
|
1286
|
+
Net::Postgres
|
|
1287
|
+
Net::Postgres::Abstract
|
|
1288
|
+
Net::RCON
|
|
1289
|
+
Net::SMTP
|
|
1290
|
+
Net::SMTP::Client::Async
|
|
1291
|
+
Net::SOCKS
|
|
1292
|
+
Net::Snapcast
|
|
1293
|
+
Net::Telnet
|
|
1294
|
+
Net::Whois
|
|
1295
|
+
Net::ZMQ
|
|
1296
|
+
Net::netent
|
|
1297
|
+
Net::protoent
|
|
1298
|
+
Net::servent
|
|
1299
|
+
Netstring
|
|
1300
|
+
Node::Ethereum::Keccak256::Native
|
|
1301
|
+
Node::Ethereum::KeyStore::V3
|
|
1302
|
+
Node::Ethereum::RLP
|
|
1303
|
+
Noise::Simplex
|
|
1304
|
+
Notify
|
|
1305
|
+
Num::HexFloat
|
|
1306
|
+
Number::Bytes::Human
|
|
1307
|
+
Number::Denominate
|
|
1308
|
+
Number::More
|
|
1309
|
+
Numeric::Pack
|
|
1310
|
+
OAuth2::Client::Google
|
|
1311
|
+
OEIS
|
|
1312
|
+
OLE::Storage_Lite
|
|
1313
|
+
ONNX::Runtime
|
|
1314
|
+
OO::Actors
|
|
1315
|
+
OO::Monitors
|
|
1316
|
+
OO::Plugin
|
|
1317
|
+
ORM::ActiveRecord
|
|
1318
|
+
Object::Container
|
|
1319
|
+
Object::Delayed
|
|
1320
|
+
Object::Permission
|
|
1321
|
+
Object::Permission::Group
|
|
1322
|
+
Object::Trampoline
|
|
1323
|
+
ObjectCache
|
|
1324
|
+
Oddmuse6
|
|
1325
|
+
Odoo::Client
|
|
1326
|
+
OneSeq
|
|
1327
|
+
OpenAPI::Model
|
|
1328
|
+
OpenAPI::Schema::Validate
|
|
1329
|
+
OpenCV
|
|
1330
|
+
OpenSSL
|
|
1331
|
+
Operator::DynvarOr
|
|
1332
|
+
Operator::Listcat
|
|
1333
|
+
Operator::dB
|
|
1334
|
+
Operator::defined-alternation
|
|
1335
|
+
Operator::feq
|
|
1336
|
+
Operator::grandpa
|
|
1337
|
+
Ops::SI
|
|
1338
|
+
OrderedHash
|
|
1339
|
+
Overwatch
|
|
1340
|
+
Oyatul
|
|
1341
|
+
P5-X
|
|
1342
|
+
P5__FILE__
|
|
1343
|
+
P5built-ins
|
|
1344
|
+
P5caller
|
|
1345
|
+
P5chdir
|
|
1346
|
+
P5chomp
|
|
1347
|
+
P5chr
|
|
1348
|
+
P5defined
|
|
1349
|
+
P5each
|
|
1350
|
+
P5fc
|
|
1351
|
+
P5fileno
|
|
1352
|
+
P5getgrnam
|
|
1353
|
+
P5getnetbyname
|
|
1354
|
+
P5getpriority
|
|
1355
|
+
P5getprotobyname
|
|
1356
|
+
P5getpwnam
|
|
1357
|
+
P5getservbyname
|
|
1358
|
+
P5hex
|
|
1359
|
+
P5index
|
|
1360
|
+
P5lc
|
|
1361
|
+
P5lcfirst
|
|
1362
|
+
P5length
|
|
1363
|
+
P5localtime
|
|
1364
|
+
P5math
|
|
1365
|
+
P5opendir
|
|
1366
|
+
P5pack
|
|
1367
|
+
P5print
|
|
1368
|
+
P5push
|
|
1369
|
+
P5quotemeta
|
|
1370
|
+
P5readlink
|
|
1371
|
+
P5ref
|
|
1372
|
+
P5reset
|
|
1373
|
+
P5reverse
|
|
1374
|
+
P5seek
|
|
1375
|
+
P5shift
|
|
1376
|
+
P5sleep
|
|
1377
|
+
P5study
|
|
1378
|
+
P5substr
|
|
1379
|
+
P5tie
|
|
1380
|
+
P5times
|
|
1381
|
+
P5unlink
|
|
1382
|
+
P6Repl::Helper
|
|
1383
|
+
P6TCI
|
|
1384
|
+
P6TK
|
|
1385
|
+
P6W
|
|
1386
|
+
PBKDF2
|
|
1387
|
+
PDF
|
|
1388
|
+
PDF::API6
|
|
1389
|
+
PDF::Class
|
|
1390
|
+
PDF::Combiner
|
|
1391
|
+
PDF::Content
|
|
1392
|
+
PDF::Document
|
|
1393
|
+
PDF::Extract
|
|
1394
|
+
PDF::Font::Loader
|
|
1395
|
+
PDF::Font::Loader::CSS
|
|
1396
|
+
PDF::Font::Loader::HarfBuzz
|
|
1397
|
+
PDF::Grammar
|
|
1398
|
+
PDF::ISO_32000
|
|
1399
|
+
PDF::ISO_32000_2
|
|
1400
|
+
PDF::Lite
|
|
1401
|
+
PDF::NameTags
|
|
1402
|
+
PDF::Native
|
|
1403
|
+
PDF::Tags
|
|
1404
|
+
PDF::Tags::Reader
|
|
1405
|
+
PDF::To::Cairo
|
|
1406
|
+
PKCS5
|
|
1407
|
+
POFile
|
|
1408
|
+
POSIX::PWDENT
|
|
1409
|
+
POSIX::getaddrinfo
|
|
1410
|
+
PSGI
|
|
1411
|
+
PSpec
|
|
1412
|
+
PURL
|
|
1413
|
+
Package::Updates
|
|
1414
|
+
Pakku
|
|
1415
|
+
ParaSeq
|
|
1416
|
+
Parameterizable
|
|
1417
|
+
Parse::Paths
|
|
1418
|
+
Parse::STDF
|
|
1419
|
+
Parse::Selenese
|
|
1420
|
+
Pastebin::Gist
|
|
1421
|
+
Pastebin::Pasteee
|
|
1422
|
+
Pastebin::Shadowcat
|
|
1423
|
+
Path::Canonical
|
|
1424
|
+
Path::Finder
|
|
1425
|
+
Path::Map
|
|
1426
|
+
Path::Router
|
|
1427
|
+
Path::Through
|
|
1428
|
+
Path::Util
|
|
1429
|
+
PathTools
|
|
1430
|
+
PatternMatching
|
|
1431
|
+
Perl6::Ecosystem
|
|
1432
|
+
Perl6::Parser
|
|
1433
|
+
Perl6::Tidy
|
|
1434
|
+
Pg::Notify
|
|
1435
|
+
Phaser::ATEXIT
|
|
1436
|
+
Pheix
|
|
1437
|
+
Physics::Constants
|
|
1438
|
+
Physics::Error
|
|
1439
|
+
Physics::Measure
|
|
1440
|
+
Physics::Navigation
|
|
1441
|
+
Physics::Unit
|
|
1442
|
+
Physics::Vector
|
|
1443
|
+
Pleroma
|
|
1444
|
+
Pluggable
|
|
1445
|
+
Pod::Contents
|
|
1446
|
+
Pod::EOD
|
|
1447
|
+
Pod::From::Cache
|
|
1448
|
+
Pod::Literate
|
|
1449
|
+
Pod::Load
|
|
1450
|
+
Pod::Parser
|
|
1451
|
+
Pod::Render
|
|
1452
|
+
Pod::Strip
|
|
1453
|
+
Pod::Tangle
|
|
1454
|
+
Pod::Test::Code
|
|
1455
|
+
Pod::To::Anything
|
|
1456
|
+
Pod::To::BigPage
|
|
1457
|
+
Pod::To::Cached
|
|
1458
|
+
Pod::To::HTML
|
|
1459
|
+
Pod::To::HTML::Section
|
|
1460
|
+
Pod::To::HTMLBody
|
|
1461
|
+
Pod::To::Man
|
|
1462
|
+
Pod::To::Markdown
|
|
1463
|
+
Pod::To::PDF
|
|
1464
|
+
Pod::To::PDF::Lite
|
|
1465
|
+
Pod::To::Pager
|
|
1466
|
+
Pod::To::Raku
|
|
1467
|
+
Pod::TreeWalker
|
|
1468
|
+
Pod::Usage
|
|
1469
|
+
Pod::Utils
|
|
1470
|
+
Pod::Weave
|
|
1471
|
+
Podviewer
|
|
1472
|
+
Pofig
|
|
1473
|
+
Point
|
|
1474
|
+
Polyglot::Brainfuck
|
|
1475
|
+
Polyglot::Regexen
|
|
1476
|
+
Pop
|
|
1477
|
+
Portuguese
|
|
1478
|
+
PostCocoon::Url
|
|
1479
|
+
PowerNap
|
|
1480
|
+
Pray
|
|
1481
|
+
Prettier::Table
|
|
1482
|
+
Pretty::Table
|
|
1483
|
+
PrettyDump
|
|
1484
|
+
Prime::Factor
|
|
1485
|
+
Printer::ESCPOS
|
|
1486
|
+
Printing::Jdf
|
|
1487
|
+
ProblemSolver
|
|
1488
|
+
Proc::Async::Timeout
|
|
1489
|
+
Proc::Easier
|
|
1490
|
+
Proc::Easy
|
|
1491
|
+
Proc::Editor
|
|
1492
|
+
Proc::Feed
|
|
1493
|
+
Proc::InvokeEditor
|
|
1494
|
+
Proc::Q
|
|
1495
|
+
Proc::Screen
|
|
1496
|
+
Proc::ZMQed
|
|
1497
|
+
ProcStats
|
|
1498
|
+
Prometheus::Client
|
|
1499
|
+
Prompt
|
|
1500
|
+
Prompt::Expand
|
|
1501
|
+
Propius
|
|
1502
|
+
Protobuf
|
|
1503
|
+
Protocol
|
|
1504
|
+
Protocol::MQTT
|
|
1505
|
+
Protocol::Postgres
|
|
1506
|
+
Proxee
|
|
1507
|
+
Proxy::Watched
|
|
1508
|
+
PublicSuffix
|
|
1509
|
+
Punnable
|
|
1510
|
+
Pygments
|
|
1511
|
+
Pyrint
|
|
1512
|
+
Pythonic::Str
|
|
1513
|
+
QM
|
|
1514
|
+
Qt::QtWidgets
|
|
1515
|
+
QueryOS
|
|
1516
|
+
RDF::Turtle
|
|
1517
|
+
REPL
|
|
1518
|
+
RKDS
|
|
1519
|
+
RPG::Base
|
|
1520
|
+
RPi::ButtonWatcher
|
|
1521
|
+
RPi::Device::DHT11
|
|
1522
|
+
RPi::Device::DS18B20
|
|
1523
|
+
RPi::Device::PiFace
|
|
1524
|
+
RPi::Device::PiGlow
|
|
1525
|
+
RPi::Device::SMBus
|
|
1526
|
+
RPi::Device::ST7036
|
|
1527
|
+
RPi::GpioDirect
|
|
1528
|
+
RSV
|
|
1529
|
+
Rabble
|
|
1530
|
+
Radamsa
|
|
1531
|
+
Rainbow
|
|
1532
|
+
Rake
|
|
1533
|
+
Raku-GitHub-Workflows
|
|
1534
|
+
Raku::Pod::Render
|
|
1535
|
+
RakuAST::Utils
|
|
1536
|
+
RakuConfig
|
|
1537
|
+
RakuDoc::Load
|
|
1538
|
+
RakuDoc::Test::Files
|
|
1539
|
+
RakuRename
|
|
1540
|
+
Rakuast::RakuDoc::Render
|
|
1541
|
+
Rakudo::CORE::META
|
|
1542
|
+
Rakudo::Cache
|
|
1543
|
+
Rakudo::Options
|
|
1544
|
+
Rakudo::Perl6::Format
|
|
1545
|
+
Rakudo::Perl6::Parsing
|
|
1546
|
+
Rakudo::Perl6::Tracer
|
|
1547
|
+
Rakudo::Slippy::Semilist
|
|
1548
|
+
Rakudo::Version
|
|
1549
|
+
RakudoContainerfileBuilder
|
|
1550
|
+
RakudoPrereq
|
|
1551
|
+
RakupodObject
|
|
1552
|
+
Random::Choice
|
|
1553
|
+
Random::Hawking::Boltzmann
|
|
1554
|
+
Random::Names
|
|
1555
|
+
Range::SetOps
|
|
1556
|
+
Ranker
|
|
1557
|
+
Rat::Power
|
|
1558
|
+
Rat::Precise
|
|
1559
|
+
Raygui::Bindings
|
|
1560
|
+
Raylib::Bindings
|
|
1561
|
+
ReadWriteLock
|
|
1562
|
+
Readline
|
|
1563
|
+
Reaper::Control
|
|
1564
|
+
Red
|
|
1565
|
+
RedFactory
|
|
1566
|
+
RedX::HashedPassword
|
|
1567
|
+
Redis
|
|
1568
|
+
Redis::Async
|
|
1569
|
+
Regex::FuzzyToken
|
|
1570
|
+
RegexUtils
|
|
1571
|
+
Repl::Tools
|
|
1572
|
+
Repository::Precomp::Cleanup
|
|
1573
|
+
Resend
|
|
1574
|
+
Resource::Wrangler
|
|
1575
|
+
Result
|
|
1576
|
+
Retry
|
|
1577
|
+
ReverseIterables
|
|
1578
|
+
Router::Boost
|
|
1579
|
+
Router::Right
|
|
1580
|
+
Russian
|
|
1581
|
+
Ryml
|
|
1582
|
+
SAT
|
|
1583
|
+
SAT::Solver::MiniSAT
|
|
1584
|
+
SBOM::CycloneDX
|
|
1585
|
+
SBOM::Raku
|
|
1586
|
+
SCGI
|
|
1587
|
+
SDL
|
|
1588
|
+
SDL2
|
|
1589
|
+
SDL2-ttf
|
|
1590
|
+
SDL2::Raw
|
|
1591
|
+
SHAI
|
|
1592
|
+
SOAP::Client
|
|
1593
|
+
SOD
|
|
1594
|
+
SP6
|
|
1595
|
+
SQL::Abstract
|
|
1596
|
+
SQL::Builder
|
|
1597
|
+
SQL::Builder::ExecuteWithDBIish
|
|
1598
|
+
SQL::Lexer
|
|
1599
|
+
SQL::NamedPlaceholder
|
|
1600
|
+
SSH::LibSSH
|
|
1601
|
+
SSH::LibSSH::Tunnel
|
|
1602
|
+
SSL
|
|
1603
|
+
SVG
|
|
1604
|
+
SVG::Plot
|
|
1605
|
+
Sanity
|
|
1606
|
+
SantaClaus::Utils
|
|
1607
|
+
Scalar::History
|
|
1608
|
+
Scalar::Util
|
|
1609
|
+
ScaleVec
|
|
1610
|
+
Scheduler::DRMAA
|
|
1611
|
+
Scheduler::DelayBetween
|
|
1612
|
+
Scientist
|
|
1613
|
+
Script::Hash
|
|
1614
|
+
Search::Dict
|
|
1615
|
+
SelectiveImporting
|
|
1616
|
+
Selenium::WebDriver
|
|
1617
|
+
Semantic::Versioning
|
|
1618
|
+
Semaphore::ReadersWriters
|
|
1619
|
+
Seq::Bounded
|
|
1620
|
+
Seq::PreFetch
|
|
1621
|
+
SeqSplitter
|
|
1622
|
+
Sequence::Generator
|
|
1623
|
+
Serialise::Map
|
|
1624
|
+
Serialize::Naive
|
|
1625
|
+
Serialize::Tiny
|
|
1626
|
+
Services::PortMapping
|
|
1627
|
+
Set::Equality
|
|
1628
|
+
Shareable
|
|
1629
|
+
Shell::Capture
|
|
1630
|
+
Shell::Command
|
|
1631
|
+
Shell::DSL
|
|
1632
|
+
Shell::Piping
|
|
1633
|
+
Shelve6
|
|
1634
|
+
Shodan
|
|
1635
|
+
SixPM
|
|
1636
|
+
Slang::Comments
|
|
1637
|
+
Slang::Date
|
|
1638
|
+
Slang::Emoji
|
|
1639
|
+
Slang::Forgiven
|
|
1640
|
+
Slang::Kazu
|
|
1641
|
+
Slang::Lambda
|
|
1642
|
+
Slang::Mosdef
|
|
1643
|
+
Slang::NumberBase
|
|
1644
|
+
Slang::Otherwise
|
|
1645
|
+
Slang::Piersing
|
|
1646
|
+
Slang::Predicate
|
|
1647
|
+
Slang::Roman
|
|
1648
|
+
Slang::SQL
|
|
1649
|
+
Slang::Subscripts
|
|
1650
|
+
Slang::Tuxic
|
|
1651
|
+
Slang:Date
|
|
1652
|
+
Slangify
|
|
1653
|
+
Slippy::Semilist
|
|
1654
|
+
Smack
|
|
1655
|
+
Smooth::Numbers
|
|
1656
|
+
SnowFlake
|
|
1657
|
+
Solstice
|
|
1658
|
+
Sort-Fast
|
|
1659
|
+
Sort::Naturally
|
|
1660
|
+
Soundn::Tina
|
|
1661
|
+
Spanish
|
|
1662
|
+
Sparky
|
|
1663
|
+
Sparky-Job-Api
|
|
1664
|
+
Sparky::Plugin::Hello
|
|
1665
|
+
Sparky::Plugin::Notify::Email
|
|
1666
|
+
Sparky::Plugin::Notify::Telegram
|
|
1667
|
+
Sparrow6
|
|
1668
|
+
Sparrow6::Rakudo::Install
|
|
1669
|
+
SparrowCI
|
|
1670
|
+
SparrowCI - super fun and flexible CI system with many programming languages support
|
|
1671
|
+
SparrowCI-SandBox
|
|
1672
|
+
Sparrowdo
|
|
1673
|
+
Sparrowdo::Archive
|
|
1674
|
+
Sparrowdo::Azure::Web::Cert
|
|
1675
|
+
Sparrowdo::Chef::Client
|
|
1676
|
+
Sparrowdo::Chef::Manager
|
|
1677
|
+
Sparrowdo::Cordova::OSx::Build
|
|
1678
|
+
Sparrowdo::Cordova::OSx::Fortify
|
|
1679
|
+
Sparrowdo::Cpanm::GitHub
|
|
1680
|
+
Sparrowdo::Cpm
|
|
1681
|
+
Sparrowdo::Goss
|
|
1682
|
+
Sparrowdo::Nginx
|
|
1683
|
+
Sparrowdo::Prometheus
|
|
1684
|
+
Sparrowdo::Rakudo
|
|
1685
|
+
Sparrowdo::RemoteFile
|
|
1686
|
+
Sparrowdo::Ruby::Bundler
|
|
1687
|
+
Sparrowdo::Rvm
|
|
1688
|
+
Sparrowdo::Sparrow::Update
|
|
1689
|
+
Sparrowdo::VSTS::YAML::Angular::Build
|
|
1690
|
+
Sparrowdo::VSTS::YAML::Artifact
|
|
1691
|
+
Sparrowdo::VSTS::YAML::Build
|
|
1692
|
+
Sparrowdo::VSTS::YAML::Build::Assembly::Patch
|
|
1693
|
+
Sparrowdo::VSTS::YAML::Cordova
|
|
1694
|
+
Sparrowdo::VSTS::YAML::DotNet
|
|
1695
|
+
Sparrowdo::VSTS::YAML::MsBuild
|
|
1696
|
+
Sparrowdo::VSTS::YAML::Nuget
|
|
1697
|
+
Sparrowdo::VSTS::YAML::Nuget::Build
|
|
1698
|
+
Sparrowdo::VSTS::YAML::Solution
|
|
1699
|
+
Sparrowdo::VSTS::YAML::Update::Azure::SSL
|
|
1700
|
+
Sparrowform
|
|
1701
|
+
Spreadsheet::Libxlsxio
|
|
1702
|
+
Spreadsheet::ODS
|
|
1703
|
+
Spreadsheet::XLSX
|
|
1704
|
+
Sprockets
|
|
1705
|
+
Stache
|
|
1706
|
+
Staticish
|
|
1707
|
+
Statistics
|
|
1708
|
+
Statistics::Distributions
|
|
1709
|
+
Statistics::LinearRegression
|
|
1710
|
+
Statistics::OutlierIdentifiers
|
|
1711
|
+
Stats
|
|
1712
|
+
Stomp
|
|
1713
|
+
Storable::Lite
|
|
1714
|
+
Stream::Buffered
|
|
1715
|
+
StrictClass
|
|
1716
|
+
StrictNamedArguments
|
|
1717
|
+
String::CRC32
|
|
1718
|
+
String::CamelCase
|
|
1719
|
+
String::Color
|
|
1720
|
+
String::Fields
|
|
1721
|
+
String::Fold
|
|
1722
|
+
String::FuzzyIndex
|
|
1723
|
+
String::Rotate
|
|
1724
|
+
String::Splice
|
|
1725
|
+
String::Stream
|
|
1726
|
+
String::Utils
|
|
1727
|
+
Structable
|
|
1728
|
+
Sub::Memoized
|
|
1729
|
+
Sub::Name
|
|
1730
|
+
Sub::Util
|
|
1731
|
+
Subset::Helper
|
|
1732
|
+
Subsets::Common
|
|
1733
|
+
Subsets::IO
|
|
1734
|
+
Sum
|
|
1735
|
+
SuperMAIN
|
|
1736
|
+
Supply::Folds
|
|
1737
|
+
Supply::Timeout
|
|
1738
|
+
SupplyTimeWindow
|
|
1739
|
+
Sway::Config
|
|
1740
|
+
Sway::PreviewKeys
|
|
1741
|
+
Symbol
|
|
1742
|
+
Syndication
|
|
1743
|
+
Syntax::Highlighters
|
|
1744
|
+
Sys::Chown
|
|
1745
|
+
Sys::Domainname
|
|
1746
|
+
Sys::HostAddr
|
|
1747
|
+
Sys::Hostname
|
|
1748
|
+
Sys::IP
|
|
1749
|
+
Sys::Lastlog
|
|
1750
|
+
Sys::OsRelease
|
|
1751
|
+
Sys::Utmp
|
|
1752
|
+
Syslog::Parse
|
|
1753
|
+
System::DiskAndUpdatesAlerts
|
|
1754
|
+
System::Passwd
|
|
1755
|
+
System::Query
|
|
1756
|
+
System::Stats::CPUsage
|
|
1757
|
+
System::Stats::DISKUsage
|
|
1758
|
+
System::Stats::MEMUsage
|
|
1759
|
+
System::Stats::NETUsage
|
|
1760
|
+
T
|
|
1761
|
+
TAP
|
|
1762
|
+
TCC
|
|
1763
|
+
TCP::LowLevel
|
|
1764
|
+
TOML
|
|
1765
|
+
TOML::Thumb
|
|
1766
|
+
TOP
|
|
1767
|
+
Task::Popular
|
|
1768
|
+
Teddy Bear
|
|
1769
|
+
Telegram
|
|
1770
|
+
TelegramBot
|
|
1771
|
+
Temp::Path
|
|
1772
|
+
Template6
|
|
1773
|
+
Template::Anti
|
|
1774
|
+
Template::Classic
|
|
1775
|
+
Template::Mojo
|
|
1776
|
+
Template::Mustache
|
|
1777
|
+
Template::Nest
|
|
1778
|
+
Template::Nest::Fast
|
|
1779
|
+
Template::Nest::XS
|
|
1780
|
+
Template::Prometheus
|
|
1781
|
+
Template::Protone
|
|
1782
|
+
Term::Choose
|
|
1783
|
+
Term::Choose::Util
|
|
1784
|
+
Term::ReadKey
|
|
1785
|
+
Term::Size
|
|
1786
|
+
Term::TablePrint
|
|
1787
|
+
Term::termios
|
|
1788
|
+
Termbox
|
|
1789
|
+
Terminal-API
|
|
1790
|
+
Terminal-MakeRaw
|
|
1791
|
+
Terminal::ANSI
|
|
1792
|
+
Terminal::ANSIColor
|
|
1793
|
+
Terminal::ANSIParser
|
|
1794
|
+
Terminal::Boxer
|
|
1795
|
+
Terminal::Caca
|
|
1796
|
+
Terminal::Capabilities
|
|
1797
|
+
Terminal::Getpass
|
|
1798
|
+
Terminal::Graphing::BarChart
|
|
1799
|
+
Terminal::LineEditor
|
|
1800
|
+
Terminal::Print
|
|
1801
|
+
Terminal::QuickCharts
|
|
1802
|
+
Terminal::ReadKey
|
|
1803
|
+
Terminal::Size
|
|
1804
|
+
Terminal::Spinners
|
|
1805
|
+
Terminal::Table
|
|
1806
|
+
Terminal::Tests
|
|
1807
|
+
Terminal::UI
|
|
1808
|
+
Terminal::WCWidth
|
|
1809
|
+
Terminal::Widgets
|
|
1810
|
+
Terminal::Width
|
|
1811
|
+
Test::Assertion
|
|
1812
|
+
Test::Async
|
|
1813
|
+
Test::Base
|
|
1814
|
+
Test::Builder
|
|
1815
|
+
Test::Class
|
|
1816
|
+
Test::Color
|
|
1817
|
+
Test::ContainerizedService
|
|
1818
|
+
Test::Coverage
|
|
1819
|
+
Test::Declare
|
|
1820
|
+
Test::Deeply::Relaxed
|
|
1821
|
+
Test::Describe
|
|
1822
|
+
Test::Diehard
|
|
1823
|
+
Test::Differences
|
|
1824
|
+
Test::Fuzz
|
|
1825
|
+
Test::Grammar
|
|
1826
|
+
Test::HTTP::Server
|
|
1827
|
+
Test::IO::Socket::Async
|
|
1828
|
+
Test::Inline
|
|
1829
|
+
Test::Junkie
|
|
1830
|
+
Test::Lab
|
|
1831
|
+
Test::META
|
|
1832
|
+
Test::Mock
|
|
1833
|
+
Test::NoTabs
|
|
1834
|
+
Test::Notice
|
|
1835
|
+
Test::Output
|
|
1836
|
+
Test::Performance
|
|
1837
|
+
Test::Run
|
|
1838
|
+
Test::Scheduler
|
|
1839
|
+
Test::Script
|
|
1840
|
+
Test::Script::Output
|
|
1841
|
+
Test::Selector
|
|
1842
|
+
Test::SourceFiles
|
|
1843
|
+
Test::Stream
|
|
1844
|
+
Test::Time
|
|
1845
|
+
Test::Util::ServerPort
|
|
1846
|
+
Test::When
|
|
1847
|
+
Testing
|
|
1848
|
+
Testo
|
|
1849
|
+
Text::BorderedBlock
|
|
1850
|
+
Text::CSV
|
|
1851
|
+
Text::CSV::LibCSV
|
|
1852
|
+
Text::Caesar
|
|
1853
|
+
Text::Calendar
|
|
1854
|
+
Text::Center
|
|
1855
|
+
Text::Chart
|
|
1856
|
+
Text::CodeProcessing
|
|
1857
|
+
Text::Diff
|
|
1858
|
+
Text::Diff::Sift4
|
|
1859
|
+
Text::Emoji
|
|
1860
|
+
Text::Emotion
|
|
1861
|
+
Text::Flags
|
|
1862
|
+
Text::Fortune
|
|
1863
|
+
Text::FriBidi
|
|
1864
|
+
Text::Homoglyph
|
|
1865
|
+
Text::Homoglyph::ASCII
|
|
1866
|
+
Text::Homoglyph::Cyrillic
|
|
1867
|
+
Text::LDIF
|
|
1868
|
+
Text::LTSV
|
|
1869
|
+
Text::Levenshtein
|
|
1870
|
+
Text::Levenshtein::Damerau
|
|
1871
|
+
Text::Lorem
|
|
1872
|
+
Text::Markdown
|
|
1873
|
+
Text::Markov
|
|
1874
|
+
Text::MathematicalCase
|
|
1875
|
+
Text::MiscUtils
|
|
1876
|
+
Text::Names
|
|
1877
|
+
Text::Plot
|
|
1878
|
+
Text::ShellWords
|
|
1879
|
+
Text::Sift4
|
|
1880
|
+
Text::Slugify
|
|
1881
|
+
Text::Sorensen
|
|
1882
|
+
Text::Spintax
|
|
1883
|
+
Text::SubParsers
|
|
1884
|
+
Text::T9
|
|
1885
|
+
Text::TFIdf
|
|
1886
|
+
Text::Table::List
|
|
1887
|
+
Text::Table::Simple
|
|
1888
|
+
Text::Tabs
|
|
1889
|
+
Text::Template
|
|
1890
|
+
Text::Utils
|
|
1891
|
+
Text::VimColour
|
|
1892
|
+
Text::Wrap
|
|
1893
|
+
Tie::Array
|
|
1894
|
+
Tie::Hash
|
|
1895
|
+
Tie::StdArray
|
|
1896
|
+
Tie::StdHash
|
|
1897
|
+
Tika
|
|
1898
|
+
Time::Crontab
|
|
1899
|
+
Time::Duration
|
|
1900
|
+
Time::Duration::Parser
|
|
1901
|
+
Time::Repeat
|
|
1902
|
+
Time::gmtime
|
|
1903
|
+
Time::localtime
|
|
1904
|
+
TimeBomb
|
|
1905
|
+
TimeUnit
|
|
1906
|
+
Timer
|
|
1907
|
+
Timer::Breakable
|
|
1908
|
+
Timer::Stopwatch
|
|
1909
|
+
Timezones::US
|
|
1910
|
+
Timezones::ZoneInfo
|
|
1911
|
+
Tinky
|
|
1912
|
+
Tinky::Declare
|
|
1913
|
+
Tinky::Hash
|
|
1914
|
+
Tinky::JSON
|
|
1915
|
+
TinyCC
|
|
1916
|
+
TinyCC::Resources::Win64
|
|
1917
|
+
TinyFloats
|
|
1918
|
+
TinyID
|
|
1919
|
+
Today
|
|
1920
|
+
Toi
|
|
1921
|
+
Token::Foreign
|
|
1922
|
+
Tokenizers
|
|
1923
|
+
Tomtit
|
|
1924
|
+
Tomtit::Profile::Python
|
|
1925
|
+
Tomty
|
|
1926
|
+
TooLoo
|
|
1927
|
+
Touch
|
|
1928
|
+
Trait::Enum
|
|
1929
|
+
Trait::Env
|
|
1930
|
+
Trait::IO
|
|
1931
|
+
Trait::Traced
|
|
1932
|
+
Transit::Network
|
|
1933
|
+
Trap
|
|
1934
|
+
Tree::Binary
|
|
1935
|
+
Trie
|
|
1936
|
+
TrigPi
|
|
1937
|
+
Trove
|
|
1938
|
+
Tuple
|
|
1939
|
+
Type::EnumHOW
|
|
1940
|
+
Typesafe::HTML
|
|
1941
|
+
Typesafe::XHTML::Writer
|
|
1942
|
+
UEncoding
|
|
1943
|
+
UI::HTMLWindow
|
|
1944
|
+
UK::Sort
|
|
1945
|
+
ULID
|
|
1946
|
+
UML::Translators
|
|
1947
|
+
UNICODE-VERSION
|
|
1948
|
+
UNIX::Privileges
|
|
1949
|
+
URI
|
|
1950
|
+
URI::Encode
|
|
1951
|
+
URI::FetchFile
|
|
1952
|
+
URI::Query::FromHash
|
|
1953
|
+
URI::Template
|
|
1954
|
+
URL
|
|
1955
|
+
URL::Find
|
|
1956
|
+
US-ASCII
|
|
1957
|
+
UUID
|
|
1958
|
+
UUID::V4
|
|
1959
|
+
Ujumla
|
|
1960
|
+
Uni63
|
|
1961
|
+
Unicode
|
|
1962
|
+
Unicode::GCB
|
|
1963
|
+
Unicode::PRECIS
|
|
1964
|
+
Unicode::Security
|
|
1965
|
+
Unicode::UTF8-Parser
|
|
1966
|
+
Universal::Errno
|
|
1967
|
+
Universal::errno
|
|
1968
|
+
Unix::Groups
|
|
1969
|
+
Unix::errno
|
|
1970
|
+
UpRooted
|
|
1971
|
+
Updown
|
|
1972
|
+
Usage::Utils
|
|
1973
|
+
User::Language
|
|
1974
|
+
User::Timezone
|
|
1975
|
+
User::grent
|
|
1976
|
+
User::pwent
|
|
1977
|
+
UserTimezone
|
|
1978
|
+
Util::Bitfield
|
|
1979
|
+
Util::Uuencode
|
|
1980
|
+
Uxmal
|
|
1981
|
+
Uzu
|
|
1982
|
+
VERS
|
|
1983
|
+
ValueClass
|
|
1984
|
+
ValueList
|
|
1985
|
+
ValueMap
|
|
1986
|
+
ValuePair
|
|
1987
|
+
ValueType
|
|
1988
|
+
ValueTypeCache
|
|
1989
|
+
Verge::RPC::Client
|
|
1990
|
+
Version::Semantic
|
|
1991
|
+
Vikna
|
|
1992
|
+
Vips::Native
|
|
1993
|
+
Vroom::Reveal
|
|
1994
|
+
W3C::DOM
|
|
1995
|
+
WAT
|
|
1996
|
+
WAT--CLI
|
|
1997
|
+
WWW
|
|
1998
|
+
WWW--CloudHosting--Hetzner
|
|
1999
|
+
WWW::CloudHosting::Hetzner
|
|
2000
|
+
WWW::DuckDuckGo
|
|
2001
|
+
WWW::GCloud
|
|
2002
|
+
WWW::GCloud::API::Storage
|
|
2003
|
+
WWW::GCloud::API::Vision
|
|
2004
|
+
WWW::Gemini
|
|
2005
|
+
WWW::LLaMA
|
|
2006
|
+
WWW::MermaidInk
|
|
2007
|
+
WWW::MistralAI
|
|
2008
|
+
WWW::OpenAI
|
|
2009
|
+
WWW::PaLM
|
|
2010
|
+
WWW::WolframAlpha
|
|
2011
|
+
WWW::YouTube
|
|
2012
|
+
Wasm::Emitter
|
|
2013
|
+
Web::App::MVC
|
|
2014
|
+
Web::Cache
|
|
2015
|
+
Web::RF
|
|
2016
|
+
Web::Scraper
|
|
2017
|
+
Web::Template
|
|
2018
|
+
WebDriver
|
|
2019
|
+
WebDriver2
|
|
2020
|
+
WebService::AWS::Auth::V4
|
|
2021
|
+
WebService::AWS::S3
|
|
2022
|
+
WebService::Discourse
|
|
2023
|
+
WebService::GitHub
|
|
2024
|
+
WebService::GoogleDyDNS
|
|
2025
|
+
WebService::HashiCorp::Vault
|
|
2026
|
+
WebService::HazIP
|
|
2027
|
+
WebService::Lastfm
|
|
2028
|
+
WebService::Nominatim
|
|
2029
|
+
WebService::Overpass
|
|
2030
|
+
WebService::SOP
|
|
2031
|
+
WebService::Slack::Webhook
|
|
2032
|
+
WebService::Soundcloud
|
|
2033
|
+
WebService::TMDB
|
|
2034
|
+
WebSocket
|
|
2035
|
+
WhereList
|
|
2036
|
+
Wikidata::API
|
|
2037
|
+
Win32::DrivesAndTypes
|
|
2038
|
+
Win32::Registry
|
|
2039
|
+
Windows::Test
|
|
2040
|
+
Wkhtmltox
|
|
2041
|
+
WriteOnceHash
|
|
2042
|
+
X11::Xlib::Raw
|
|
2043
|
+
X11::libxdo
|
|
2044
|
+
X::Protocol
|
|
2045
|
+
XDG::BaseDirectory
|
|
2046
|
+
XDG::GuaranteedResources
|
|
2047
|
+
XHTML::Writer
|
|
2048
|
+
XML
|
|
2049
|
+
XML::Actions
|
|
2050
|
+
XML::Canonical
|
|
2051
|
+
XML::Class
|
|
2052
|
+
XML::Entity::HTML
|
|
2053
|
+
XML::Fast
|
|
2054
|
+
XML::Query
|
|
2055
|
+
XML::Rabbit
|
|
2056
|
+
XML::Signature
|
|
2057
|
+
XML::XPath
|
|
2058
|
+
YAML::Parser::LibYAML
|
|
2059
|
+
YAMLScript
|
|
2060
|
+
YAMLStar
|
|
2061
|
+
YAMLish
|
|
2062
|
+
YakShave
|
|
2063
|
+
Zap
|
|
2064
|
+
Zeco
|
|
2065
|
+
Zef::Configuration
|
|
2066
|
+
Zodiac::Chinese
|
|
2067
|
+
_
|
|
2068
|
+
actions
|
|
2069
|
+
ake
|
|
2070
|
+
allow-no
|
|
2071
|
+
annotations
|
|
2072
|
+
antlia
|
|
2073
|
+
are
|
|
2074
|
+
as-cli-arguments
|
|
2075
|
+
auto-dynamic
|
|
2076
|
+
bird
|
|
2077
|
+
caelum
|
|
2078
|
+
cmark::Simple
|
|
2079
|
+
colomon::App::TagTools
|
|
2080
|
+
content-storage-cli
|
|
2081
|
+
cro
|
|
2082
|
+
delete-old-until-size
|
|
2083
|
+
deredere
|
|
2084
|
+
eigenstates
|
|
2085
|
+
envy
|
|
2086
|
+
epoll
|
|
2087
|
+
fez
|
|
2088
|
+
flow
|
|
2089
|
+
fornax
|
|
2090
|
+
from
|
|
2091
|
+
has-word
|
|
2092
|
+
head-skip-tail
|
|
2093
|
+
hide-methods
|
|
2094
|
+
highlighter
|
|
2095
|
+
hyperize
|
|
2096
|
+
if
|
|
2097
|
+
immutable
|
|
2098
|
+
inode-dev-devtype
|
|
2099
|
+
jmp
|
|
2100
|
+
kazmath
|
|
2101
|
+
lacerta
|
|
2102
|
+
lemmatize
|
|
2103
|
+
mandelbrot
|
|
2104
|
+
mv2d
|
|
2105
|
+
nano
|
|
2106
|
+
octans
|
|
2107
|
+
orion
|
|
2108
|
+
overload::constant
|
|
2109
|
+
pack6
|
|
2110
|
+
path-utils
|
|
2111
|
+
paths
|
|
2112
|
+
python::itertools
|
|
2113
|
+
rak
|
|
2114
|
+
raku-RandomColor
|
|
2115
|
+
raku-mailgun
|
|
2116
|
+
raku-pod-extraction
|
|
2117
|
+
rakudoc
|
|
2118
|
+
rakudoc2man
|
|
2119
|
+
rawstr4c
|
|
2120
|
+
roundrobin-slip
|
|
2121
|
+
shorten-sub-commands
|
|
2122
|
+
sigpipe
|
|
2123
|
+
silently
|
|
2124
|
+
snip
|
|
2125
|
+
sortuk
|
|
2126
|
+
sourcery
|
|
2127
|
+
span
|
|
2128
|
+
sublist
|
|
2129
|
+
subs
|
|
2130
|
+
taurus
|
|
2131
|
+
under-version-control
|
|
2132
|
+
uniname-words
|
|
2133
|
+
uniprop
|
|
2134
|
+
unprint
|
|
2135
|
+
vCard::Parser
|
|
2136
|
+
vars
|
|
2137
|
+
wordfinder
|
|
2138
|
+
zef
|