├── .codemapignore ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .env.example ├── .github ├── pull_request_template.md └── workflows │ ├── build-and-deploy.yml │ ├── markdown-link-check-on-schedule.yml │ ├── markdown-link-check.yml │ ├── meilisearch-docs-scraper.yml │ ├── meilisearch-scrape.yml.old │ ├── test-build.yml │ └── update-help-command.yml ├── .gitignore ├── .mlc_config.json ├── .pre-commit-config.yaml.template ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── babel.config.js ├── copy-metrics-md ├── docs ├── cheat-sheets │ ├── django-xss.mdx │ ├── express-xss.mdx │ ├── flask-xss.mdx │ ├── go-command-injection.mdx │ ├── go-xss.mdx │ ├── java-code-injection.mdx │ ├── java-command-injection.mdx │ ├── java-jsp-xss.mdx │ ├── java-xxe.mdx │ ├── javascript-code-injection.mdx │ ├── javascript-command-injection.mdx │ ├── overview.md │ ├── python-code-injection.mdx │ ├── python-command-injection.mdx │ ├── rails-xss.mdx │ ├── ruby-code-injection.mdx │ └── ruby-command-injection.mdx ├── cli-reference.md.template ├── compliance │ ├── fedramp.md │ ├── gdpr.md │ ├── hipaa-hitrust.md │ ├── iso27001.md │ ├── iso27017.md │ ├── nist-800-171.md │ ├── overview.md │ ├── pci-dss.md │ └── soc2.md ├── contributing │ ├── adding-a-language.md │ ├── contributing-code.md │ ├── contributing-rules.md │ ├── contributing.md │ ├── cst-to-ast-tips.md │ ├── philosophy.md │ ├── semgrep-contributing.md │ ├── semgrep-core-contributing.md │ ├── troubleshooting.md │ └── updating-a-grammar.md ├── customize-semgrep-ce.md ├── deployment │ ├── add-semgrep-other-ci.md │ ├── add-semgrep-to-ci.md │ ├── beyond-core-deployment.md │ ├── claim-a-license.md │ ├── connect-scm.md │ ├── core-deployment.md │ ├── create-account-and-orgs.md │ ├── customize-ci-jobs.md │ ├── deployment-checklist.md │ ├── local-to-scp-scans.md │ ├── manage-projects.md │ ├── managed-scanning │ │ ├── azure.md │ │ ├── bitbucket.md │ │ ├── github.md │ │ ├── gitlab.md │ │ └── overview.md │ ├── oss-deployment.md │ ├── primary-branch.md │ ├── sso.md │ └── teams.md ├── extensions │ ├── overview.md │ ├── pre-commit.md │ ├── pre-commit.md.template │ ├── semgrep-intellij.md │ └── semgrep-vs-code.md ├── faq │ ├── comparisons │ │ ├── codeql.md │ │ ├── endor-labs.md │ │ ├── opengrep.md │ │ ├── snyk.md │ │ └── sonarqube.md │ └── overview.md ├── for-developers │ ├── detection.md │ ├── developer-local-scans.md │ ├── developer-overview.md │ ├── developer-signin.md │ ├── ide.md │ ├── resolve-findings-through-app.md │ └── resolve-findings-through-comments.md ├── getting-started │ ├── cli.md │ ├── introduction.md │ ├── quickstart-ce.md │ ├── quickstart-sms.md │ ├── quickstart.md │ └── scm-support.md ├── ignoring-files-folders-code.md.template ├── index.md ├── integrating.md ├── kb │ ├── integrations │ │ ├── customize-semgrep-precommit.md │ │ ├── defect-dojo-integration.md │ │ └── pagination.md │ ├── rules │ │ ├── changing-rule-severity-and-other-metadata.md │ │ ├── ellipsis-metavariables.md │ │ ├── exclude_rule_for_certain_filetypes.md │ │ ├── match-absence.md │ │ ├── match-comments.md │ │ ├── pattern-parse-error.md │ │ ├── rule-file-perf-principles.md │ │ ├── ruleset-default-mode.md │ │ ├── run-all-available-rules.md │ │ ├── understand-severities.md │ │ ├── using-pattern-not-inside.md │ │ └── using-semgrep-rule-schema-in-vscode.md │ ├── semgrep-appsec-platform │ │ ├── act-on-your-behalf.md │ │ ├── api-404-token-scope.md │ │ ├── automate-rules-deployment.md │ │ ├── cannot-access-semgrep-after-github-login.md │ │ ├── dependency-count-differ-platform.md │ │ ├── error-externally-managed-environment.md │ │ ├── fedramp-with-semgrep.md │ │ ├── findings-count-differ-api-platform.md │ │ ├── findings-count-differ-platform.md │ │ ├── inline-pr-comments.md │ │ ├── missing-pr-comments.md │ │ ├── no-runs-in-github-merge-queues.md │ │ ├── projects-not-yet-started-sms.md │ │ ├── remove-users.md │ │ ├── saml-attributestatement.md │ │ ├── saml-authentication-method-match.md │ │ ├── saml-bad-signature.md │ │ ├── saml-google-workspace.md │ │ ├── saml-microsoft-entra-id.md │ │ ├── saml-stops-working.md │ │ ├── search-filter-sort-findings.md │ │ ├── semgrep-login-cli-tenant.md │ │ └── sso-attribute-error.md │ ├── semgrep-assistant │ │ ├── azure-openai-error-429.md │ │ └── missing-pr-mr-comments.md │ ├── semgrep-ci │ │ ├── azure-self-hosted-ubuntu.md │ │ ├── azure-using-templates-with-semgrep.md │ │ ├── bitbucket-jenkins-freestyle-projects.md │ │ ├── bitbucket-triggering-events-to-jenkins.md │ │ ├── bitbuket-jenkins-pipeline-projects.md │ │ ├── ci-vs-cli.md │ │ ├── collect-gha-logs.md │ │ ├── collect-gitlab-logs.md │ │ ├── git-command-errors.md │ │ ├── github-repository-rulesets-semgrep.md │ │ ├── github-reusable-workflows-semgrep.md │ │ ├── github-upload-findings-in-security-dashboard.md │ │ ├── jenkins-diff-scans.md │ │ ├── jenkins-shared-library-with-semgrep.md │ │ ├── mr-comments-through-gitlab-runner.md │ │ ├── new-scm-connections.md │ │ ├── scan-compressed-files-artifacts.md │ │ ├── scan-monorepo-in-parts.md │ │ ├── trigger-diff-scans-env-var.md │ │ ├── using-nonroot-docker-image-with-gha.md │ │ └── why-duplicate-findings.md │ ├── semgrep-code │ │ ├── InvalidHeaderValue.md │ │ ├── collect-cli-logs.md │ │ ├── finding_all_taints.md │ │ ├── gitlab-group-variables.md │ │ ├── language-version-support.md │ │ ├── reduce-false-positives.md │ │ ├── run-specific-version.md │ │ ├── scan-engine-kill.md │ │ ├── semgrep-scan-troubleshooting.md │ │ ├── semgrepignore-ignored.md │ │ └── unexpected-new-findings.md │ ├── semgrep-secrets │ │ ├── no-example-secrets-found.md │ │ └── per-product-ignore-not-working.md │ └── semgrep-supply-chain │ │ ├── exclude-rule.md │ │ ├── scanning_multiple_lockfiles.md │ │ ├── ssc-lockfiles-circleci.md │ │ ├── ssc-python-lockfiles.md │ │ └── why-no-findings.md ├── languages │ ├── csharp.md │ ├── go.md │ ├── java.md │ ├── javascript.md │ ├── kotlin.md │ ├── python.md │ ├── ruby.md │ ├── scala.md │ └── swift.md ├── learn │ ├── overview.md │ ├── security-foundations │ │ ├── assets │ │ │ ├── sast-dataflow.drawio │ │ │ ├── sast-dataflow.png │ │ │ ├── sca.drawio │ │ │ ├── sca.png │ │ │ ├── workflow.drawio │ │ │ └── workflow.png │ │ ├── overview.md │ │ ├── sast │ │ │ └── overview.md │ │ ├── security-testing-workflow.md │ │ └── supply-chain-security.md │ └── vulnerabilities │ │ ├── code-injection │ │ └── overview.md │ │ ├── command-injection │ │ ├── argo-injection.md │ │ ├── github-actions-injection.md │ │ └── overview.md │ │ ├── cross-site-scripting │ │ └── overview.md │ │ ├── insecure-deserialization │ │ ├── overview.md │ │ ├── py-deserialization.md │ │ └── python-deserialization.md │ │ ├── insecure-direct-object-reference │ │ └── overview.md │ │ ├── open-redirect │ │ └── overview.md │ │ ├── overview.mdx │ │ ├── server-side-request-forgery │ │ └── overview.md │ │ ├── sql-injection │ │ └── overview.md │ │ └── xml-security │ │ └── overview.md ├── licensing.md ├── mcp.md ├── metrics-helmet.md ├── prerequisites.md ├── reporting-false-negatives.md ├── run-a-successful-pov.md ├── running-rules.md ├── search_js.js ├── secure-guardrails │ ├── custom-guardrails-rules.md │ ├── overview.md │ └── secure-defaults.md ├── security.md ├── semgrep-appsec-platform │ ├── azure-pr-comments.md │ ├── bitbucket-cloud-pr-comments.md │ ├── bitbucket-data-center-pr-comments.md │ ├── cortex.md │ ├── dashboard-old.md │ ├── dashboard.md │ ├── email.md │ ├── findings-details.md │ ├── github-pr-comments.md │ ├── gitlab-mr-comments.md │ ├── jira.md │ ├── json-and-sarif.md │ ├── notifications.md │ ├── scm-code-access.md │ ├── semgrep-api.md │ ├── slack.md │ ├── sysdig.md │ ├── tags.md │ ├── ticketing.md │ ├── webhooks.md │ └── wiz.md ├── semgrep-assistant │ ├── analyze.md │ ├── best-practices-for-memories.md │ ├── customize.md │ ├── getting-started.md │ ├── metrics.md │ ├── overview.md │ └── privacy.md ├── semgrep-ce-languages.md ├── semgrep-ci │ ├── ci-environment-variables.md │ ├── configuring-blocking-and-errors-in-ci.md │ ├── findings-ci.md │ ├── network-broker.md │ ├── packages-in-semgrep-docker.md │ └── sample-ci-configs.md ├── semgrep-code │ ├── editor.md │ ├── finding-details.md │ ├── findings.md │ ├── glossary.md │ ├── java.md │ ├── overview.md │ ├── policies.md │ ├── pro-rules.md │ ├── remove-duplicates.md │ ├── semgrep-pro-engine-data-flow.md │ ├── semgrep-pro-engine-examples.md │ ├── semgrep-pro-engine-intro.md │ └── triage-remediation.md ├── semgrep-pro-vs-oss.md ├── semgrep-secrets │ ├── conceptual-overview.md │ ├── finding-details.md │ ├── findings.md │ ├── generic-secrets.md │ ├── getting-started.md │ ├── glossary.md │ ├── historical-scanning.md │ ├── policies.md │ ├── rules.md │ ├── triage-remediation.md │ └── validators.md ├── semgrep-supply-chain │ ├── dependency-search.md │ ├── finding-details.md │ ├── findings.md │ ├── getting-started.md │ ├── glossary.md │ ├── ignoring-deps.md │ ├── license-compliance.md │ ├── malicious-dependencies.md │ ├── overview.md │ ├── policies.md │ ├── sbom.md │ ├── setup-infrastructure.md │ ├── setup-jenkins-ui.md │ ├── setup-maven.md │ └── triage-remediation.md ├── semgrepignore-v2-reference.md ├── support.md ├── supported-languages.md ├── trophy-case.md ├── troubleshooting │ ├── rules.md │ ├── semgrep-app.md │ └── semgrep.md ├── update.md ├── usage-and-billing.mdx └── writing-rules │ ├── autofix.md │ ├── data-flow │ ├── constant-propagation.md │ ├── data-flow-overview.md │ ├── status.md │ └── taint-mode │ │ ├── advanced.md │ │ └── overview.md │ ├── experiments │ ├── aliengrep.md │ ├── deprecated-experiments.md │ ├── display-propagated-metavariable.md │ ├── introduction.md │ ├── join-mode │ │ ├── overview.md │ │ └── recursive-joins.md │ ├── metavariable-type.md │ ├── multiple-focus-metavariables.md │ ├── pattern-syntax.md │ ├── project-depends-on.md │ └── symbolic-propagation.md │ ├── generic-pattern-matching.md │ ├── glossary.md │ ├── metavariable-analysis.md │ ├── overview.md │ ├── pattern-examples.md │ ├── pattern-syntax.mdx │ ├── private-rules.md │ ├── rule-ideas.md │ ├── rule-syntax.md │ └── testing-rules.md ├── docusaurus.config.js ├── faqs └── internal.md ├── meilisearch-settings.json ├── netlify.toml ├── netlify └── functions │ ├── meilisearch-chat.js │ └── meilisearch.js ├── package.json ├── release-notes ├── all-release-notes.md ├── april-2021.md ├── april-2022.md ├── april-2023.md ├── april-2024.md ├── april-2025.md ├── august-2021.md ├── august-2022.md ├── august-2023.md ├── august-2024.md ├── august-2025.md ├── december-2021.md ├── december-2022.md ├── december-2023.md ├── december-2024.md ├── february-2022.md ├── february-2023.md ├── february-2024.md ├── february-2025.md ├── january-2022.md ├── january-2023.md ├── january-2024.md ├── january-2025.md ├── july-2021.md ├── july-2022.md ├── july-2023.md ├── july-2024.md ├── july-2025.md ├── june-2021.md ├── june-2022.md ├── june-2023.md ├── june-2024.md ├── june-2025.md ├── march-2022.md ├── march-2023.md ├── march-2024.md ├── march-2025.md ├── may-2021.md ├── may-2022.md ├── may-2023.md ├── may-2024.md ├── may-2025.md ├── november-2021.md ├── november-2022.md ├── november-2023.md ├── november-2024.md ├── november-2025.md ├── october-2021.md ├── october-2022.md ├── october-2023.md ├── october-2024.md ├── october-2025.md ├── rule-updates.mdx ├── september-2021.md ├── september-2022.md ├── september-2023.md ├── september-2024.md └── september-2025.md ├── replace-on-build.py ├── run-build-scripts ├── scripts └── update-vulnerability-categories.js ├── sidebars.js ├── src ├── components │ ├── Card │ │ ├── CardBody │ │ │ └── index.tsx │ │ ├── CardFooter │ │ │ └── index.tsx │ │ ├── CardHeader │ │ │ └── index.tsx │ │ ├── CardImage │ │ │ └── index.tsx │ │ └── index.tsx │ ├── HomepageFeatures.js │ ├── HomepageFeatures.module.css │ ├── LinkToRegistryRule.js │ ├── MeilisearchChatbotIntegrated.tsx │ ├── MoreHelp.js │ ├── Placeholder.js │ ├── Tags.js │ ├── VulnerabilityCategories.js │ ├── code_snippets │ │ ├── _azure-semgrep-app-sast.mdx │ │ ├── _azure-semgrep-app-ssc.mdx │ │ ├── _azure-semgrep-app-standalone.mdx │ │ ├── _azure-semgrep-oss-sast.mdx │ │ ├── _bitbucket-semgrep-app-sast.mdx │ │ ├── _bitbucket-semgrep-app-ssc.mdx │ │ ├── _bitbucket-semgrep-app-standalone.mdx │ │ ├── _bitbucket-semgrep-oss-sast.mdx │ │ ├── _buildkite-semgrep-app-sast.mdx │ │ ├── _buildkite-semgrep-app-ssc.mdx │ │ ├── _buildkite-semgrep-app-standalone.mdx │ │ ├── _buildkite-semgrep-oss-sast.mdx │ │ ├── _cheat-sheets-recommended-rule-set.mdx │ │ ├── _circleci-semgrep-app-sast.mdx │ │ ├── _circleci-semgrep-app-ssc.mdx │ │ ├── _circleci-semgrep-app-standalone.mdx │ │ ├── _circleci-semgrep-oss-sast.mdx │ │ ├── _gha-semgrep-app-sast-dash.mdx │ │ ├── _gha-semgrep-app-sast.mdx │ │ ├── _gha-semgrep-oss-sast.mdx │ │ ├── _glcicd-semgrep-app-sast-dash.mdx │ │ ├── _glcicd-semgrep-app-sast.mdx │ │ ├── _glcicd-semgrep-app-ssc.mdx │ │ ├── _glcicd-semgrep-app-standalone-dash.mdx │ │ ├── _glcicd-semgrep-app-standalone.mdx │ │ ├── _glcicd-semgrep-oss-sast.mdx │ │ ├── _jenkins-semgrep-app-bbdc.mdx │ │ ├── _jenkins-semgrep-app-sast-docker.mdx │ │ ├── _jenkins-semgrep-app-sast.mdx │ │ ├── _jenkins-semgrep-app-ssc.mdx │ │ ├── _jenkins-semgrep-app-standalone.mdx │ │ ├── _jenkins-semgrep-oss-sast.mdx │ │ ├── _semaphore-semgrep-app-sast.mdx │ │ ├── _semaphore-semgrep-oss-sast.mdx │ │ └── readme │ ├── concept │ │ ├── _code-injection-intro.mdx │ │ ├── _command-injection-intro.mdx │ │ ├── _comments-in-supply-chain.md │ │ ├── _data-flow-status.mdx │ │ ├── _def-cross-file.mdx │ │ ├── _def-cross-function.mdx │ │ ├── _def-reachability.md │ │ ├── _demo-project-introduction.mdx │ │ ├── _deployment-journey.mdx │ │ ├── _epss-types.md │ │ ├── _findings-default-view.mdx │ │ ├── _ip_addresses.mdx │ │ ├── _lang-callout.md │ │ ├── _lang-ce-intro.md │ │ ├── _lang-code-analyses.md │ │ ├── _lang-coverage.md │ │ ├── _lang-def-code.md │ │ ├── _lang-def-ssc.md │ │ ├── _lang-intro.md │ │ ├── _lang-ssc-features.md │ │ ├── _next-steps-comments.mdx │ │ ├── _notification-deduplication.mdx │ │ ├── _platform-signin-intro.md │ │ ├── _reachability-types.md │ │ ├── _semgrep-code-display-tainted-data.mdx │ │ ├── _semgrep-pro-engine-introduction.mdx │ │ ├── _semgrep-scan.mdx │ │ ├── _ssc-intro.md │ │ ├── _template.mdx │ │ ├── _time-period-filters.md │ │ ├── _transitivity-types.md │ │ └── _xss-injection-intro.mdx │ ├── procedure │ │ ├── _customize_pr_mr_comments.mdx │ │ ├── _delete-a-project.md │ │ ├── _delete-custom-rule.mdx │ │ ├── _detect-gh-repos.md │ │ ├── _disable-rule.mdx │ │ ├── _enable-autofix.mdx │ │ ├── _export-findings-csv.md │ │ ├── _fail-open.mdx │ │ ├── _install-cli.mdx │ │ ├── _install-private-github-app.mdx │ │ ├── _join-an-org.md │ │ ├── _login-activate.mdx │ │ ├── _next-after-comments.mdx │ │ ├── _platform-add-repo.md │ │ ├── _platform-detect-ghrepos.md │ │ ├── _platform-signin-github.md │ │ ├── _platform-signin-gitlab.md │ │ ├── _pr-comments-in-sast.mdx │ │ ├── _pr-comments-in-secrets.mdx │ │ ├── _quickstart-intellij.md │ │ ├── _quickstart-vscode.md │ │ ├── _quickstart.md │ │ ├── _receive-comments-scm.mdx │ │ ├── _remove-demo-project.mdx │ │ ├── _retrieve-gha-logs.mdx │ │ ├── _scan-with-sms.mdx │ │ ├── _semgrep-code-display-tainted-data.mdx │ │ ├── _set-env-vars-azure.mdx │ │ ├── _template.mdx │ │ ├── _turn-off-sms-in-semgrep-appsec-platform.mdx │ │ └── _view-details-ssc.md │ └── reference │ │ ├── _admonition-sot-cves.md │ │ ├── _block-findings-errors-configs.mdx │ │ ├── _ci-ignoring-files.mdx │ │ ├── _ci-scheduling.mdx │ │ ├── _cli-help-ci-output.md │ │ ├── _cli-help-output.md │ │ ├── _cli-help-scan-output.md │ │ ├── _comment-triggers.mdx │ │ ├── _define-connection-variables.mdx │ │ ├── _diff-aware-scanning.mdx │ │ ├── _export-as.mdx │ │ ├── _fork_existing_rule.md │ │ ├── _gitlab-sms-requirements.mdx │ │ ├── _ide-limitations.md │ │ ├── _ide-list.md │ │ ├── _language-extensions-languages-key-values.mdx │ │ ├── _language-maturity-code.md │ │ ├── _parts-of-comment.md │ │ ├── _policy-definition.mdx │ │ ├── _required-rule-fields.mdx │ │ ├── _rule-modes.md │ │ ├── _scan-ruleset.mdx │ │ ├── _scan-speed-scope.md │ │ ├── _scan-target.mdx │ │ ├── _scan-targets.mdx │ │ ├── _scm-feature-reference.md │ │ ├── _sms-support.mdx │ │ ├── _supported-languages-ce.md │ │ ├── _supported-languages-table.mdx │ │ ├── _supported-libraries-python-table.md │ │ ├── _template.mdx │ │ ├── _triage-reason.mdx │ │ ├── _triage-states.mdx │ │ ├── _troubleshooting-pr-links.mdx │ │ └── _validation-states.mdx ├── css │ └── custom.scss ├── pages │ └── index.module.css ├── theme │ ├── BlogListPage │ │ ├── StructuredData │ │ │ └── index.tsx │ │ └── index.tsx │ ├── DocBreadcrumbs │ │ ├── Items │ │ │ └── Home │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ ├── index.tsx │ │ └── styles.module.css │ ├── DocItem │ │ └── Content │ │ │ └── index.tsx │ ├── MDXComponents.tsx │ ├── Navbar │ │ ├── Content │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ └── Search │ │ │ └── index.tsx │ └── Root.tsx └── utils │ └── deploymentConfig.ts ├── static ├── .nojekyll ├── fs.js ├── img │ ├── SSC-DepSearch-Query.png │ ├── SSC-DepSearch.png │ ├── access-add-manager.png │ ├── access-diagram.png │ ├── access-manager-view.png │ ├── access-member-view.png │ ├── access-teams.png │ ├── add-ruleset-to-policy.png │ ├── ado-add-status-policy.png │ ├── ado-pr-comment.png │ ├── ado-status-checks-setup.png │ ├── ado-status-checks.png │ ├── advisories-date-created.png │ ├── ai-assessment-tp-fp.png │ ├── ai-generate-rule.png │ ├── app-findings-overview-grouped-by-rule.png │ ├── app-parent-org.png │ ├── appsecplatform-intro.png │ ├── asana-code-findings.png │ ├── asana-code-ticketed.png │ ├── asana-configure-defaults.png │ ├── asana-ssc-findings.png │ ├── asana-ssc-ticketed.png │ ├── assistant-api-keys.png │ ├── assistant-autofix-ui.png │ ├── assistant-component-tags.png │ ├── assistant-gl-comment.png │ ├── assistant-guidance.png │ ├── assistant-memories.png │ ├── assistant-recommendations.png │ ├── attribute-statement.png │ ├── azure-create-application.png │ ├── azure-pr-comment.png │ ├── azure-select-sso.png │ ├── azure_ad-add-claim.png │ ├── bb-pr-comment.png │ ├── bb-triage-by-pr.png │ ├── bbdc-pr-comments.png │ ├── billing-and-pricing-payment.png │ ├── buildkite-branch-settings.png │ ├── buildkite-pipeline-settings.png │ ├── cheat-sheets-xxe-java-infographics.png │ ├── cloud-platform-finding-details.png │ ├── cloud-platform-findings-group-by-rule.png │ ├── code-ruleID.png │ ├── code-search-results.png │ ├── code-search.png │ ├── comment-with-ai-fix.png │ ├── connect-scm-list.png │ ├── core-deployment.png │ ├── cortex_add_integration_existing.png │ ├── cortex_add_integration_new.png │ ├── cortex_cnapp_data.png │ ├── cortex_configure_integration.png │ ├── cortex_enabled_integration.png │ ├── cortex_error_integration.png │ ├── create-an-org.png │ ├── custom-comment-example.png │ ├── custom-comments-configuration.png │ ├── dashboard-code.png │ ├── dashboard-devfeedback.png │ ├── dashboard-devfeedback2.png │ ├── dashboard-findings-by-project.png │ ├── dashboard-fold.png │ ├── dashboard-mean-time-remediate.png │ ├── dashboard-most-findings.png │ ├── dashboard-rules.png │ ├── dashboard-supply-chain.png │ ├── dashboard-view.png │ ├── dashboard-with-supply-chain.png │ ├── dataflow-graph-comment.png │ ├── dataflow-traces-mr-comments.png │ ├── dataflow-traces-pr-comments.png │ ├── default-user-role.png │ ├── diagram-semgrep_baseline_ref.png │ ├── disable-pattern.png │ ├── download-sbom.png │ ├── edit-rule-message-from-policy.png │ ├── editor-SHA1.png │ ├── editor-forking.png │ ├── editor-groupbyruleset.png │ ├── editor-panes.png │ ├── editor-splashscreen.png │ ├── email-failure.png │ ├── entra-1.png │ ├── entra-2.png │ ├── entra-3.png │ ├── entra-4.png │ ├── entra-5.png │ ├── example-custom-rule-message.png │ ├── fail-open-config.png │ ├── favicon.ico │ ├── finding-by-resolution.jpg │ ├── findings-details-v1.png │ ├── findings-details-v2.png │ ├── findings-no-hyperlinks.png │ ├── findings-table.png │ ├── findings-with-hyperlinks.png │ ├── gh-app-permissions-all.png │ ├── gh-app-permissions-select.png │ ├── gh-pr-comment.png │ ├── ghe-10.png │ ├── ghe-11.png │ ├── ghe-12.png │ ├── ghe-13.png │ ├── ghe-14.png │ ├── ghe-2.png │ ├── ghe-9.png │ ├── github-act-on-your-behalf.png │ ├── github-app-slug.png │ ├── github-workflows-disabled.png │ ├── gl-mr-comment.png │ ├── global-ignore-paths.png │ ├── guardrails-cli-autofix.png │ ├── guardrails-comment-step-by-step.png │ ├── guardrails-content-interface.png │ ├── guardrails-ide-fix.png │ ├── guardrails-ide-quickfix.png │ ├── guardrails-ide.png │ ├── guardrails-policies.png │ ├── guardrails-secrets.png │ ├── guardrails-time-to-fix-monochrome.png │ ├── icon-deploy.svg │ ├── icon-first-scan.svg │ ├── icon-rules.svg │ ├── icon-triage.svg │ ├── in-app-providers.png │ ├── integrate-slack-test.png │ ├── integration-ruleboard.png │ ├── integrations-email-findings.png │ ├── integrations-webhook-findings.png │ ├── integrations.png │ ├── jenkins-specific-local-branch.png │ ├── jira-code-findings.png │ ├── jira-code-ticketed.png │ ├── jira-configure-defaults.png │ ├── jira-findings-page.png │ ├── jira-integrations-page.png │ ├── jira-secrets-findings.png │ ├── jira-secrets-ticketed.png │ ├── jira-ssc-findings.png │ ├── jira-ssc-ticketed.png │ ├── jira-subdomain.png │ ├── jira-template.png │ ├── jira-ticket-created-successfully.png │ ├── jira-ticket-created-unsuccessfully.png │ ├── jira-ticket-finding-details.png │ ├── join-an-org.png │ ├── join-mode-example.png │ ├── july2023-newicons.png │ ├── kb │ │ ├── FedRAMP.png │ │ ├── bitbucket-jenkins-events.png │ │ ├── bitbucket-jenkins-freestyle-events.png │ │ ├── bitbucket-jenkins-freestyle-repository-details.png │ │ ├── bitbucket-jenkins-freestyle-token.png │ │ ├── bitbucket-jenkins-freestyle.png │ │ ├── bitbucket-jenkins-new.png │ │ ├── bitbucket-jenkins-pipeline-section-1.png │ │ ├── bitbucket-jenkins-pipeline-section-2.png │ │ ├── bitbucket-jenkins-pullrequest-1.png │ │ ├── bitbucket-jenkins-pullrequest-2.png │ │ ├── ci-bitbucket-defining-webhook.png │ │ ├── ci-bitbucket-select-triggers.png │ │ ├── custom_rules_in_editor.png │ │ ├── github-default-workflow-permissions.png │ │ ├── github-icon-editor.png │ │ ├── github-secrets.png │ │ ├── github-update-value.png │ │ ├── gitlab-update-value.png │ │ ├── google_attributes.png │ │ ├── integration-defectdojo-example.png │ │ ├── integration-defectdojo-gitlab-variables.png │ │ ├── reusable-workflows-image-1.png │ │ ├── reusable-workflows-image-2.png │ │ ├── reusable-workflows-image-3.png │ │ ├── reusable-workflows-image-4.png │ │ ├── saml-auth-method-doesnt-match.png │ │ ├── save_rule_editor.png │ │ ├── semgrep-gha-jobname.png │ │ ├── semgrep-gha-workflow.png │ │ ├── semgrep-workflow-actions-access.png │ │ ├── semgrep-workflow-pr-example.png │ │ ├── semgrep-workflow-repo.png │ │ ├── semgrep-workflow-repository-rulesets.png │ │ ├── semgrep-workflow-require-pass.png │ │ ├── ssc-branch-selector.png │ │ ├── ssc-vuln-filter.png │ │ ├── vscode-schema-autocomplete-example.png │ │ ├── vscode-windows.png │ │ ├── vscode-yaml-schema-example-file.png │ │ ├── vscode-yaml-schemas.png │ │ └── wiz-semgrep-integration.png │ ├── linear-code-findings.png │ ├── linear-code-ticketed.png │ ├── linear-configure-defaults.png │ ├── linear-ssc-findings.png │ ├── linear-ssc-ticketed.png │ ├── linters-semgrep-comparison.png │ ├── match-badges.png │ ├── matched-findings.png │ ├── member-limits-view.png │ ├── member-tokens-table.png │ ├── memories-1.png │ ├── memories-1a.png │ ├── memories-2.png │ ├── more-accounts-dropdown.png │ ├── multiple-orgs.png │ ├── new-onboarding.png │ ├── new-scm-card.png │ ├── notification-setup.png │ ├── notifications-enable-autofix.png │ ├── notifications-github-suggestions.png │ ├── old-scm-card.png │ ├── onboarding-scan-location.png │ ├── pattern-and-pattern-constraint.png │ ├── per-project-ignores.png │ ├── personal-org.png │ ├── playground-advanced-view.png │ ├── playground-editor.png │ ├── playground-sample-code.png │ ├── playground-simple-view.png │ ├── playground-turbo.png │ ├── playground-use-ci.png │ ├── playground-widget.png │ ├── playground.png │ ├── pleditor-advanced.png │ ├── pleditor-rule-board.png │ ├── pleditor-simple.png │ ├── pleditor-structure.png │ ├── policies.png │ ├── policy-actions.png │ ├── policy-sample.png │ ├── policy-zero-project-state.png │ ├── pr-comment-autofix.png │ ├── pr-comment-sections.png │ ├── pr-comment-triage-response.png │ ├── pr-status-check.png │ ├── primary-branch.png │ ├── pro-engine-toggle.png │ ├── projects-page.png │ ├── projects-remote-local-slugs.png │ ├── projects-rename-repo.png │ ├── projects-view-scan-details.png │ ├── publish-custom-rules-1.png │ ├── publish-custom-rules-2.png │ ├── publish-custom-rules-3.png │ ├── rbac-overview.png │ ├── registry-run-locally.png │ ├── release-notes-give-rule-feedback.png │ ├── release-notes-group-by-rule.png │ ├── release-notes-march2023-cli-output-new.png │ ├── release-notes-march2023-cli-output-old.png │ ├── release-notes-project-sorting.png │ ├── release-notes-rename-project1.png │ ├── release-notes-rename-project2.png │ ├── release-notes-see-source-rule.png │ ├── release-notes-semgrep-app-reachability-review.png │ ├── release-notes-semgrep-code-findings-pro-rule-gem.png │ ├── remove-from-policy.png │ ├── retrieve-gh-log.png │ ├── rule-board-disabled-rule.png │ ├── rule-board-integrations.png │ ├── rule-board.png │ ├── ruleset-findings.png │ ├── safe-click-to-fix.png │ ├── saml-attribute-statements.png │ ├── saml-copy-IdPSSO-IdPID-and-X509.png │ ├── saml-copy-urls.png │ ├── saml-creating-app.png │ ├── saml-filling-IdpSSO-IdpID-X509.png │ ├── sankey-diagram.png │ ├── sc-license-scanning.png │ ├── sc-reachability-analysis.png │ ├── sc-settings.png │ ├── sca-ruleid.png │ ├── scan-details-permalink.png │ ├── scan-process-oss.svg │ ├── scan-process-sap.svg │ ├── scm-confirm-private-app.png │ ├── scm-create-private-app.png │ ├── scp-assistant.png │ ├── scp-broker.png │ ├── secrets-page.png │ ├── security-program-workflows.svg │ ├── semgrep-app-add-demo-project.png │ ├── semgrep-app-comment-github-beta.png │ ├── semgrep-app-comment-github.png │ ├── semgrep-app-comment-gitlab.png │ ├── semgrep-app-delete-demo-project.png │ ├── semgrep-app-diagram.png │ ├── semgrep-app-latest-version.png │ ├── semgrep-app-new-project-providers.png │ ├── semgrep-app-overview.png │ ├── semgrep-assistant-autofix.png │ ├── semgrep-assistant-autotriage-findings.png │ ├── semgrep-assistant-comment.png │ ├── semgrep-assistant-github.png │ ├── semgrep-assistant-gl-setup.png │ ├── semgrep-assistant-installation.png │ ├── semgrep-assistant-reference-commits.png │ ├── semgrep-assistant-scp-autofix.png │ ├── semgrep-assistant-setup.png │ ├── semgrep-ci-github-access-repos.png │ ├── semgrep-ci-overview-app.png │ ├── semgrep-ci-overview-noapp.png │ ├── semgrep-ci.gif │ ├── semgrep-configuration-ci-run.png │ ├── semgrep-findings-in-wiz.png │ ├── semgrep-icon-text-horizontal-dark.svg │ ├── semgrep-icon-text-horizontal.svg │ ├── semgrep-not-acting-on-your-behalf.png │ ├── semgrep-pro-engine-toggle.png │ ├── semgrep-registry-license.png │ ├── semgrep-secrets-slack-subscribe.png │ ├── semgrep-slack-subscribe.png │ ├── semgrep.svg │ ├── sept-2023-assistant-findings.png │ ├── settings-scm-remove.png │ ├── signature-validation.png │ ├── slack-create-app-name.png │ ├── slack-create-app.png │ ├── slack-enable-webhooks.png │ ├── slack-findings-message.png │ ├── slack-integration-hooktest.png │ ├── slack-notification.png │ ├── slack-request-enable.png │ ├── slack-secrets-findings-message.png │ ├── slack-semgrep-findings.png │ ├── sms-enable-pr-or-mr.png │ ├── sms-logs.png │ ├── ssc-dependency-graph.png │ ├── ssc-maven-local.png │ ├── ssc-policies-card.png │ ├── ssc-policies-many-conditions.png │ ├── ssc-pr-comment.png │ ├── sso-clientID-clientSecret.png │ ├── sso-redirect-url.png │ ├── structure-mode-taint.png │ ├── superseded-rules-policies.png │ ├── sysdig_add_integration_existing.png │ ├── sysdig_add_integration_new.png │ ├── sysdig_cnapp_data.png │ ├── sysdig_configure_integration.png │ ├── sysdig_enabled_integration.png │ ├── test-notification.png │ ├── tooltip-disabled-finding.png │ ├── turn-off-sms.png │ ├── tutorial │ │ ├── docsVersionDropdown.png │ │ └── localeDropdown.png │ ├── unlink-jira.png │ ├── upgrade-guidance-flowchart.png │ ├── webhook-successful-test.png │ ├── wiz-finding-details-2.png │ ├── wiz-finding-details.png │ ├── zcs-code-access-enabled.png │ └── zcs-github-apps.png └── js │ └── gtm.js ├── tsconfig.json └── yarn.lock /.codemapignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.codemapignore -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.env.example -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.github/workflows/build-and-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/markdown-link-check-on-schedule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.github/workflows/markdown-link-check-on-schedule.yml -------------------------------------------------------------------------------- /.github/workflows/markdown-link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.github/workflows/markdown-link-check.yml -------------------------------------------------------------------------------- /.github/workflows/meilisearch-docs-scraper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.github/workflows/meilisearch-docs-scraper.yml -------------------------------------------------------------------------------- /.github/workflows/meilisearch-scrape.yml.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.github/workflows/meilisearch-scrape.yml.old -------------------------------------------------------------------------------- /.github/workflows/test-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.github/workflows/test-build.yml -------------------------------------------------------------------------------- /.github/workflows/update-help-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.github/workflows/update-help-command.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.mlc_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.mlc_config.json -------------------------------------------------------------------------------- /.pre-commit-config.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/.pre-commit-config.yaml.template -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/babel.config.js -------------------------------------------------------------------------------- /copy-metrics-md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/copy-metrics-md -------------------------------------------------------------------------------- /docs/cheat-sheets/django-xss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/django-xss.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/express-xss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/express-xss.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/flask-xss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/flask-xss.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/go-command-injection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/go-command-injection.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/go-xss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/go-xss.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/java-code-injection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/java-code-injection.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/java-command-injection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/java-command-injection.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/java-jsp-xss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/java-jsp-xss.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/java-xxe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/java-xxe.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/javascript-code-injection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/javascript-code-injection.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/javascript-command-injection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/javascript-command-injection.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/overview.md -------------------------------------------------------------------------------- /docs/cheat-sheets/python-code-injection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/python-code-injection.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/python-command-injection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/python-command-injection.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/rails-xss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/rails-xss.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/ruby-code-injection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/ruby-code-injection.mdx -------------------------------------------------------------------------------- /docs/cheat-sheets/ruby-command-injection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cheat-sheets/ruby-command-injection.mdx -------------------------------------------------------------------------------- /docs/cli-reference.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/cli-reference.md.template -------------------------------------------------------------------------------- /docs/compliance/fedramp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/compliance/fedramp.md -------------------------------------------------------------------------------- /docs/compliance/gdpr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/compliance/gdpr.md -------------------------------------------------------------------------------- /docs/compliance/hipaa-hitrust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/compliance/hipaa-hitrust.md -------------------------------------------------------------------------------- /docs/compliance/iso27001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/compliance/iso27001.md -------------------------------------------------------------------------------- /docs/compliance/iso27017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/compliance/iso27017.md -------------------------------------------------------------------------------- /docs/compliance/nist-800-171.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/compliance/nist-800-171.md -------------------------------------------------------------------------------- /docs/compliance/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/compliance/overview.md -------------------------------------------------------------------------------- /docs/compliance/pci-dss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/compliance/pci-dss.md -------------------------------------------------------------------------------- /docs/compliance/soc2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/compliance/soc2.md -------------------------------------------------------------------------------- /docs/contributing/adding-a-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/contributing/adding-a-language.md -------------------------------------------------------------------------------- /docs/contributing/contributing-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/contributing/contributing-code.md -------------------------------------------------------------------------------- /docs/contributing/contributing-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/contributing/contributing-rules.md -------------------------------------------------------------------------------- /docs/contributing/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/contributing/contributing.md -------------------------------------------------------------------------------- /docs/contributing/cst-to-ast-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/contributing/cst-to-ast-tips.md -------------------------------------------------------------------------------- /docs/contributing/philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/contributing/philosophy.md -------------------------------------------------------------------------------- /docs/contributing/semgrep-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/contributing/semgrep-contributing.md -------------------------------------------------------------------------------- /docs/contributing/semgrep-core-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/contributing/semgrep-core-contributing.md -------------------------------------------------------------------------------- /docs/contributing/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/contributing/troubleshooting.md -------------------------------------------------------------------------------- /docs/contributing/updating-a-grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/contributing/updating-a-grammar.md -------------------------------------------------------------------------------- /docs/customize-semgrep-ce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/customize-semgrep-ce.md -------------------------------------------------------------------------------- /docs/deployment/add-semgrep-other-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/add-semgrep-other-ci.md -------------------------------------------------------------------------------- /docs/deployment/add-semgrep-to-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/add-semgrep-to-ci.md -------------------------------------------------------------------------------- /docs/deployment/beyond-core-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/beyond-core-deployment.md -------------------------------------------------------------------------------- /docs/deployment/claim-a-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/claim-a-license.md -------------------------------------------------------------------------------- /docs/deployment/connect-scm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/connect-scm.md -------------------------------------------------------------------------------- /docs/deployment/core-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/core-deployment.md -------------------------------------------------------------------------------- /docs/deployment/create-account-and-orgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/create-account-and-orgs.md -------------------------------------------------------------------------------- /docs/deployment/customize-ci-jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/customize-ci-jobs.md -------------------------------------------------------------------------------- /docs/deployment/deployment-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/deployment-checklist.md -------------------------------------------------------------------------------- /docs/deployment/local-to-scp-scans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/local-to-scp-scans.md -------------------------------------------------------------------------------- /docs/deployment/manage-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/manage-projects.md -------------------------------------------------------------------------------- /docs/deployment/managed-scanning/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/managed-scanning/azure.md -------------------------------------------------------------------------------- /docs/deployment/managed-scanning/bitbucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/managed-scanning/bitbucket.md -------------------------------------------------------------------------------- /docs/deployment/managed-scanning/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/managed-scanning/github.md -------------------------------------------------------------------------------- /docs/deployment/managed-scanning/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/managed-scanning/gitlab.md -------------------------------------------------------------------------------- /docs/deployment/managed-scanning/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/managed-scanning/overview.md -------------------------------------------------------------------------------- /docs/deployment/oss-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/oss-deployment.md -------------------------------------------------------------------------------- /docs/deployment/primary-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/primary-branch.md -------------------------------------------------------------------------------- /docs/deployment/sso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/sso.md -------------------------------------------------------------------------------- /docs/deployment/teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/deployment/teams.md -------------------------------------------------------------------------------- /docs/extensions/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/extensions/overview.md -------------------------------------------------------------------------------- /docs/extensions/pre-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/extensions/pre-commit.md -------------------------------------------------------------------------------- /docs/extensions/pre-commit.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/extensions/pre-commit.md.template -------------------------------------------------------------------------------- /docs/extensions/semgrep-intellij.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/extensions/semgrep-intellij.md -------------------------------------------------------------------------------- /docs/extensions/semgrep-vs-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/extensions/semgrep-vs-code.md -------------------------------------------------------------------------------- /docs/faq/comparisons/codeql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/faq/comparisons/codeql.md -------------------------------------------------------------------------------- /docs/faq/comparisons/endor-labs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/faq/comparisons/endor-labs.md -------------------------------------------------------------------------------- /docs/faq/comparisons/opengrep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/faq/comparisons/opengrep.md -------------------------------------------------------------------------------- /docs/faq/comparisons/snyk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/faq/comparisons/snyk.md -------------------------------------------------------------------------------- /docs/faq/comparisons/sonarqube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/faq/comparisons/sonarqube.md -------------------------------------------------------------------------------- /docs/faq/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/faq/overview.md -------------------------------------------------------------------------------- /docs/for-developers/detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/for-developers/detection.md -------------------------------------------------------------------------------- /docs/for-developers/developer-local-scans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/for-developers/developer-local-scans.md -------------------------------------------------------------------------------- /docs/for-developers/developer-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/for-developers/developer-overview.md -------------------------------------------------------------------------------- /docs/for-developers/developer-signin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/for-developers/developer-signin.md -------------------------------------------------------------------------------- /docs/for-developers/ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/for-developers/ide.md -------------------------------------------------------------------------------- /docs/for-developers/resolve-findings-through-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/for-developers/resolve-findings-through-app.md -------------------------------------------------------------------------------- /docs/for-developers/resolve-findings-through-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/for-developers/resolve-findings-through-comments.md -------------------------------------------------------------------------------- /docs/getting-started/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/getting-started/cli.md -------------------------------------------------------------------------------- /docs/getting-started/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/getting-started/introduction.md -------------------------------------------------------------------------------- /docs/getting-started/quickstart-ce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/getting-started/quickstart-ce.md -------------------------------------------------------------------------------- /docs/getting-started/quickstart-sms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/getting-started/quickstart-sms.md -------------------------------------------------------------------------------- /docs/getting-started/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/getting-started/quickstart.md -------------------------------------------------------------------------------- /docs/getting-started/scm-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/getting-started/scm-support.md -------------------------------------------------------------------------------- /docs/ignoring-files-folders-code.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/ignoring-files-folders-code.md.template -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/integrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/integrating.md -------------------------------------------------------------------------------- /docs/kb/integrations/customize-semgrep-precommit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/integrations/customize-semgrep-precommit.md -------------------------------------------------------------------------------- /docs/kb/integrations/defect-dojo-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/integrations/defect-dojo-integration.md -------------------------------------------------------------------------------- /docs/kb/integrations/pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/integrations/pagination.md -------------------------------------------------------------------------------- /docs/kb/rules/ellipsis-metavariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/ellipsis-metavariables.md -------------------------------------------------------------------------------- /docs/kb/rules/exclude_rule_for_certain_filetypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/exclude_rule_for_certain_filetypes.md -------------------------------------------------------------------------------- /docs/kb/rules/match-absence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/match-absence.md -------------------------------------------------------------------------------- /docs/kb/rules/match-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/match-comments.md -------------------------------------------------------------------------------- /docs/kb/rules/pattern-parse-error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/pattern-parse-error.md -------------------------------------------------------------------------------- /docs/kb/rules/rule-file-perf-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/rule-file-perf-principles.md -------------------------------------------------------------------------------- /docs/kb/rules/ruleset-default-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/ruleset-default-mode.md -------------------------------------------------------------------------------- /docs/kb/rules/run-all-available-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/run-all-available-rules.md -------------------------------------------------------------------------------- /docs/kb/rules/understand-severities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/understand-severities.md -------------------------------------------------------------------------------- /docs/kb/rules/using-pattern-not-inside.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/using-pattern-not-inside.md -------------------------------------------------------------------------------- /docs/kb/rules/using-semgrep-rule-schema-in-vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/rules/using-semgrep-rule-schema-in-vscode.md -------------------------------------------------------------------------------- /docs/kb/semgrep-appsec-platform/act-on-your-behalf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-appsec-platform/act-on-your-behalf.md -------------------------------------------------------------------------------- /docs/kb/semgrep-appsec-platform/api-404-token-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-appsec-platform/api-404-token-scope.md -------------------------------------------------------------------------------- /docs/kb/semgrep-appsec-platform/inline-pr-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-appsec-platform/inline-pr-comments.md -------------------------------------------------------------------------------- /docs/kb/semgrep-appsec-platform/remove-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-appsec-platform/remove-users.md -------------------------------------------------------------------------------- /docs/kb/semgrep-appsec-platform/saml-bad-signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-appsec-platform/saml-bad-signature.md -------------------------------------------------------------------------------- /docs/kb/semgrep-appsec-platform/saml-stops-working.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-appsec-platform/saml-stops-working.md -------------------------------------------------------------------------------- /docs/kb/semgrep-assistant/azure-openai-error-429.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-assistant/azure-openai-error-429.md -------------------------------------------------------------------------------- /docs/kb/semgrep-assistant/missing-pr-mr-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-assistant/missing-pr-mr-comments.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/azure-self-hosted-ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/azure-self-hosted-ubuntu.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/ci-vs-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/ci-vs-cli.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/collect-gha-logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/collect-gha-logs.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/collect-gitlab-logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/collect-gitlab-logs.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/git-command-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/git-command-errors.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/jenkins-diff-scans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/jenkins-diff-scans.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/new-scm-connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/new-scm-connections.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/scan-compressed-files-artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/scan-compressed-files-artifacts.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/scan-monorepo-in-parts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/scan-monorepo-in-parts.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/trigger-diff-scans-env-var.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/trigger-diff-scans-env-var.md -------------------------------------------------------------------------------- /docs/kb/semgrep-ci/why-duplicate-findings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-ci/why-duplicate-findings.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/InvalidHeaderValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/InvalidHeaderValue.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/collect-cli-logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/collect-cli-logs.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/finding_all_taints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/finding_all_taints.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/gitlab-group-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/gitlab-group-variables.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/language-version-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/language-version-support.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/reduce-false-positives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/reduce-false-positives.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/run-specific-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/run-specific-version.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/scan-engine-kill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/scan-engine-kill.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/semgrep-scan-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/semgrep-scan-troubleshooting.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/semgrepignore-ignored.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/semgrepignore-ignored.md -------------------------------------------------------------------------------- /docs/kb/semgrep-code/unexpected-new-findings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-code/unexpected-new-findings.md -------------------------------------------------------------------------------- /docs/kb/semgrep-secrets/no-example-secrets-found.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-secrets/no-example-secrets-found.md -------------------------------------------------------------------------------- /docs/kb/semgrep-supply-chain/exclude-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-supply-chain/exclude-rule.md -------------------------------------------------------------------------------- /docs/kb/semgrep-supply-chain/ssc-python-lockfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-supply-chain/ssc-python-lockfiles.md -------------------------------------------------------------------------------- /docs/kb/semgrep-supply-chain/why-no-findings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/kb/semgrep-supply-chain/why-no-findings.md -------------------------------------------------------------------------------- /docs/languages/csharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/languages/csharp.md -------------------------------------------------------------------------------- /docs/languages/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/languages/go.md -------------------------------------------------------------------------------- /docs/languages/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/languages/java.md -------------------------------------------------------------------------------- /docs/languages/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/languages/javascript.md -------------------------------------------------------------------------------- /docs/languages/kotlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/languages/kotlin.md -------------------------------------------------------------------------------- /docs/languages/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/languages/python.md -------------------------------------------------------------------------------- /docs/languages/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/languages/ruby.md -------------------------------------------------------------------------------- /docs/languages/scala.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/languages/scala.md -------------------------------------------------------------------------------- /docs/languages/swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/languages/swift.md -------------------------------------------------------------------------------- /docs/learn/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/overview.md -------------------------------------------------------------------------------- /docs/learn/security-foundations/assets/sca.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/security-foundations/assets/sca.drawio -------------------------------------------------------------------------------- /docs/learn/security-foundations/assets/sca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/security-foundations/assets/sca.png -------------------------------------------------------------------------------- /docs/learn/security-foundations/assets/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/security-foundations/assets/workflow.png -------------------------------------------------------------------------------- /docs/learn/security-foundations/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/security-foundations/overview.md -------------------------------------------------------------------------------- /docs/learn/security-foundations/sast/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/security-foundations/sast/overview.md -------------------------------------------------------------------------------- /docs/learn/vulnerabilities/code-injection/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/vulnerabilities/code-injection/overview.md -------------------------------------------------------------------------------- /docs/learn/vulnerabilities/open-redirect/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/vulnerabilities/open-redirect/overview.md -------------------------------------------------------------------------------- /docs/learn/vulnerabilities/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/vulnerabilities/overview.mdx -------------------------------------------------------------------------------- /docs/learn/vulnerabilities/sql-injection/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/vulnerabilities/sql-injection/overview.md -------------------------------------------------------------------------------- /docs/learn/vulnerabilities/xml-security/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/learn/vulnerabilities/xml-security/overview.md -------------------------------------------------------------------------------- /docs/licensing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/licensing.md -------------------------------------------------------------------------------- /docs/mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/mcp.md -------------------------------------------------------------------------------- /docs/metrics-helmet.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: metrics 3 | append_help_link: true 4 | --- 5 | -------------------------------------------------------------------------------- /docs/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/prerequisites.md -------------------------------------------------------------------------------- /docs/reporting-false-negatives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/reporting-false-negatives.md -------------------------------------------------------------------------------- /docs/run-a-successful-pov.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/run-a-successful-pov.md -------------------------------------------------------------------------------- /docs/running-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/running-rules.md -------------------------------------------------------------------------------- /docs/search_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/search_js.js -------------------------------------------------------------------------------- /docs/secure-guardrails/custom-guardrails-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/secure-guardrails/custom-guardrails-rules.md -------------------------------------------------------------------------------- /docs/secure-guardrails/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/secure-guardrails/overview.md -------------------------------------------------------------------------------- /docs/secure-guardrails/secure-defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/secure-guardrails/secure-defaults.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/azure-pr-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/azure-pr-comments.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/cortex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/cortex.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/dashboard-old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/dashboard-old.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/dashboard.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/email.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/findings-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/findings-details.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/github-pr-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/github-pr-comments.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/gitlab-mr-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/gitlab-mr-comments.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/jira.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/jira.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/json-and-sarif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/json-and-sarif.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/notifications.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/scm-code-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/scm-code-access.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/semgrep-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/semgrep-api.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/slack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/slack.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/sysdig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/sysdig.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/tags.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/ticketing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/ticketing.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/webhooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/webhooks.md -------------------------------------------------------------------------------- /docs/semgrep-appsec-platform/wiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-appsec-platform/wiz.md -------------------------------------------------------------------------------- /docs/semgrep-assistant/analyze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-assistant/analyze.md -------------------------------------------------------------------------------- /docs/semgrep-assistant/best-practices-for-memories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-assistant/best-practices-for-memories.md -------------------------------------------------------------------------------- /docs/semgrep-assistant/customize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-assistant/customize.md -------------------------------------------------------------------------------- /docs/semgrep-assistant/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-assistant/getting-started.md -------------------------------------------------------------------------------- /docs/semgrep-assistant/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-assistant/metrics.md -------------------------------------------------------------------------------- /docs/semgrep-assistant/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-assistant/overview.md -------------------------------------------------------------------------------- /docs/semgrep-assistant/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-assistant/privacy.md -------------------------------------------------------------------------------- /docs/semgrep-ce-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-ce-languages.md -------------------------------------------------------------------------------- /docs/semgrep-ci/ci-environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-ci/ci-environment-variables.md -------------------------------------------------------------------------------- /docs/semgrep-ci/findings-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-ci/findings-ci.md -------------------------------------------------------------------------------- /docs/semgrep-ci/network-broker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-ci/network-broker.md -------------------------------------------------------------------------------- /docs/semgrep-ci/packages-in-semgrep-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-ci/packages-in-semgrep-docker.md -------------------------------------------------------------------------------- /docs/semgrep-ci/sample-ci-configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-ci/sample-ci-configs.md -------------------------------------------------------------------------------- /docs/semgrep-code/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/editor.md -------------------------------------------------------------------------------- /docs/semgrep-code/finding-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/finding-details.md -------------------------------------------------------------------------------- /docs/semgrep-code/findings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/findings.md -------------------------------------------------------------------------------- /docs/semgrep-code/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/glossary.md -------------------------------------------------------------------------------- /docs/semgrep-code/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/java.md -------------------------------------------------------------------------------- /docs/semgrep-code/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/overview.md -------------------------------------------------------------------------------- /docs/semgrep-code/policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/policies.md -------------------------------------------------------------------------------- /docs/semgrep-code/pro-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/pro-rules.md -------------------------------------------------------------------------------- /docs/semgrep-code/remove-duplicates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/remove-duplicates.md -------------------------------------------------------------------------------- /docs/semgrep-code/semgrep-pro-engine-data-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/semgrep-pro-engine-data-flow.md -------------------------------------------------------------------------------- /docs/semgrep-code/semgrep-pro-engine-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/semgrep-pro-engine-examples.md -------------------------------------------------------------------------------- /docs/semgrep-code/semgrep-pro-engine-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/semgrep-pro-engine-intro.md -------------------------------------------------------------------------------- /docs/semgrep-code/triage-remediation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-code/triage-remediation.md -------------------------------------------------------------------------------- /docs/semgrep-pro-vs-oss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-pro-vs-oss.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/conceptual-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/conceptual-overview.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/finding-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/finding-details.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/findings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/findings.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/generic-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/generic-secrets.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/getting-started.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/glossary.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/historical-scanning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/historical-scanning.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/policies.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/rules.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/triage-remediation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/triage-remediation.md -------------------------------------------------------------------------------- /docs/semgrep-secrets/validators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-secrets/validators.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/dependency-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/dependency-search.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/finding-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/finding-details.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/findings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/findings.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/getting-started.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/glossary.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/ignoring-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/ignoring-deps.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/license-compliance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/license-compliance.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/malicious-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/malicious-dependencies.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/overview.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/policies.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/sbom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/sbom.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/setup-infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/setup-infrastructure.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/setup-jenkins-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/setup-jenkins-ui.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/setup-maven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/setup-maven.md -------------------------------------------------------------------------------- /docs/semgrep-supply-chain/triage-remediation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrep-supply-chain/triage-remediation.md -------------------------------------------------------------------------------- /docs/semgrepignore-v2-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/semgrepignore-v2-reference.md -------------------------------------------------------------------------------- /docs/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/support.md -------------------------------------------------------------------------------- /docs/supported-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/supported-languages.md -------------------------------------------------------------------------------- /docs/trophy-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/trophy-case.md -------------------------------------------------------------------------------- /docs/troubleshooting/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/troubleshooting/rules.md -------------------------------------------------------------------------------- /docs/troubleshooting/semgrep-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/troubleshooting/semgrep-app.md -------------------------------------------------------------------------------- /docs/troubleshooting/semgrep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/troubleshooting/semgrep.md -------------------------------------------------------------------------------- /docs/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/update.md -------------------------------------------------------------------------------- /docs/usage-and-billing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/usage-and-billing.mdx -------------------------------------------------------------------------------- /docs/writing-rules/autofix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/autofix.md -------------------------------------------------------------------------------- /docs/writing-rules/data-flow/constant-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/data-flow/constant-propagation.md -------------------------------------------------------------------------------- /docs/writing-rules/data-flow/data-flow-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/data-flow/data-flow-overview.md -------------------------------------------------------------------------------- /docs/writing-rules/data-flow/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/data-flow/status.md -------------------------------------------------------------------------------- /docs/writing-rules/data-flow/taint-mode/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/data-flow/taint-mode/advanced.md -------------------------------------------------------------------------------- /docs/writing-rules/data-flow/taint-mode/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/data-flow/taint-mode/overview.md -------------------------------------------------------------------------------- /docs/writing-rules/experiments/aliengrep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/experiments/aliengrep.md -------------------------------------------------------------------------------- /docs/writing-rules/experiments/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/experiments/introduction.md -------------------------------------------------------------------------------- /docs/writing-rules/experiments/join-mode/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/experiments/join-mode/overview.md -------------------------------------------------------------------------------- /docs/writing-rules/experiments/metavariable-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/experiments/metavariable-type.md -------------------------------------------------------------------------------- /docs/writing-rules/experiments/pattern-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/experiments/pattern-syntax.md -------------------------------------------------------------------------------- /docs/writing-rules/experiments/project-depends-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/experiments/project-depends-on.md -------------------------------------------------------------------------------- /docs/writing-rules/generic-pattern-matching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/generic-pattern-matching.md -------------------------------------------------------------------------------- /docs/writing-rules/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/glossary.md -------------------------------------------------------------------------------- /docs/writing-rules/metavariable-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/metavariable-analysis.md -------------------------------------------------------------------------------- /docs/writing-rules/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/overview.md -------------------------------------------------------------------------------- /docs/writing-rules/pattern-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/pattern-examples.md -------------------------------------------------------------------------------- /docs/writing-rules/pattern-syntax.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/pattern-syntax.mdx -------------------------------------------------------------------------------- /docs/writing-rules/private-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/private-rules.md -------------------------------------------------------------------------------- /docs/writing-rules/rule-ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/rule-ideas.md -------------------------------------------------------------------------------- /docs/writing-rules/rule-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/rule-syntax.md -------------------------------------------------------------------------------- /docs/writing-rules/testing-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docs/writing-rules/testing-rules.md -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /faqs/internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/faqs/internal.md -------------------------------------------------------------------------------- /meilisearch-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/meilisearch-settings.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/netlify.toml -------------------------------------------------------------------------------- /netlify/functions/meilisearch-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/netlify/functions/meilisearch-chat.js -------------------------------------------------------------------------------- /netlify/functions/meilisearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/netlify/functions/meilisearch.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/package.json -------------------------------------------------------------------------------- /release-notes/all-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/all-release-notes.md -------------------------------------------------------------------------------- /release-notes/april-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/april-2021.md -------------------------------------------------------------------------------- /release-notes/april-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/april-2022.md -------------------------------------------------------------------------------- /release-notes/april-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/april-2023.md -------------------------------------------------------------------------------- /release-notes/april-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/april-2024.md -------------------------------------------------------------------------------- /release-notes/april-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/april-2025.md -------------------------------------------------------------------------------- /release-notes/august-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/august-2021.md -------------------------------------------------------------------------------- /release-notes/august-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/august-2022.md -------------------------------------------------------------------------------- /release-notes/august-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/august-2023.md -------------------------------------------------------------------------------- /release-notes/august-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/august-2024.md -------------------------------------------------------------------------------- /release-notes/august-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/august-2025.md -------------------------------------------------------------------------------- /release-notes/december-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/december-2021.md -------------------------------------------------------------------------------- /release-notes/december-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/december-2022.md -------------------------------------------------------------------------------- /release-notes/december-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/december-2023.md -------------------------------------------------------------------------------- /release-notes/december-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/december-2024.md -------------------------------------------------------------------------------- /release-notes/february-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/february-2022.md -------------------------------------------------------------------------------- /release-notes/february-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/february-2023.md -------------------------------------------------------------------------------- /release-notes/february-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/february-2024.md -------------------------------------------------------------------------------- /release-notes/february-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/february-2025.md -------------------------------------------------------------------------------- /release-notes/january-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/january-2022.md -------------------------------------------------------------------------------- /release-notes/january-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/january-2023.md -------------------------------------------------------------------------------- /release-notes/january-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/january-2024.md -------------------------------------------------------------------------------- /release-notes/january-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/january-2025.md -------------------------------------------------------------------------------- /release-notes/july-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/july-2021.md -------------------------------------------------------------------------------- /release-notes/july-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/july-2022.md -------------------------------------------------------------------------------- /release-notes/july-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/july-2023.md -------------------------------------------------------------------------------- /release-notes/july-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/july-2024.md -------------------------------------------------------------------------------- /release-notes/july-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/july-2025.md -------------------------------------------------------------------------------- /release-notes/june-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/june-2021.md -------------------------------------------------------------------------------- /release-notes/june-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/june-2022.md -------------------------------------------------------------------------------- /release-notes/june-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/june-2023.md -------------------------------------------------------------------------------- /release-notes/june-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/june-2024.md -------------------------------------------------------------------------------- /release-notes/june-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/june-2025.md -------------------------------------------------------------------------------- /release-notes/march-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/march-2022.md -------------------------------------------------------------------------------- /release-notes/march-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/march-2023.md -------------------------------------------------------------------------------- /release-notes/march-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/march-2024.md -------------------------------------------------------------------------------- /release-notes/march-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/march-2025.md -------------------------------------------------------------------------------- /release-notes/may-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/may-2021.md -------------------------------------------------------------------------------- /release-notes/may-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/may-2022.md -------------------------------------------------------------------------------- /release-notes/may-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/may-2023.md -------------------------------------------------------------------------------- /release-notes/may-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/may-2024.md -------------------------------------------------------------------------------- /release-notes/may-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/may-2025.md -------------------------------------------------------------------------------- /release-notes/november-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/november-2021.md -------------------------------------------------------------------------------- /release-notes/november-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/november-2022.md -------------------------------------------------------------------------------- /release-notes/november-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/november-2023.md -------------------------------------------------------------------------------- /release-notes/november-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/november-2024.md -------------------------------------------------------------------------------- /release-notes/november-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/november-2025.md -------------------------------------------------------------------------------- /release-notes/october-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/october-2021.md -------------------------------------------------------------------------------- /release-notes/october-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/october-2022.md -------------------------------------------------------------------------------- /release-notes/october-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/october-2023.md -------------------------------------------------------------------------------- /release-notes/october-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/october-2024.md -------------------------------------------------------------------------------- /release-notes/october-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/october-2025.md -------------------------------------------------------------------------------- /release-notes/rule-updates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/rule-updates.mdx -------------------------------------------------------------------------------- /release-notes/september-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/september-2021.md -------------------------------------------------------------------------------- /release-notes/september-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/september-2022.md -------------------------------------------------------------------------------- /release-notes/september-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/september-2023.md -------------------------------------------------------------------------------- /release-notes/september-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/september-2024.md -------------------------------------------------------------------------------- /release-notes/september-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/release-notes/september-2025.md -------------------------------------------------------------------------------- /replace-on-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/replace-on-build.py -------------------------------------------------------------------------------- /run-build-scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/run-build-scripts -------------------------------------------------------------------------------- /scripts/update-vulnerability-categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/scripts/update-vulnerability-categories.js -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/Card/CardBody/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/Card/CardBody/index.tsx -------------------------------------------------------------------------------- /src/components/Card/CardFooter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/Card/CardFooter/index.tsx -------------------------------------------------------------------------------- /src/components/Card/CardHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/Card/CardHeader/index.tsx -------------------------------------------------------------------------------- /src/components/Card/CardImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/Card/CardImage/index.tsx -------------------------------------------------------------------------------- /src/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/Card/index.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/HomepageFeatures.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /src/components/LinkToRegistryRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/LinkToRegistryRule.js -------------------------------------------------------------------------------- /src/components/MeilisearchChatbotIntegrated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/MeilisearchChatbotIntegrated.tsx -------------------------------------------------------------------------------- /src/components/MoreHelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/MoreHelp.js -------------------------------------------------------------------------------- /src/components/Placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/Placeholder.js -------------------------------------------------------------------------------- /src/components/Tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/Tags.js -------------------------------------------------------------------------------- /src/components/VulnerabilityCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/VulnerabilityCategories.js -------------------------------------------------------------------------------- /src/components/code_snippets/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/code_snippets/readme -------------------------------------------------------------------------------- /src/components/concept/_code-injection-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_code-injection-intro.mdx -------------------------------------------------------------------------------- /src/components/concept/_command-injection-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_command-injection-intro.mdx -------------------------------------------------------------------------------- /src/components/concept/_comments-in-supply-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_comments-in-supply-chain.md -------------------------------------------------------------------------------- /src/components/concept/_data-flow-status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_data-flow-status.mdx -------------------------------------------------------------------------------- /src/components/concept/_def-cross-file.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_def-cross-file.mdx -------------------------------------------------------------------------------- /src/components/concept/_def-cross-function.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_def-cross-function.mdx -------------------------------------------------------------------------------- /src/components/concept/_def-reachability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_def-reachability.md -------------------------------------------------------------------------------- /src/components/concept/_demo-project-introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_demo-project-introduction.mdx -------------------------------------------------------------------------------- /src/components/concept/_deployment-journey.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_deployment-journey.mdx -------------------------------------------------------------------------------- /src/components/concept/_epss-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_epss-types.md -------------------------------------------------------------------------------- /src/components/concept/_findings-default-view.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_findings-default-view.mdx -------------------------------------------------------------------------------- /src/components/concept/_ip_addresses.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_ip_addresses.mdx -------------------------------------------------------------------------------- /src/components/concept/_lang-callout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_lang-callout.md -------------------------------------------------------------------------------- /src/components/concept/_lang-ce-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_lang-ce-intro.md -------------------------------------------------------------------------------- /src/components/concept/_lang-code-analyses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_lang-code-analyses.md -------------------------------------------------------------------------------- /src/components/concept/_lang-coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_lang-coverage.md -------------------------------------------------------------------------------- /src/components/concept/_lang-def-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_lang-def-code.md -------------------------------------------------------------------------------- /src/components/concept/_lang-def-ssc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_lang-def-ssc.md -------------------------------------------------------------------------------- /src/components/concept/_lang-intro.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/concept/_lang-ssc-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_lang-ssc-features.md -------------------------------------------------------------------------------- /src/components/concept/_next-steps-comments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_next-steps-comments.mdx -------------------------------------------------------------------------------- /src/components/concept/_platform-signin-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_platform-signin-intro.md -------------------------------------------------------------------------------- /src/components/concept/_reachability-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_reachability-types.md -------------------------------------------------------------------------------- /src/components/concept/_semgrep-scan.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_semgrep-scan.mdx -------------------------------------------------------------------------------- /src/components/concept/_ssc-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_ssc-intro.md -------------------------------------------------------------------------------- /src/components/concept/_template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_template.mdx -------------------------------------------------------------------------------- /src/components/concept/_time-period-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_time-period-filters.md -------------------------------------------------------------------------------- /src/components/concept/_transitivity-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_transitivity-types.md -------------------------------------------------------------------------------- /src/components/concept/_xss-injection-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/concept/_xss-injection-intro.mdx -------------------------------------------------------------------------------- /src/components/procedure/_delete-a-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_delete-a-project.md -------------------------------------------------------------------------------- /src/components/procedure/_delete-custom-rule.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_delete-custom-rule.mdx -------------------------------------------------------------------------------- /src/components/procedure/_detect-gh-repos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_detect-gh-repos.md -------------------------------------------------------------------------------- /src/components/procedure/_disable-rule.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_disable-rule.mdx -------------------------------------------------------------------------------- /src/components/procedure/_enable-autofix.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_enable-autofix.mdx -------------------------------------------------------------------------------- /src/components/procedure/_export-findings-csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_export-findings-csv.md -------------------------------------------------------------------------------- /src/components/procedure/_fail-open.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_fail-open.mdx -------------------------------------------------------------------------------- /src/components/procedure/_install-cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_install-cli.mdx -------------------------------------------------------------------------------- /src/components/procedure/_join-an-org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_join-an-org.md -------------------------------------------------------------------------------- /src/components/procedure/_login-activate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_login-activate.mdx -------------------------------------------------------------------------------- /src/components/procedure/_next-after-comments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_next-after-comments.mdx -------------------------------------------------------------------------------- /src/components/procedure/_platform-add-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_platform-add-repo.md -------------------------------------------------------------------------------- /src/components/procedure/_platform-detect-ghrepos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_platform-detect-ghrepos.md -------------------------------------------------------------------------------- /src/components/procedure/_platform-signin-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_platform-signin-github.md -------------------------------------------------------------------------------- /src/components/procedure/_platform-signin-gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_platform-signin-gitlab.md -------------------------------------------------------------------------------- /src/components/procedure/_pr-comments-in-sast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_pr-comments-in-sast.mdx -------------------------------------------------------------------------------- /src/components/procedure/_pr-comments-in-secrets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_pr-comments-in-secrets.mdx -------------------------------------------------------------------------------- /src/components/procedure/_quickstart-intellij.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_quickstart-intellij.md -------------------------------------------------------------------------------- /src/components/procedure/_quickstart-vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_quickstart-vscode.md -------------------------------------------------------------------------------- /src/components/procedure/_quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_quickstart.md -------------------------------------------------------------------------------- /src/components/procedure/_receive-comments-scm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_receive-comments-scm.mdx -------------------------------------------------------------------------------- /src/components/procedure/_remove-demo-project.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_remove-demo-project.mdx -------------------------------------------------------------------------------- /src/components/procedure/_retrieve-gha-logs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_retrieve-gha-logs.mdx -------------------------------------------------------------------------------- /src/components/procedure/_scan-with-sms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_scan-with-sms.mdx -------------------------------------------------------------------------------- /src/components/procedure/_set-env-vars-azure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_set-env-vars-azure.mdx -------------------------------------------------------------------------------- /src/components/procedure/_template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_template.mdx -------------------------------------------------------------------------------- /src/components/procedure/_view-details-ssc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/procedure/_view-details-ssc.md -------------------------------------------------------------------------------- /src/components/reference/_admonition-sot-cves.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_admonition-sot-cves.md -------------------------------------------------------------------------------- /src/components/reference/_ci-ignoring-files.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_ci-ignoring-files.mdx -------------------------------------------------------------------------------- /src/components/reference/_ci-scheduling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_ci-scheduling.mdx -------------------------------------------------------------------------------- /src/components/reference/_cli-help-ci-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_cli-help-ci-output.md -------------------------------------------------------------------------------- /src/components/reference/_cli-help-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_cli-help-output.md -------------------------------------------------------------------------------- /src/components/reference/_cli-help-scan-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_cli-help-scan-output.md -------------------------------------------------------------------------------- /src/components/reference/_comment-triggers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_comment-triggers.mdx -------------------------------------------------------------------------------- /src/components/reference/_diff-aware-scanning.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_diff-aware-scanning.mdx -------------------------------------------------------------------------------- /src/components/reference/_export-as.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_export-as.mdx -------------------------------------------------------------------------------- /src/components/reference/_fork_existing_rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_fork_existing_rule.md -------------------------------------------------------------------------------- /src/components/reference/_gitlab-sms-requirements.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_gitlab-sms-requirements.mdx -------------------------------------------------------------------------------- /src/components/reference/_ide-limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_ide-limitations.md -------------------------------------------------------------------------------- /src/components/reference/_ide-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_ide-list.md -------------------------------------------------------------------------------- /src/components/reference/_language-maturity-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_language-maturity-code.md -------------------------------------------------------------------------------- /src/components/reference/_parts-of-comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_parts-of-comment.md -------------------------------------------------------------------------------- /src/components/reference/_policy-definition.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_policy-definition.mdx -------------------------------------------------------------------------------- /src/components/reference/_required-rule-fields.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_required-rule-fields.mdx -------------------------------------------------------------------------------- /src/components/reference/_rule-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_rule-modes.md -------------------------------------------------------------------------------- /src/components/reference/_scan-ruleset.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_scan-ruleset.mdx -------------------------------------------------------------------------------- /src/components/reference/_scan-speed-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_scan-speed-scope.md -------------------------------------------------------------------------------- /src/components/reference/_scan-target.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_scan-target.mdx -------------------------------------------------------------------------------- /src/components/reference/_scan-targets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_scan-targets.mdx -------------------------------------------------------------------------------- /src/components/reference/_scm-feature-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_scm-feature-reference.md -------------------------------------------------------------------------------- /src/components/reference/_sms-support.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_sms-support.mdx -------------------------------------------------------------------------------- /src/components/reference/_supported-languages-ce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_supported-languages-ce.md -------------------------------------------------------------------------------- /src/components/reference/_template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_template.mdx -------------------------------------------------------------------------------- /src/components/reference/_triage-reason.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_triage-reason.mdx -------------------------------------------------------------------------------- /src/components/reference/_triage-states.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_triage-states.mdx -------------------------------------------------------------------------------- /src/components/reference/_validation-states.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/components/reference/_validation-states.mdx -------------------------------------------------------------------------------- /src/css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/css/custom.scss -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/theme/BlogListPage/StructuredData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/BlogListPage/StructuredData/index.tsx -------------------------------------------------------------------------------- /src/theme/BlogListPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/BlogListPage/index.tsx -------------------------------------------------------------------------------- /src/theme/DocBreadcrumbs/Items/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/DocBreadcrumbs/Items/Home/index.tsx -------------------------------------------------------------------------------- /src/theme/DocBreadcrumbs/Items/Home/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/DocBreadcrumbs/Items/Home/styles.module.css -------------------------------------------------------------------------------- /src/theme/DocBreadcrumbs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/DocBreadcrumbs/index.tsx -------------------------------------------------------------------------------- /src/theme/DocBreadcrumbs/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/DocBreadcrumbs/styles.module.css -------------------------------------------------------------------------------- /src/theme/DocItem/Content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/DocItem/Content/index.tsx -------------------------------------------------------------------------------- /src/theme/MDXComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/MDXComponents.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/Content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/Navbar/Content/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/Content/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/Navbar/Content/styles.module.css -------------------------------------------------------------------------------- /src/theme/Navbar/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/Navbar/Search/index.tsx -------------------------------------------------------------------------------- /src/theme/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/theme/Root.tsx -------------------------------------------------------------------------------- /src/utils/deploymentConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/src/utils/deploymentConfig.ts -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/fs.js -------------------------------------------------------------------------------- /static/img/SSC-DepSearch-Query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/SSC-DepSearch-Query.png -------------------------------------------------------------------------------- /static/img/SSC-DepSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/SSC-DepSearch.png -------------------------------------------------------------------------------- /static/img/access-add-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/access-add-manager.png -------------------------------------------------------------------------------- /static/img/access-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/access-diagram.png -------------------------------------------------------------------------------- /static/img/access-manager-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/access-manager-view.png -------------------------------------------------------------------------------- /static/img/access-member-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/access-member-view.png -------------------------------------------------------------------------------- /static/img/access-teams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/access-teams.png -------------------------------------------------------------------------------- /static/img/add-ruleset-to-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/add-ruleset-to-policy.png -------------------------------------------------------------------------------- /static/img/ado-add-status-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ado-add-status-policy.png -------------------------------------------------------------------------------- /static/img/ado-pr-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ado-pr-comment.png -------------------------------------------------------------------------------- /static/img/ado-status-checks-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ado-status-checks-setup.png -------------------------------------------------------------------------------- /static/img/ado-status-checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ado-status-checks.png -------------------------------------------------------------------------------- /static/img/advisories-date-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/advisories-date-created.png -------------------------------------------------------------------------------- /static/img/ai-assessment-tp-fp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ai-assessment-tp-fp.png -------------------------------------------------------------------------------- /static/img/ai-generate-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ai-generate-rule.png -------------------------------------------------------------------------------- /static/img/app-findings-overview-grouped-by-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/app-findings-overview-grouped-by-rule.png -------------------------------------------------------------------------------- /static/img/app-parent-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/app-parent-org.png -------------------------------------------------------------------------------- /static/img/appsecplatform-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/appsecplatform-intro.png -------------------------------------------------------------------------------- /static/img/asana-code-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/asana-code-findings.png -------------------------------------------------------------------------------- /static/img/asana-code-ticketed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/asana-code-ticketed.png -------------------------------------------------------------------------------- /static/img/asana-configure-defaults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/asana-configure-defaults.png -------------------------------------------------------------------------------- /static/img/asana-ssc-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/asana-ssc-findings.png -------------------------------------------------------------------------------- /static/img/asana-ssc-ticketed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/asana-ssc-ticketed.png -------------------------------------------------------------------------------- /static/img/assistant-api-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/assistant-api-keys.png -------------------------------------------------------------------------------- /static/img/assistant-autofix-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/assistant-autofix-ui.png -------------------------------------------------------------------------------- /static/img/assistant-component-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/assistant-component-tags.png -------------------------------------------------------------------------------- /static/img/assistant-gl-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/assistant-gl-comment.png -------------------------------------------------------------------------------- /static/img/assistant-guidance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/assistant-guidance.png -------------------------------------------------------------------------------- /static/img/assistant-memories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/assistant-memories.png -------------------------------------------------------------------------------- /static/img/assistant-recommendations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/assistant-recommendations.png -------------------------------------------------------------------------------- /static/img/attribute-statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/attribute-statement.png -------------------------------------------------------------------------------- /static/img/azure-create-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/azure-create-application.png -------------------------------------------------------------------------------- /static/img/azure-pr-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/azure-pr-comment.png -------------------------------------------------------------------------------- /static/img/azure-select-sso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/azure-select-sso.png -------------------------------------------------------------------------------- /static/img/azure_ad-add-claim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/azure_ad-add-claim.png -------------------------------------------------------------------------------- /static/img/bb-pr-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/bb-pr-comment.png -------------------------------------------------------------------------------- /static/img/bb-triage-by-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/bb-triage-by-pr.png -------------------------------------------------------------------------------- /static/img/bbdc-pr-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/bbdc-pr-comments.png -------------------------------------------------------------------------------- /static/img/billing-and-pricing-payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/billing-and-pricing-payment.png -------------------------------------------------------------------------------- /static/img/buildkite-branch-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/buildkite-branch-settings.png -------------------------------------------------------------------------------- /static/img/buildkite-pipeline-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/buildkite-pipeline-settings.png -------------------------------------------------------------------------------- /static/img/cheat-sheets-xxe-java-infographics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/cheat-sheets-xxe-java-infographics.png -------------------------------------------------------------------------------- /static/img/cloud-platform-finding-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/cloud-platform-finding-details.png -------------------------------------------------------------------------------- /static/img/cloud-platform-findings-group-by-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/cloud-platform-findings-group-by-rule.png -------------------------------------------------------------------------------- /static/img/code-ruleID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/code-ruleID.png -------------------------------------------------------------------------------- /static/img/code-search-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/code-search-results.png -------------------------------------------------------------------------------- /static/img/code-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/code-search.png -------------------------------------------------------------------------------- /static/img/comment-with-ai-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/comment-with-ai-fix.png -------------------------------------------------------------------------------- /static/img/connect-scm-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/connect-scm-list.png -------------------------------------------------------------------------------- /static/img/core-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/core-deployment.png -------------------------------------------------------------------------------- /static/img/cortex_add_integration_existing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/cortex_add_integration_existing.png -------------------------------------------------------------------------------- /static/img/cortex_add_integration_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/cortex_add_integration_new.png -------------------------------------------------------------------------------- /static/img/cortex_cnapp_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/cortex_cnapp_data.png -------------------------------------------------------------------------------- /static/img/cortex_configure_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/cortex_configure_integration.png -------------------------------------------------------------------------------- /static/img/cortex_enabled_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/cortex_enabled_integration.png -------------------------------------------------------------------------------- /static/img/cortex_error_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/cortex_error_integration.png -------------------------------------------------------------------------------- /static/img/create-an-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/create-an-org.png -------------------------------------------------------------------------------- /static/img/custom-comment-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/custom-comment-example.png -------------------------------------------------------------------------------- /static/img/custom-comments-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/custom-comments-configuration.png -------------------------------------------------------------------------------- /static/img/dashboard-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-code.png -------------------------------------------------------------------------------- /static/img/dashboard-devfeedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-devfeedback.png -------------------------------------------------------------------------------- /static/img/dashboard-devfeedback2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-devfeedback2.png -------------------------------------------------------------------------------- /static/img/dashboard-findings-by-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-findings-by-project.png -------------------------------------------------------------------------------- /static/img/dashboard-fold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-fold.png -------------------------------------------------------------------------------- /static/img/dashboard-mean-time-remediate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-mean-time-remediate.png -------------------------------------------------------------------------------- /static/img/dashboard-most-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-most-findings.png -------------------------------------------------------------------------------- /static/img/dashboard-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-rules.png -------------------------------------------------------------------------------- /static/img/dashboard-supply-chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-supply-chain.png -------------------------------------------------------------------------------- /static/img/dashboard-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-view.png -------------------------------------------------------------------------------- /static/img/dashboard-with-supply-chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dashboard-with-supply-chain.png -------------------------------------------------------------------------------- /static/img/dataflow-graph-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dataflow-graph-comment.png -------------------------------------------------------------------------------- /static/img/dataflow-traces-mr-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dataflow-traces-mr-comments.png -------------------------------------------------------------------------------- /static/img/dataflow-traces-pr-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/dataflow-traces-pr-comments.png -------------------------------------------------------------------------------- /static/img/default-user-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/default-user-role.png -------------------------------------------------------------------------------- /static/img/diagram-semgrep_baseline_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/diagram-semgrep_baseline_ref.png -------------------------------------------------------------------------------- /static/img/disable-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/disable-pattern.png -------------------------------------------------------------------------------- /static/img/download-sbom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/download-sbom.png -------------------------------------------------------------------------------- /static/img/edit-rule-message-from-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/edit-rule-message-from-policy.png -------------------------------------------------------------------------------- /static/img/editor-SHA1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/editor-SHA1.png -------------------------------------------------------------------------------- /static/img/editor-forking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/editor-forking.png -------------------------------------------------------------------------------- /static/img/editor-groupbyruleset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/editor-groupbyruleset.png -------------------------------------------------------------------------------- /static/img/editor-panes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/editor-panes.png -------------------------------------------------------------------------------- /static/img/editor-splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/editor-splashscreen.png -------------------------------------------------------------------------------- /static/img/email-failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/email-failure.png -------------------------------------------------------------------------------- /static/img/entra-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/entra-1.png -------------------------------------------------------------------------------- /static/img/entra-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/entra-2.png -------------------------------------------------------------------------------- /static/img/entra-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/entra-3.png -------------------------------------------------------------------------------- /static/img/entra-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/entra-4.png -------------------------------------------------------------------------------- /static/img/entra-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/entra-5.png -------------------------------------------------------------------------------- /static/img/example-custom-rule-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/example-custom-rule-message.png -------------------------------------------------------------------------------- /static/img/fail-open-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/fail-open-config.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/finding-by-resolution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/finding-by-resolution.jpg -------------------------------------------------------------------------------- /static/img/findings-details-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/findings-details-v1.png -------------------------------------------------------------------------------- /static/img/findings-details-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/findings-details-v2.png -------------------------------------------------------------------------------- /static/img/findings-no-hyperlinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/findings-no-hyperlinks.png -------------------------------------------------------------------------------- /static/img/findings-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/findings-table.png -------------------------------------------------------------------------------- /static/img/findings-with-hyperlinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/findings-with-hyperlinks.png -------------------------------------------------------------------------------- /static/img/gh-app-permissions-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/gh-app-permissions-all.png -------------------------------------------------------------------------------- /static/img/gh-app-permissions-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/gh-app-permissions-select.png -------------------------------------------------------------------------------- /static/img/gh-pr-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/gh-pr-comment.png -------------------------------------------------------------------------------- /static/img/ghe-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ghe-10.png -------------------------------------------------------------------------------- /static/img/ghe-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ghe-11.png -------------------------------------------------------------------------------- /static/img/ghe-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ghe-12.png -------------------------------------------------------------------------------- /static/img/ghe-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ghe-13.png -------------------------------------------------------------------------------- /static/img/ghe-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ghe-14.png -------------------------------------------------------------------------------- /static/img/ghe-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ghe-2.png -------------------------------------------------------------------------------- /static/img/ghe-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ghe-9.png -------------------------------------------------------------------------------- /static/img/github-act-on-your-behalf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/github-act-on-your-behalf.png -------------------------------------------------------------------------------- /static/img/github-app-slug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/github-app-slug.png -------------------------------------------------------------------------------- /static/img/github-workflows-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/github-workflows-disabled.png -------------------------------------------------------------------------------- /static/img/gl-mr-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/gl-mr-comment.png -------------------------------------------------------------------------------- /static/img/global-ignore-paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/global-ignore-paths.png -------------------------------------------------------------------------------- /static/img/guardrails-cli-autofix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/guardrails-cli-autofix.png -------------------------------------------------------------------------------- /static/img/guardrails-comment-step-by-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/guardrails-comment-step-by-step.png -------------------------------------------------------------------------------- /static/img/guardrails-content-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/guardrails-content-interface.png -------------------------------------------------------------------------------- /static/img/guardrails-ide-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/guardrails-ide-fix.png -------------------------------------------------------------------------------- /static/img/guardrails-ide-quickfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/guardrails-ide-quickfix.png -------------------------------------------------------------------------------- /static/img/guardrails-ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/guardrails-ide.png -------------------------------------------------------------------------------- /static/img/guardrails-policies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/guardrails-policies.png -------------------------------------------------------------------------------- /static/img/guardrails-secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/guardrails-secrets.png -------------------------------------------------------------------------------- /static/img/guardrails-time-to-fix-monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/guardrails-time-to-fix-monochrome.png -------------------------------------------------------------------------------- /static/img/icon-deploy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/icon-deploy.svg -------------------------------------------------------------------------------- /static/img/icon-first-scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/icon-first-scan.svg -------------------------------------------------------------------------------- /static/img/icon-rules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/icon-rules.svg -------------------------------------------------------------------------------- /static/img/icon-triage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/icon-triage.svg -------------------------------------------------------------------------------- /static/img/in-app-providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/in-app-providers.png -------------------------------------------------------------------------------- /static/img/integrate-slack-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/integrate-slack-test.png -------------------------------------------------------------------------------- /static/img/integration-ruleboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/integration-ruleboard.png -------------------------------------------------------------------------------- /static/img/integrations-email-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/integrations-email-findings.png -------------------------------------------------------------------------------- /static/img/integrations-webhook-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/integrations-webhook-findings.png -------------------------------------------------------------------------------- /static/img/integrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/integrations.png -------------------------------------------------------------------------------- /static/img/jenkins-specific-local-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jenkins-specific-local-branch.png -------------------------------------------------------------------------------- /static/img/jira-code-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-code-findings.png -------------------------------------------------------------------------------- /static/img/jira-code-ticketed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-code-ticketed.png -------------------------------------------------------------------------------- /static/img/jira-configure-defaults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-configure-defaults.png -------------------------------------------------------------------------------- /static/img/jira-findings-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-findings-page.png -------------------------------------------------------------------------------- /static/img/jira-integrations-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-integrations-page.png -------------------------------------------------------------------------------- /static/img/jira-secrets-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-secrets-findings.png -------------------------------------------------------------------------------- /static/img/jira-secrets-ticketed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-secrets-ticketed.png -------------------------------------------------------------------------------- /static/img/jira-ssc-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-ssc-findings.png -------------------------------------------------------------------------------- /static/img/jira-ssc-ticketed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-ssc-ticketed.png -------------------------------------------------------------------------------- /static/img/jira-subdomain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-subdomain.png -------------------------------------------------------------------------------- /static/img/jira-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-template.png -------------------------------------------------------------------------------- /static/img/jira-ticket-created-successfully.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-ticket-created-successfully.png -------------------------------------------------------------------------------- /static/img/jira-ticket-created-unsuccessfully.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-ticket-created-unsuccessfully.png -------------------------------------------------------------------------------- /static/img/jira-ticket-finding-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/jira-ticket-finding-details.png -------------------------------------------------------------------------------- /static/img/join-an-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/join-an-org.png -------------------------------------------------------------------------------- /static/img/join-mode-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/join-mode-example.png -------------------------------------------------------------------------------- /static/img/july2023-newicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/july2023-newicons.png -------------------------------------------------------------------------------- /static/img/kb/FedRAMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/FedRAMP.png -------------------------------------------------------------------------------- /static/img/kb/bitbucket-jenkins-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/bitbucket-jenkins-events.png -------------------------------------------------------------------------------- /static/img/kb/bitbucket-jenkins-freestyle-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/bitbucket-jenkins-freestyle-events.png -------------------------------------------------------------------------------- /static/img/kb/bitbucket-jenkins-freestyle-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/bitbucket-jenkins-freestyle-token.png -------------------------------------------------------------------------------- /static/img/kb/bitbucket-jenkins-freestyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/bitbucket-jenkins-freestyle.png -------------------------------------------------------------------------------- /static/img/kb/bitbucket-jenkins-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/bitbucket-jenkins-new.png -------------------------------------------------------------------------------- /static/img/kb/bitbucket-jenkins-pullrequest-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/bitbucket-jenkins-pullrequest-1.png -------------------------------------------------------------------------------- /static/img/kb/bitbucket-jenkins-pullrequest-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/bitbucket-jenkins-pullrequest-2.png -------------------------------------------------------------------------------- /static/img/kb/ci-bitbucket-defining-webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/ci-bitbucket-defining-webhook.png -------------------------------------------------------------------------------- /static/img/kb/ci-bitbucket-select-triggers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/ci-bitbucket-select-triggers.png -------------------------------------------------------------------------------- /static/img/kb/custom_rules_in_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/custom_rules_in_editor.png -------------------------------------------------------------------------------- /static/img/kb/github-default-workflow-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/github-default-workflow-permissions.png -------------------------------------------------------------------------------- /static/img/kb/github-icon-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/github-icon-editor.png -------------------------------------------------------------------------------- /static/img/kb/github-secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/github-secrets.png -------------------------------------------------------------------------------- /static/img/kb/github-update-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/github-update-value.png -------------------------------------------------------------------------------- /static/img/kb/gitlab-update-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/gitlab-update-value.png -------------------------------------------------------------------------------- /static/img/kb/google_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/google_attributes.png -------------------------------------------------------------------------------- /static/img/kb/integration-defectdojo-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/integration-defectdojo-example.png -------------------------------------------------------------------------------- /static/img/kb/reusable-workflows-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/reusable-workflows-image-1.png -------------------------------------------------------------------------------- /static/img/kb/reusable-workflows-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/reusable-workflows-image-2.png -------------------------------------------------------------------------------- /static/img/kb/reusable-workflows-image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/reusable-workflows-image-3.png -------------------------------------------------------------------------------- /static/img/kb/reusable-workflows-image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/reusable-workflows-image-4.png -------------------------------------------------------------------------------- /static/img/kb/saml-auth-method-doesnt-match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/saml-auth-method-doesnt-match.png -------------------------------------------------------------------------------- /static/img/kb/save_rule_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/save_rule_editor.png -------------------------------------------------------------------------------- /static/img/kb/semgrep-gha-jobname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/semgrep-gha-jobname.png -------------------------------------------------------------------------------- /static/img/kb/semgrep-gha-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/semgrep-gha-workflow.png -------------------------------------------------------------------------------- /static/img/kb/semgrep-workflow-actions-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/semgrep-workflow-actions-access.png -------------------------------------------------------------------------------- /static/img/kb/semgrep-workflow-pr-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/semgrep-workflow-pr-example.png -------------------------------------------------------------------------------- /static/img/kb/semgrep-workflow-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/semgrep-workflow-repo.png -------------------------------------------------------------------------------- /static/img/kb/semgrep-workflow-require-pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/semgrep-workflow-require-pass.png -------------------------------------------------------------------------------- /static/img/kb/ssc-branch-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/ssc-branch-selector.png -------------------------------------------------------------------------------- /static/img/kb/ssc-vuln-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/ssc-vuln-filter.png -------------------------------------------------------------------------------- /static/img/kb/vscode-schema-autocomplete-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/vscode-schema-autocomplete-example.png -------------------------------------------------------------------------------- /static/img/kb/vscode-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/vscode-windows.png -------------------------------------------------------------------------------- /static/img/kb/vscode-yaml-schema-example-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/vscode-yaml-schema-example-file.png -------------------------------------------------------------------------------- /static/img/kb/vscode-yaml-schemas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/vscode-yaml-schemas.png -------------------------------------------------------------------------------- /static/img/kb/wiz-semgrep-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/kb/wiz-semgrep-integration.png -------------------------------------------------------------------------------- /static/img/linear-code-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/linear-code-findings.png -------------------------------------------------------------------------------- /static/img/linear-code-ticketed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/linear-code-ticketed.png -------------------------------------------------------------------------------- /static/img/linear-configure-defaults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/linear-configure-defaults.png -------------------------------------------------------------------------------- /static/img/linear-ssc-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/linear-ssc-findings.png -------------------------------------------------------------------------------- /static/img/linear-ssc-ticketed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/linear-ssc-ticketed.png -------------------------------------------------------------------------------- /static/img/linters-semgrep-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/linters-semgrep-comparison.png -------------------------------------------------------------------------------- /static/img/match-badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/match-badges.png -------------------------------------------------------------------------------- /static/img/matched-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/matched-findings.png -------------------------------------------------------------------------------- /static/img/member-limits-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/member-limits-view.png -------------------------------------------------------------------------------- /static/img/member-tokens-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/member-tokens-table.png -------------------------------------------------------------------------------- /static/img/memories-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/memories-1.png -------------------------------------------------------------------------------- /static/img/memories-1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/memories-1a.png -------------------------------------------------------------------------------- /static/img/memories-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/memories-2.png -------------------------------------------------------------------------------- /static/img/more-accounts-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/more-accounts-dropdown.png -------------------------------------------------------------------------------- /static/img/multiple-orgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/multiple-orgs.png -------------------------------------------------------------------------------- /static/img/new-onboarding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/new-onboarding.png -------------------------------------------------------------------------------- /static/img/new-scm-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/new-scm-card.png -------------------------------------------------------------------------------- /static/img/notification-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/notification-setup.png -------------------------------------------------------------------------------- /static/img/notifications-enable-autofix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/notifications-enable-autofix.png -------------------------------------------------------------------------------- /static/img/notifications-github-suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/notifications-github-suggestions.png -------------------------------------------------------------------------------- /static/img/old-scm-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/old-scm-card.png -------------------------------------------------------------------------------- /static/img/onboarding-scan-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/onboarding-scan-location.png -------------------------------------------------------------------------------- /static/img/pattern-and-pattern-constraint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/pattern-and-pattern-constraint.png -------------------------------------------------------------------------------- /static/img/per-project-ignores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/per-project-ignores.png -------------------------------------------------------------------------------- /static/img/personal-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/personal-org.png -------------------------------------------------------------------------------- /static/img/playground-advanced-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/playground-advanced-view.png -------------------------------------------------------------------------------- /static/img/playground-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/playground-editor.png -------------------------------------------------------------------------------- /static/img/playground-sample-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/playground-sample-code.png -------------------------------------------------------------------------------- /static/img/playground-simple-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/playground-simple-view.png -------------------------------------------------------------------------------- /static/img/playground-turbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/playground-turbo.png -------------------------------------------------------------------------------- /static/img/playground-use-ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/playground-use-ci.png -------------------------------------------------------------------------------- /static/img/playground-widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/playground-widget.png -------------------------------------------------------------------------------- /static/img/playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/playground.png -------------------------------------------------------------------------------- /static/img/pleditor-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/pleditor-advanced.png -------------------------------------------------------------------------------- /static/img/pleditor-rule-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/pleditor-rule-board.png -------------------------------------------------------------------------------- /static/img/pleditor-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/pleditor-simple.png -------------------------------------------------------------------------------- /static/img/pleditor-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/pleditor-structure.png -------------------------------------------------------------------------------- /static/img/policies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/policies.png -------------------------------------------------------------------------------- /static/img/policy-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/policy-actions.png -------------------------------------------------------------------------------- /static/img/policy-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/policy-sample.png -------------------------------------------------------------------------------- /static/img/policy-zero-project-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/policy-zero-project-state.png -------------------------------------------------------------------------------- /static/img/pr-comment-autofix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/pr-comment-autofix.png -------------------------------------------------------------------------------- /static/img/pr-comment-sections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/pr-comment-sections.png -------------------------------------------------------------------------------- /static/img/pr-comment-triage-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/pr-comment-triage-response.png -------------------------------------------------------------------------------- /static/img/pr-status-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/pr-status-check.png -------------------------------------------------------------------------------- /static/img/primary-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/primary-branch.png -------------------------------------------------------------------------------- /static/img/pro-engine-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/pro-engine-toggle.png -------------------------------------------------------------------------------- /static/img/projects-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/projects-page.png -------------------------------------------------------------------------------- /static/img/projects-remote-local-slugs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/projects-remote-local-slugs.png -------------------------------------------------------------------------------- /static/img/projects-rename-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/projects-rename-repo.png -------------------------------------------------------------------------------- /static/img/projects-view-scan-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/projects-view-scan-details.png -------------------------------------------------------------------------------- /static/img/publish-custom-rules-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/publish-custom-rules-1.png -------------------------------------------------------------------------------- /static/img/publish-custom-rules-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/publish-custom-rules-2.png -------------------------------------------------------------------------------- /static/img/publish-custom-rules-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/publish-custom-rules-3.png -------------------------------------------------------------------------------- /static/img/rbac-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/rbac-overview.png -------------------------------------------------------------------------------- /static/img/registry-run-locally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/registry-run-locally.png -------------------------------------------------------------------------------- /static/img/release-notes-give-rule-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/release-notes-give-rule-feedback.png -------------------------------------------------------------------------------- /static/img/release-notes-group-by-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/release-notes-group-by-rule.png -------------------------------------------------------------------------------- /static/img/release-notes-march2023-cli-output-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/release-notes-march2023-cli-output-new.png -------------------------------------------------------------------------------- /static/img/release-notes-march2023-cli-output-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/release-notes-march2023-cli-output-old.png -------------------------------------------------------------------------------- /static/img/release-notes-project-sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/release-notes-project-sorting.png -------------------------------------------------------------------------------- /static/img/release-notes-rename-project1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/release-notes-rename-project1.png -------------------------------------------------------------------------------- /static/img/release-notes-rename-project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/release-notes-rename-project2.png -------------------------------------------------------------------------------- /static/img/release-notes-see-source-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/release-notes-see-source-rule.png -------------------------------------------------------------------------------- /static/img/remove-from-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/remove-from-policy.png -------------------------------------------------------------------------------- /static/img/retrieve-gh-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/retrieve-gh-log.png -------------------------------------------------------------------------------- /static/img/rule-board-disabled-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/rule-board-disabled-rule.png -------------------------------------------------------------------------------- /static/img/rule-board-integrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/rule-board-integrations.png -------------------------------------------------------------------------------- /static/img/rule-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/rule-board.png -------------------------------------------------------------------------------- /static/img/ruleset-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ruleset-findings.png -------------------------------------------------------------------------------- /static/img/safe-click-to-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/safe-click-to-fix.png -------------------------------------------------------------------------------- /static/img/saml-attribute-statements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/saml-attribute-statements.png -------------------------------------------------------------------------------- /static/img/saml-copy-IdPSSO-IdPID-and-X509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/saml-copy-IdPSSO-IdPID-and-X509.png -------------------------------------------------------------------------------- /static/img/saml-copy-urls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/saml-copy-urls.png -------------------------------------------------------------------------------- /static/img/saml-creating-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/saml-creating-app.png -------------------------------------------------------------------------------- /static/img/saml-filling-IdpSSO-IdpID-X509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/saml-filling-IdpSSO-IdpID-X509.png -------------------------------------------------------------------------------- /static/img/sankey-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sankey-diagram.png -------------------------------------------------------------------------------- /static/img/sc-license-scanning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sc-license-scanning.png -------------------------------------------------------------------------------- /static/img/sc-reachability-analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sc-reachability-analysis.png -------------------------------------------------------------------------------- /static/img/sc-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sc-settings.png -------------------------------------------------------------------------------- /static/img/sca-ruleid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sca-ruleid.png -------------------------------------------------------------------------------- /static/img/scan-details-permalink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/scan-details-permalink.png -------------------------------------------------------------------------------- /static/img/scan-process-oss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/scan-process-oss.svg -------------------------------------------------------------------------------- /static/img/scan-process-sap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/scan-process-sap.svg -------------------------------------------------------------------------------- /static/img/scm-confirm-private-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/scm-confirm-private-app.png -------------------------------------------------------------------------------- /static/img/scm-create-private-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/scm-create-private-app.png -------------------------------------------------------------------------------- /static/img/scp-assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/scp-assistant.png -------------------------------------------------------------------------------- /static/img/scp-broker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/scp-broker.png -------------------------------------------------------------------------------- /static/img/secrets-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/secrets-page.png -------------------------------------------------------------------------------- /static/img/security-program-workflows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/security-program-workflows.svg -------------------------------------------------------------------------------- /static/img/semgrep-app-add-demo-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-app-add-demo-project.png -------------------------------------------------------------------------------- /static/img/semgrep-app-comment-github-beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-app-comment-github-beta.png -------------------------------------------------------------------------------- /static/img/semgrep-app-comment-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-app-comment-github.png -------------------------------------------------------------------------------- /static/img/semgrep-app-comment-gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-app-comment-gitlab.png -------------------------------------------------------------------------------- /static/img/semgrep-app-delete-demo-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-app-delete-demo-project.png -------------------------------------------------------------------------------- /static/img/semgrep-app-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-app-diagram.png -------------------------------------------------------------------------------- /static/img/semgrep-app-latest-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-app-latest-version.png -------------------------------------------------------------------------------- /static/img/semgrep-app-new-project-providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-app-new-project-providers.png -------------------------------------------------------------------------------- /static/img/semgrep-app-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-app-overview.png -------------------------------------------------------------------------------- /static/img/semgrep-assistant-autofix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-assistant-autofix.png -------------------------------------------------------------------------------- /static/img/semgrep-assistant-autotriage-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-assistant-autotriage-findings.png -------------------------------------------------------------------------------- /static/img/semgrep-assistant-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-assistant-comment.png -------------------------------------------------------------------------------- /static/img/semgrep-assistant-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-assistant-github.png -------------------------------------------------------------------------------- /static/img/semgrep-assistant-gl-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-assistant-gl-setup.png -------------------------------------------------------------------------------- /static/img/semgrep-assistant-installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-assistant-installation.png -------------------------------------------------------------------------------- /static/img/semgrep-assistant-reference-commits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-assistant-reference-commits.png -------------------------------------------------------------------------------- /static/img/semgrep-assistant-scp-autofix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-assistant-scp-autofix.png -------------------------------------------------------------------------------- /static/img/semgrep-assistant-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-assistant-setup.png -------------------------------------------------------------------------------- /static/img/semgrep-ci-github-access-repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-ci-github-access-repos.png -------------------------------------------------------------------------------- /static/img/semgrep-ci-overview-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-ci-overview-app.png -------------------------------------------------------------------------------- /static/img/semgrep-ci-overview-noapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-ci-overview-noapp.png -------------------------------------------------------------------------------- /static/img/semgrep-ci.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-ci.gif -------------------------------------------------------------------------------- /static/img/semgrep-configuration-ci-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-configuration-ci-run.png -------------------------------------------------------------------------------- /static/img/semgrep-findings-in-wiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-findings-in-wiz.png -------------------------------------------------------------------------------- /static/img/semgrep-icon-text-horizontal-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-icon-text-horizontal-dark.svg -------------------------------------------------------------------------------- /static/img/semgrep-icon-text-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-icon-text-horizontal.svg -------------------------------------------------------------------------------- /static/img/semgrep-not-acting-on-your-behalf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-not-acting-on-your-behalf.png -------------------------------------------------------------------------------- /static/img/semgrep-pro-engine-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-pro-engine-toggle.png -------------------------------------------------------------------------------- /static/img/semgrep-registry-license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-registry-license.png -------------------------------------------------------------------------------- /static/img/semgrep-secrets-slack-subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-secrets-slack-subscribe.png -------------------------------------------------------------------------------- /static/img/semgrep-slack-subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep-slack-subscribe.png -------------------------------------------------------------------------------- /static/img/semgrep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/semgrep.svg -------------------------------------------------------------------------------- /static/img/sept-2023-assistant-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sept-2023-assistant-findings.png -------------------------------------------------------------------------------- /static/img/settings-scm-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/settings-scm-remove.png -------------------------------------------------------------------------------- /static/img/signature-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/signature-validation.png -------------------------------------------------------------------------------- /static/img/slack-create-app-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/slack-create-app-name.png -------------------------------------------------------------------------------- /static/img/slack-create-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/slack-create-app.png -------------------------------------------------------------------------------- /static/img/slack-enable-webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/slack-enable-webhooks.png -------------------------------------------------------------------------------- /static/img/slack-findings-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/slack-findings-message.png -------------------------------------------------------------------------------- /static/img/slack-integration-hooktest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/slack-integration-hooktest.png -------------------------------------------------------------------------------- /static/img/slack-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/slack-notification.png -------------------------------------------------------------------------------- /static/img/slack-request-enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/slack-request-enable.png -------------------------------------------------------------------------------- /static/img/slack-secrets-findings-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/slack-secrets-findings-message.png -------------------------------------------------------------------------------- /static/img/slack-semgrep-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/slack-semgrep-findings.png -------------------------------------------------------------------------------- /static/img/sms-enable-pr-or-mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sms-enable-pr-or-mr.png -------------------------------------------------------------------------------- /static/img/sms-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sms-logs.png -------------------------------------------------------------------------------- /static/img/ssc-dependency-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ssc-dependency-graph.png -------------------------------------------------------------------------------- /static/img/ssc-maven-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ssc-maven-local.png -------------------------------------------------------------------------------- /static/img/ssc-policies-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ssc-policies-card.png -------------------------------------------------------------------------------- /static/img/ssc-policies-many-conditions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ssc-policies-many-conditions.png -------------------------------------------------------------------------------- /static/img/ssc-pr-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/ssc-pr-comment.png -------------------------------------------------------------------------------- /static/img/sso-clientID-clientSecret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sso-clientID-clientSecret.png -------------------------------------------------------------------------------- /static/img/sso-redirect-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sso-redirect-url.png -------------------------------------------------------------------------------- /static/img/structure-mode-taint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/structure-mode-taint.png -------------------------------------------------------------------------------- /static/img/superseded-rules-policies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/superseded-rules-policies.png -------------------------------------------------------------------------------- /static/img/sysdig_add_integration_existing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sysdig_add_integration_existing.png -------------------------------------------------------------------------------- /static/img/sysdig_add_integration_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sysdig_add_integration_new.png -------------------------------------------------------------------------------- /static/img/sysdig_cnapp_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sysdig_cnapp_data.png -------------------------------------------------------------------------------- /static/img/sysdig_configure_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sysdig_configure_integration.png -------------------------------------------------------------------------------- /static/img/sysdig_enabled_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/sysdig_enabled_integration.png -------------------------------------------------------------------------------- /static/img/test-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/test-notification.png -------------------------------------------------------------------------------- /static/img/tooltip-disabled-finding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/tooltip-disabled-finding.png -------------------------------------------------------------------------------- /static/img/turn-off-sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/turn-off-sms.png -------------------------------------------------------------------------------- /static/img/tutorial/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/tutorial/docsVersionDropdown.png -------------------------------------------------------------------------------- /static/img/tutorial/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/tutorial/localeDropdown.png -------------------------------------------------------------------------------- /static/img/unlink-jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/unlink-jira.png -------------------------------------------------------------------------------- /static/img/upgrade-guidance-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/upgrade-guidance-flowchart.png -------------------------------------------------------------------------------- /static/img/webhook-successful-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/webhook-successful-test.png -------------------------------------------------------------------------------- /static/img/wiz-finding-details-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/wiz-finding-details-2.png -------------------------------------------------------------------------------- /static/img/wiz-finding-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/wiz-finding-details.png -------------------------------------------------------------------------------- /static/img/zcs-code-access-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/zcs-code-access-enabled.png -------------------------------------------------------------------------------- /static/img/zcs-github-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/img/zcs-github-apps.png -------------------------------------------------------------------------------- /static/js/gtm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/static/js/gtm.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semgrep/semgrep-docs/HEAD/yarn.lock --------------------------------------------------------------------------------