├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── auto_merge.yml │ └── check-branch-name.yml ├── .gitignore ├── .gitmodules ├── .htmltest.yml ├── .hugo_build.lock ├── .vale.ini ├── BestPracticesSecurityGuide.md ├── CODEOWNERS ├── Dockerfile ├── GrammarLinter.md ├── LICENSE ├── README.md ├── assets ├── icons │ └── logo.svg └── scss │ └── _variables_project.scss ├── content └── en │ ├── BestPractices │ ├── _index.md │ ├── api-rate-limiting.md │ ├── input-validation.md │ ├── insecure-deserialization.md │ ├── prevent-security-misconfig.md │ ├── prevent-ssti.md │ ├── protect-against-ssrf.md │ ├── protect-against-xxe.md │ └── secure-design.md │ ├── Cobalt-API │ ├── Documentation │ │ ├── _index.md │ │ ├── v1.md │ │ └── v2.md │ ├── _index.md │ ├── create-personal-api-token.md │ ├── create_asset.md │ ├── get-findings.md │ ├── get-organization-token.md │ └── revoke-personal-api-tokens.md │ ├── Cybersecurity Services │ └── _index.md │ ├── Domains │ ├── Getting started │ ├── Assets │ │ ├── _index.md │ │ ├── asset-description.md │ │ └── asset-type.md │ ├── Pentest objectives │ │ ├── _index.md │ │ ├── pentest-target.md │ │ ├── special-instructions.md │ │ ├── stack.md │ │ └── test-credentials.md │ ├── _index.md │ ├── details.md │ ├── glossary.md │ ├── pentest-preparation.md │ ├── planning.md │ ├── review-asset.md │ ├── review-pentest.md │ ├── select-pentest-type.md │ ├── sign-in.md │ ├── testing-environments.md │ └── what-to-expect.md │ ├── Integrations │ ├── Azure DevOps │ │ ├── _index.md │ │ ├── integrate-with-azure-devops.md │ │ ├── push-findings.md │ │ └── troubleshoot-azure-devops-integration.md │ ├── Beta │ │ ├── _index.md │ │ └── configure-beta.md │ ├── Development │ │ └── create-test-finding.md │ ├── IntegrationBuilder │ │ ├── How to Guides │ │ │ ├── _index.md │ │ │ ├── azure-devops.md │ │ │ ├── github.md │ │ │ ├── gitlab.md │ │ │ ├── http.md │ │ │ ├── import-assets-from-google-sheets.md │ │ │ ├── jira-cloud-migration.md │ │ │ ├── map-cobalt-pentest-finding-severity-to-jira-issue-priority.md │ │ │ ├── microsoft-teams.md │ │ │ ├── modify-jira-issue-summary-to-contain-pentest-title.md │ │ │ └── outlook-notifications.md │ │ ├── _index.md │ │ ├── connect-your-applications.md │ │ └── troubleshooting.md │ ├── Jira │ │ ├── _index.md │ │ ├── jira-cloud.md │ │ ├── jira-migration.md │ │ ├── jira-server-dc.md │ │ ├── push-findings.md │ │ ├── synchronize-severity-levels.md │ │ └── troubleshoot-jira-integration.md │ ├── _index.md │ ├── carried-over-findings.md │ ├── defectdojo.md │ ├── kenna-security.md │ ├── slack.md │ ├── vanta.md │ └── webhooks.md │ ├── Methodologies │ ├── _index.md │ ├── ai-llm.md │ ├── api-methodologies.md │ ├── azure-ad.md │ ├── cloud-configuration-review.md │ ├── cloud-provider-auth.md │ ├── desktop.md │ ├── digital-risk-assessment.md │ ├── external-network.md │ ├── internal-network.md │ ├── mobile.md │ ├── secure-code-review.md │ ├── web-api-test-type.md │ └── web-methodologies.md │ ├── PMP │ ├── _index.md │ ├── complete-pentest.md │ └── manage-pentests.md │ ├── Platform Deep Dive │ ├── Assets │ │ ├── _index.md │ │ ├── asset-types.md │ │ ├── insights.md │ │ └── risk-advisories.md │ ├── Attack Surface │ │ └── _index.md │ ├── Cobalt Account │ │ ├── _index.md │ │ ├── account-recovery.md │ │ ├── account-settings.md │ │ └── password-best-practices.md │ ├── Collaboration │ │ ├── _index.md │ │ ├── collaborate-on-pentests.md │ │ ├── groups.md │ │ ├── manage-collaborators.md │ │ ├── manage-notifications.md │ │ └── user-roles.md │ ├── Credits │ │ ├── _index.md │ │ ├── ptaas-tiers.md │ │ └── track-credits.md │ ├── Engagements │ │ ├── _index.md │ │ ├── digital-risk-assessment.md │ │ └── secure-code-review.md │ ├── Findings │ │ └── _index.md │ ├── Organization │ │ ├── Organization Settings │ │ │ ├── SAML SSO │ │ │ │ ├── _index.md │ │ │ │ ├── okta.md │ │ │ │ └── saml-migration.md │ │ │ └── _index.md │ │ ├── _index.md │ │ ├── manage-users.md │ │ └── your-contract.md │ ├── Pentests │ │ ├── Findings │ │ │ ├── _index.md │ │ │ ├── finding-states.md │ │ │ ├── remediate-findings.md │ │ │ └── severity-levels.md │ │ ├── Pentest Process │ │ │ ├── _index.md │ │ │ ├── coverage-checklist.md │ │ │ └── pentest-states.md │ │ ├── Planning │ │ │ └── _index.md │ │ ├── Reports │ │ │ ├── _index.md │ │ │ ├── cobranded-reports.md │ │ │ ├── customize-report.md │ │ │ └── report-contents.md │ │ ├── _index.md │ │ └── pentest-types.md │ └── _index.md │ ├── Product Updates │ ├── _index.md │ ├── release-notes-april-2024.md │ ├── release-notes-august-2024.md │ ├── release-notes-december-2024.md │ ├── release-notes-january-2024.md │ ├── release-notes-january-2025.md │ ├── release-notes-july-2024.md │ ├── release-notes-june-2024.md │ ├── release-notes-march-2024.md │ ├── release-notes-march-2025.md │ ├── release-notes-may-2024.md │ ├── release-notes-november-2024.md │ ├── release-notes-october-2024.md │ └── release-notes-september-2024.md │ ├── Scans │ ├── _index.md │ ├── best-practices.md │ ├── blackout-period.md │ ├── extra-hosts.md │ ├── faq.md │ ├── integrations.md │ ├── reduced-scope.md │ ├── scans.md │ ├── sequence-recorder.md │ ├── target-auth.md │ └── targets.md │ ├── _index.md │ └── search.md ├── deploy.sh ├── docker-compose.yaml ├── hugo.toml ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ ├── render-heading.html │ │ └── render-link.html │ ├── baseof.html │ ├── content.html │ ├── list.html │ ├── list.rss.xml │ ├── search.html │ ├── single.html │ └── sitemap.xml ├── home.html ├── network-service-discovery-intro.md ├── partials │ ├── analytics-gtag.html │ ├── favicons.html │ ├── feedback.html │ ├── head-css.html │ ├── head.html │ ├── outputformat.html │ ├── page-meta-lastmod.html │ └── section-index.html ├── redirect │ └── single.html └── shortcodes │ ├── 2fa-see-troubleshooting.md │ ├── accepted-risk-intro.md │ ├── additional-requirements.md │ ├── aggregated-risk-definition.md │ ├── agile-pentest.md │ ├── alert.html │ ├── alpha-status.html │ ├── api-scan-tools-part.md │ ├── api-scan-tools.md │ ├── api-token.md │ ├── api-what-you-need.md │ ├── asset-best-practices.md │ ├── asset-categories.html │ ├── asset-definition.md │ ├── asset-id.md │ ├── asset-tag-definition.md │ ├── asset-types-table.md │ ├── assign-contact-intro.md │ ├── attestation-letter.md │ ├── attestation-report.md │ ├── automated-report.md │ ├── azure-ad-definition.md │ ├── beta-integrations-list.md │ ├── beta-label.html │ ├── browser-verification-intro.md │ ├── cobalt-api-docs-redirect.html │ ├── cobalt-api-docs.html │ ├── cobalt-average-definition.md │ ├── cobalt-credits.md │ ├── cobranding-first-steps.md │ ├── code-webui-port-forward.html │ ├── coming-soon.html │ ├── comprehensive-pentest.md │ ├── compromised-account-action.md │ ├── count-user-roles.md │ ├── coverage-definition.md │ ├── credit-definition.md │ ├── csm-support-link.html │ ├── csm-support.md │ ├── customer-letter.md │ ├── customize-report-tier.md │ ├── download-pentest-report-steps.md │ ├── environment.md │ ├── expand.html │ ├── farid.md │ ├── finding-definition.md │ ├── finding-details.md │ ├── full-report-findings.md │ ├── full-report.md │ ├── get-started-integrations.md │ ├── getting-started-steps.md │ ├── harsh-bothra.md │ ├── idempotency-key.md │ ├── image.html │ ├── in-house-pentest-definition.md │ ├── internal-network-requirements.md │ ├── internal-network-system-req.md │ ├── invite-help.md │ ├── jira-configured.md │ ├── jira-deactivate.md │ ├── learn-more-reports.md │ ├── mermaid.html │ ├── needs-update.html │ ├── network-additional-testing.md │ ├── network-manual-email.md │ ├── network-manual-firewall.md │ ├── network-manual-intro.md │ ├── network-manual-list.md │ ├── network-manual-routers.md │ ├── network-manual-stages-intro.md │ ├── network-recon-intro.md │ ├── network-recon-list.md │ ├── network-requirements.md │ ├── network-sd-further-investigation.md │ ├── network-service-discovery-intro.md │ ├── network-service-discovery-limitations.md │ ├── network-stages-toc.md │ ├── network-vuln-scan-problems.md │ ├── new-label.html │ ├── org-member-definition.md │ ├── org-token.md │ ├── osstmm-methodology.md │ ├── owner-member-team-member.md │ ├── pageinfo.html │ ├── params.html │ ├── payloadartist.md │ ├── pentest-big-scope.md │ ├── pentest-report-types.md │ ├── pentest-rigor.md │ ├── process-findings.md │ ├── ptaas-tier.md │ ├── remove-from-all-pentests.md │ ├── report-triage-retest.md │ ├── resolved-finding-states.md │ ├── scope-of-work.html │ ├── shashank.md │ ├── sign-in.md │ ├── sso-definition.md │ ├── tf-serving-version.html │ ├── three-dots.html │ ├── tier-feature-html.html │ ├── tier-feature.md │ ├── traffic-ip-addresses.md │ ├── unstabl3.html │ ├── user-role.md │ └── various-tools.md ├── netlify.toml ├── package-lock.json ├── package.json ├── static ├── VSCodeDemo.png ├── _redirects ├── bestprac │ ├── Content_Contributor_Agreement_Template.pdf │ └── deserialization-diagram.jpg ├── cobalt-api │ ├── create-personal-API-token.png │ ├── findings-imported-to-Google-Sheets.png │ └── manage-personal-API-tokens.png ├── deepdive │ ├── API-tokens-page.png │ ├── AcceptedRiskFinding.png │ ├── AcceptedRiskReason.png │ ├── AcceptedRiskReasons.png │ ├── AddCredits.png │ ├── AddPentestTeamMembers.png │ ├── AssetDetails.png │ ├── AssetsPageOverviewCallouts.png │ ├── ChangeUserRole.png │ ├── Check2FAStatus.png │ ├── Cobalt-IdP-initiated-SAML-SSO-process.png │ ├── Cobalt-Okta-SAML-app-update-1.png │ ├── Cobalt-Okta-SAML-app-update-2.png │ ├── Cobalt-configuration-for-Okta-manual-app-1.png │ ├── Cobalt-configuration-for-Okta-manual-app-2.png │ ├── Cobalt-configuration-for-Okta-preintegrated-app-1.png │ ├── Cobalt-configuration-for-Okta-preintegrated-app-2.png │ ├── Cobalt-configuration-for-Okta-preintegrated-app-3.png │ ├── CopyRecoveryCode.png │ ├── CoverageChecklistOverview.png │ ├── CoverageChecklistPentester.png │ ├── CreateNewAsset.png │ ├── CreditsPage.png │ ├── CustomizePentestReport.png │ ├── CustomizedReport.png │ ├── EditAcceptedRisk.png │ ├── ExampleCobrandedReport.png │ ├── FilterFindingsbyState.png │ ├── FilterPendingFixFindings.png │ ├── Findings-org-view-2.png │ ├── FollowFinding.png │ ├── Groups_CreateForm.png │ ├── Groups_MainPageandActions.png │ ├── Groups_ViewPage.png │ ├── InsightsAllFindings.png │ ├── InsightsAllFindingsByType.png │ ├── InsightsFindingsByStatusAndSeverity.png │ ├── InsightsPage.png │ ├── InsightsRiskOverview.png │ ├── InsightsTimeToFixBySeverity.png │ ├── InviteUsersOverlay.png │ ├── Manage2FA.png │ ├── MessagesChat.png │ ├── MessagesPentesterUpdates.png │ ├── Okta-SAML-configurations.png │ ├── Okta-app-username-format.png │ ├── Okta-manual-app-attributes.png │ ├── OpenMessagesSidebar.png │ ├── OpenPentesterUpdates.png │ ├── OrganizationsList.png │ ├── PartnerRole.png │ ├── PentestFlowSlack.png │ ├── PentestFlowWithSlack.png │ ├── PentestNotifications.png │ ├── PentestProcessFlow.png │ ├── PentestReportTypes.png │ ├── PentestStates.png │ ├── PeopleOrganization.png │ ├── PreviewRiskAdvisories.png │ ├── ReadyForRetestFinding.png │ ├── RemoveAuthenticatorDevice.png │ ├── RemoveCollaboratorFromAllPentests.png │ ├── ReportBranding.png │ ├── ReportSections.png │ ├── SAML-enforcement.png │ ├── SampleSlackFinding.png │ ├── SetupAuthenticatorDuringSignin.png │ ├── SeverityLevels.png │ ├── SlackChannelOpen.png │ ├── SubscriptionPlanCreditsPage.png │ ├── TurnOff2FA.png │ ├── Updated_ACS_URL.png │ ├── ViewActivity.png │ ├── ViewAllNotifications.png │ ├── ViewFindingsSummary.png │ ├── add-technology-for-asset.png │ ├── configure-SAML-overlay.png │ ├── configure-non-gallery-SAML-app-in-Okta-1.png │ ├── configure-non-gallery-SAML-app-in-Okta-2.png │ ├── configure-non-gallery-SAML-app-in-Okta-3.png │ ├── configure-saml-sso-overlay.png │ ├── download-ASM-domains-1.png │ ├── download-ASM-domains-2.png │ ├── download-DAST-report.png │ ├── download-credits.png │ ├── download-engagement-report.png │ ├── download-findings.png │ ├── download-insights.png │ ├── download-pentest-findings.png │ ├── download-pentest-report.png │ ├── findings-organization-view.png │ ├── ipsandports.png │ ├── listofdomains.png │ ├── planning.png │ ├── scanadomain.png │ ├── search.png │ ├── slug-acs-url.png │ └── targets.png ├── gsg │ ├── APIPentest.png │ ├── AddDetails.png │ ├── AdditionalRequests.png │ ├── AssetAttachments.png │ ├── AssetType.png │ ├── CircularPlan.png │ ├── CloudPentest.png │ ├── CloudPlatformDetails.png │ ├── Cobalt-sign-in-page.png │ ├── Collaborator.png │ ├── CreatePentestFlowFull.png │ ├── CreatePentestFlowStage1.png │ ├── CreatePentestFlowStage2.png │ ├── CreatePentestFlowStage3.png │ ├── CreatePentestFlowStage4.png │ ├── CreatePentestFlowStage5.png │ ├── CreatePentestFlowStage6.png │ ├── CreatePentestFlowStage7.png │ ├── EditPentestSubmitForReview.png │ ├── InstructionsForPentesters.png │ ├── LetsGetStartedScreen.png │ ├── LetsGetStartedScreen2.png │ ├── PentestDetails.png │ ├── PentestObjectives.png │ ├── PentestTargets.png │ ├── PentestWizardAsset.png │ ├── PentesterLimits.png │ ├── README.md │ ├── RateControls.png │ ├── ReviewAsset.png │ ├── SampleSlackComm1.png │ ├── ScheduleScopePentest.png │ ├── SetRequirements.png │ ├── TargetEnvironment.png │ ├── TechnologyStack.png │ ├── TestCredentials.png │ ├── WebOrAPI.png │ ├── asset-details.png │ ├── asset-tags.png │ ├── pentest-planning.png │ ├── pentest-scoping-api.png │ ├── pentest-scoping-cloud-config.png │ ├── pentest-scoping-ip-addresses.png │ ├── pentest-scoping-mobile.png │ ├── pentest-scoping-web-app.png │ ├── pentest-tag.png │ ├── point-of-contact.png │ ├── schedule-pentest.png │ └── scope-pentest-comprehensive-options.png ├── homepage │ ├── asset-types.svg │ ├── dast.svg │ ├── engagements.svg │ ├── getting-started.svg │ ├── hero.png │ ├── integrations.svg │ ├── methodologies.svg │ ├── pentest-types.svg │ └── whats-new.svg ├── icons │ ├── ArrowLeft.png │ ├── Bell.png │ ├── Chat.png │ ├── Flash.png │ ├── Gear.png │ ├── Slack.png │ ├── Trash.png │ └── Warning.png ├── illustrations │ ├── 404.svg │ ├── Cobalt-staff-role.svg │ ├── pentester-roles.svg │ └── user-roles.svg ├── integrations │ ├── ADO-documentation-configuration-embed-click-done.png │ ├── ADO-documentation-configuration-embed-click-save.png │ ├── ADO-documentation-configuration-embed-create-work-item.png │ ├── ADO-documentation-configuration-embed-datapill.png │ ├── ADO-documentation-configuration-embed-optional-fields-overlay.png │ ├── ADO-documentation-configuration-embed-optional-fields.png │ ├── ADO-documentation-required-parameters.png │ ├── ADO-integration-check-error-jobs.png │ ├── ADO-integration-configuration-status-gear-icon.png │ ├── ADO-integration-configuration-status-green.png │ ├── ADO-integration-configuration-status-grey.png │ ├── ADO-integration-restore-recipe-version.png │ ├── ADO-integration-syncs-edit-button.png │ ├── ADO-integration-syncs-switch-off.png │ ├── ADO-integration-syncs-switch-on.png │ ├── ADO-integration-troubleshoot-clear-cookies-cookies-site-data.png │ ├── ADO-integration-troubleshoot-clear-cookies-delete.png │ ├── ADO-integration-troubleshoot-clear-cookies-manage.png │ ├── ADO-interation-show-recipe-versions.png │ ├── Asana.svg │ ├── AzureDevOps.png │ ├── Bitbucket.png │ ├── Create-test-finding-configure-plan.png │ ├── Create-test-finding-create-inhouse-pentest.png │ ├── Create-test-finding-create-pentest.png │ ├── Create-test-finding-enter-inhouse-pentests.png │ ├── Create-test-finding-get-started-with-inhouse-pentests.png │ ├── Create-test-finding-inhouse-pentests-enabled.png │ ├── Create-test-finding-launch-pentest.png │ ├── Create-test-finding-live-pentest.png │ ├── Create-test-finding-optional-details.png │ ├── Create-test-finding-pending-fix-vuln.png │ ├── Create-test-finding-pentest-created.png │ ├── Create-test-finding-pentest-planned.png │ ├── Create-test-finding-pentest-vulns.png │ ├── Create-test-finding-plan-pentest.png │ ├── Create-test-finding-rename-pentest.png │ ├── Create-test-finding-secondary-user-invited.png │ ├── Create-test-finding-select-pending-fix-state.png │ ├── Create-test-finding-select-vulnerability-type.png │ ├── Create-test-finding-set-description.png │ ├── Create-test-finding-set-objectives.png │ ├── Create-test-finding-set-poc.png │ ├── Create-test-finding-set-severity.png │ ├── Create-test-finding-set-suggested-fix.png │ ├── Create-test-finding-set-targets.png │ ├── Create-test-finding-set-technology-stack.png │ ├── Create-test-finding-submit-evaluation.png │ ├── Create-test-finding-submit-finding.png │ ├── Create-test-finding-submit-for-triage.png │ ├── Create-test-finding-switch-role-success.png │ ├── Create-test-finding-switch-role.png │ ├── Create-test-finding-verify-secondary-user-added.png │ ├── Create-test-finding-verify-user-role.png │ ├── Create-test-finding-vuln-triaging.png │ ├── DefectDojo-add-api-scan-configuration-1.png │ ├── DefectDojo-add-api-scan-configuration-2.png │ ├── DefectDojo-add-api-scan-configuration-3.png │ ├── DefectDojo-add-tool-configuration-1.png │ ├── DefectDojo-add-tool-configuration-2.png │ ├── DefectDojo-add-tool-configuration-3.png │ ├── DefectDojo-add-tool-type-1.png │ ├── DefectDojo-add-tool-type-2.png │ ├── DefectDojo-add-tool-type-3.png │ ├── DefectDojo-import-findings-1.png │ ├── DefectDojo-import-findings-2.png │ ├── DefectDojo-import-findings-3.png │ ├── DefectDojo-import-findings-4.png │ ├── Defectdojo.png │ ├── Github.png │ ├── Jira-Cloud-migration-change-external-id.gif │ ├── Jira-Cloud-migration-configure-external-url.gif │ ├── Jira-Cloud-migration-configure-finding-state-change-trigger.png │ ├── Jira-Cloud-migration-configure-from-setting.png │ ├── Jira-Cloud-migration-customize-recipe.png │ ├── Jira-Cloud-migration-disallow-any-status.png │ ├── Jira-Cloud-migration-filter-by-asset-1.png │ ├── Jira-Cloud-migration-filter-by-asset-2.png │ ├── Jira-Cloud-migration-filter-by-asset-3.png │ ├── Jira-Cloud-migration-hover-datapill.gif │ ├── Jira-Cloud-migration-issue-filter-condition.png │ ├── Jira-Cloud-migration-manage-statuses.png │ ├── Jira-Cloud-migration-manage-workflow.png │ ├── Jira-Cloud-migration-native-jira-cloud-configuration.png │ ├── Jira-Cloud-migration-open-integration-builder.png │ ├── Jira-Cloud-migration-sample-jira-cloud-project-workflow-initial-state.png │ ├── Jira-Cloud-migration-sample-jira-cloud-project-workflow-modified-state.png │ ├── Jira-Cloud-migration-save-and-copy.png │ ├── Jira-Cloud-migration-save-exit-start-recipe-1.png │ ├── Jira-Cloud-migration-save-exit-start-recipe-2.png │ ├── Jira-Cloud-migration-search-recipe.png │ ├── Jira-Cloud-migration-select-datapill.gif │ ├── Jira-Cloud-migration-select-project-issue-type.png │ ├── Jira-Cloud-migration-use-labels-1.png │ ├── Jira-Cloud-migration-use-labels-2.png │ ├── Jira-Cloud-migration-use-labels-3.png │ ├── Jira-Cloud-migration-use-recipe.png │ ├── Jira-Cloud-migration-workflow-transition-name.png │ ├── Jira.png │ ├── Jupiterone.png │ ├── Kenna-Security-create-data-importer-connector-1.png │ ├── Kenna-Security-create-data-importer-connector-2.png │ ├── Kenna-Security-create-data-importer-connector-3.png │ ├── Kenna-Security-create-data-importer-connector-4.png │ ├── Kenna-Security-create-data-importer-connector-5.png │ ├── Kenna-Security-create-data-importer-connector-6.png │ ├── Kenna-Security-view-findings-AppSec-1.png │ ├── Kenna-Security-view-findings-AppSec-2.png │ ├── Kenna-Security-view-findings-VM-1.png │ ├── Kenna-Security-view-findings-VM-2.png │ ├── Kennasecurity.png │ ├── OneTrust.png │ ├── PagerDuty.svg │ ├── PivotalTracker.svg │ ├── PlexTrac.png │ ├── ServiceNow.png │ ├── Slack.png │ ├── Trello.svg │ ├── Tugboatlogic.png │ ├── Webhooks.png │ ├── Zendesk.svg │ ├── anecdotes.png │ ├── auto-push-toggle-for-Jira.png │ ├── carry-over-findings │ │ ├── DEFAULT_INT_SETTINGS_CARD.png │ │ ├── DEFAULT_INT_SETTINGS_MODAL.png │ │ └── carryover-ticket-handling-config.png │ ├── cobalt-severity-level.png │ ├── configure-jira-cloud-integration.png │ ├── configure-jira-dc-integration.png │ ├── configure-jira-integration-for-pentest.png │ ├── configure-jira-server-dc-integration.png │ ├── create-webhook.png │ ├── delete-jira.png │ ├── enable-jira-server-logs-1.png │ ├── enable-jira-server-logs-2.png │ ├── enable-jira-server-logs-3.png │ ├── enable-jira-server-logs-4.png │ ├── external-issue-tracking-jira.png │ ├── integration_builder │ │ ├── connect_your_apps │ │ │ ├── delete_connection │ │ │ │ └── delete_connection.png │ │ │ ├── edit_connection │ │ │ │ ├── disconnect_connection.png │ │ │ │ └── select_connection.png │ │ │ └── set_up_connection │ │ │ │ ├── enter_system_details.png │ │ │ │ ├── folder_view.png │ │ │ │ └── select_connector.png │ │ ├── findings_outlook_notifications │ │ │ ├── configure_outlook_notification_step1.png │ │ │ ├── configure_outlook_notification_step2.png │ │ │ ├── configure_outlook_notification_step3.png │ │ │ ├── configure_outlook_notification_step4.png │ │ │ ├── configure_outlook_notification_step5.png │ │ │ ├── configure_outlook_notification_step6.png │ │ │ ├── configure_outlook_notification_step7.png │ │ │ ├── create_connection_step1.png │ │ │ ├── create_connection_step2.png │ │ │ ├── create_connection_step3.png │ │ │ ├── create_connection_step4.png │ │ │ ├── running_recipe.png │ │ │ └── start_recipe.png │ │ ├── gitlab │ │ │ ├── 01-select-project.png │ │ │ ├── 02-create-connection.png │ │ │ ├── 03-all-connections.png │ │ │ ├── 04-find-gitlab-connection.png │ │ │ ├── 05-gitlab-connection-data.png │ │ │ ├── 06-gitlab-connection-auth-type.png │ │ │ ├── 08-connection-connected.png │ │ │ ├── 09-new-folder.png │ │ │ ├── 10-new-folder-data.png │ │ │ ├── 11-folder-created.png │ │ │ ├── 12-find-community-recipe.png │ │ │ ├── 13-use-recipe.png │ │ │ ├── 14-copy-and-save.png │ │ │ ├── 15-customize.png │ │ │ ├── 16-recipe-error.png │ │ │ ├── 17-click-step-with-error.png │ │ │ ├── 18-select-gitlab-project-and-save.png │ │ │ ├── 19-start-recipe.png │ │ │ └── 20-recipe-running.png │ │ ├── how_to_guides │ │ │ ├── add-pentest-title-to-jira-issue-summary │ │ │ │ ├── 10_choose_stop_job.png │ │ │ │ ├── 11_stop_job_as_failed.png │ │ │ │ ├── 12_find_issue_summary_input.png │ │ │ │ ├── 13_remove_finding_title_data_pill.png │ │ │ │ ├── 14_map_in_pentest_title.png │ │ │ │ ├── 1_add_step.png │ │ │ │ ├── 2_choose_handle_errors.png │ │ │ │ ├── 3_add_cobalt_connector_action.png │ │ │ │ ├── 4_choose_get_pentest_action.png │ │ │ │ ├── 5_map_in_pentest_id.png │ │ │ │ ├── 6_how_it_should_look.png │ │ │ │ ├── 7_retry_get_pentest_3_times.png │ │ │ │ ├── 8_delete_not_needed_step.png │ │ │ │ └── 9_add_error_persisting_step.png │ │ │ ├── azure-devops │ │ │ │ ├── 01-create-folder.png │ │ │ │ ├── 02-create-folder-modal.png │ │ │ │ ├── 03-create-connection.png │ │ │ │ ├── 04-select-azure-devops-connection.png │ │ │ │ ├── 05-connection-details.png │ │ │ │ ├── 06-azure-devops-pat-scopes.png │ │ │ │ ├── 07-connection-connected.png │ │ │ │ ├── 08-search-create-work-item.png │ │ │ │ ├── 09-use-recipe.png │ │ │ │ ├── 10-recipe-location.png │ │ │ │ ├── 11-customize-recipe.png │ │ │ │ ├── 12-create-work-item-error.png │ │ │ │ ├── 13-create-work-item-fix.png │ │ │ │ ├── 14-work-item-description.png │ │ │ │ ├── 15-upload-attachment-error.png │ │ │ │ ├── 16-upload-attachment-fix.png │ │ │ │ ├── 17-trigger-filters-by-pentest.png │ │ │ │ ├── 18-start-recipe.png │ │ │ │ ├── 19-recipe-running.png │ │ │ │ ├── 20-pentest-finding-with-work-item.png │ │ │ │ └── 21-work-item.png │ │ │ ├── data_pill_mapping.png │ │ │ ├── external_ticket_references │ │ │ │ ├── create_ticket_reference.png │ │ │ │ ├── disconnect_ticket_button.png │ │ │ │ └── search_ticket_reference.png │ │ │ ├── github │ │ │ │ ├── 01_create-connection-start.png │ │ │ │ ├── 02_new-connection.png │ │ │ │ ├── 03_connect-to-github.png │ │ │ │ ├── 04_oauth-authorize.png │ │ │ │ ├── 05_connected.png │ │ │ │ ├── 06_create-folder.png │ │ │ │ ├── 07_name-folder.png │ │ │ │ ├── 08_folder-created.png │ │ │ │ ├── 09_recipe-library.png │ │ │ │ ├── 10_select-recipe.png │ │ │ │ ├── 11_use-recipe.png │ │ │ │ ├── 12_copy-recipe.png │ │ │ │ ├── 13_copy-and-save.png │ │ │ │ ├── 14_customize-recipe-start.png │ │ │ │ ├── 15_customize-error.png │ │ │ │ ├── 16_customize-recipe.png │ │ │ │ ├── 17_save-recipe.png │ │ │ │ ├── 18_exit-recipe-editor.png │ │ │ │ ├── 19_start-recipe.png │ │ │ │ ├── 20_recipe-running.png │ │ │ │ ├── 21_stop-recipe.png │ │ │ │ ├── 22_edit-recipe.png │ │ │ │ ├── 23_recipe-editor.png │ │ │ │ ├── 24_customizable-fields.png │ │ │ │ ├── 25_optional-fields.png │ │ │ │ ├── 26_select-optional-fields.png │ │ │ │ ├── 27_update-trigger.png │ │ │ │ ├── 28_trigger-asset-field.png │ │ │ │ ├── 29_trigger-asset-selected.png │ │ │ │ ├── 30_trigger-pentest-field.png │ │ │ │ ├── 31_trigger-pentest-selected.png │ │ │ │ └── 32_trigger-reset.png │ │ │ ├── http │ │ │ │ ├── 01-create-http-folder.png │ │ │ │ ├── 02-create-http-folder-modal.png │ │ │ │ ├── 03-create-connection-folder.png │ │ │ │ ├── 04-create-connection-folder-modal.png │ │ │ │ ├── 05-create-connection.png │ │ │ │ ├── 06-search-http-connection.png │ │ │ │ ├── 07-http-connection-details.png │ │ │ │ ├── 08-http-connection-auth-basic.png │ │ │ │ ├── 09-http-connection-auth-header.png │ │ │ │ ├── 10-http-connection-auth-header-show.png │ │ │ │ ├── 11-http-connection-base-url.png │ │ │ │ ├── 12-http-connection-connected.png │ │ │ │ ├── 13-create-recipe.png │ │ │ │ ├── 14-create-recipe-details.png │ │ │ │ ├── 15-trigger-recipe-select-app.png │ │ │ │ ├── 16-trigger-recipe-select-trigger.png │ │ │ │ ├── 17-trigger-recipe-select-connection.png │ │ │ │ ├── 18-filter-trigger-by-pentest.png │ │ │ │ ├── 19-filter-trigger-by-pentest-modal.png │ │ │ │ ├── 20-filter-trigger-by-pentest-select-from-list.png │ │ │ │ ├── 21-use-get-pentest-finding-action.png │ │ │ │ ├── 22-get-pentest-finding-by-id.png │ │ │ │ ├── 23-filter-pentest-finding-by-state.png │ │ │ │ ├── 24-use-http-action.png │ │ │ │ ├── 25-use-http-action-select-connection.png │ │ │ │ ├── 26-use-http-action-setup.png │ │ │ │ ├── 27-use-http-action-config-url.png │ │ │ │ ├── 28-use-http-action-config-body.png │ │ │ │ ├── 29-use-http-action-config-header.png │ │ │ │ ├── 30-use-http-action-config-response.png │ │ │ │ ├── 31-use-http-action-config-review.png │ │ │ │ ├── 32-use-http-action-set-body.png │ │ │ │ ├── 33-use-http-action-set-body-map-cobalt-data.png │ │ │ │ ├── 34-use-http-action-set-header.png │ │ │ │ ├── 35-save-recipe.png │ │ │ │ ├── 36-start-recipe.png │ │ │ │ ├── 37-recipe-did-start.png │ │ │ │ ├── 38-finding-pending-fix.png │ │ │ │ ├── 39-recipe-run-pending-fix.png │ │ │ │ ├── 40-recipe-run-log-pending-fix.png │ │ │ │ ├── 41-finding-valid-fix.png │ │ │ │ ├── 42-recipe-run-valid-fix.png │ │ │ │ ├── 43-recipe-run-log-valid-fix-input.png │ │ │ │ └── 44-recipe-run-log-valid-fix-output.png │ │ │ ├── import-assets-from-google-sheets │ │ │ │ ├── 00-create-connection.png │ │ │ │ ├── 01-select-connection-type.png │ │ │ │ ├── 02-create-connection-form.png │ │ │ │ ├── 03-connection-created.png │ │ │ │ ├── 1-find-recipes.png │ │ │ │ ├── 10-trigger-recipe.png │ │ │ │ ├── 11-finished-run.png │ │ │ │ ├── 2-select-import-recipe.png │ │ │ │ ├── 3-click-use-recipe.png │ │ │ │ ├── 4-select-project.png │ │ │ │ ├── 5-edit-recipe.png │ │ │ │ ├── 6-edit-connection-on-recipe.png │ │ │ │ ├── 7-configure-sheet-in-recipe.png │ │ │ │ ├── 8-save-and-exit.png │ │ │ │ ├── 9-test-recipe.png │ │ │ │ ├── asset-list.png │ │ │ │ └── spreadsheet-example.png │ │ │ ├── map-cobalt-pentest-finding-severity-to-jira-issue-priority │ │ │ │ ├── 10_click_data_field.png │ │ │ │ ├── 11_chose_finding_severity.png │ │ │ │ ├── 12_set_if_condition.png │ │ │ │ ├── 13_set_if_value.png │ │ │ │ ├── 14_select_if_action.png │ │ │ │ ├── 15_update_variable.png │ │ │ │ ├── 16_select_jira_issue_priority_var.png │ │ │ │ ├── 17_put_jira_priority_in_variable.png │ │ │ │ ├── 18_use_priority_name.png │ │ │ │ ├── 19_set_issue_priority.png │ │ │ │ ├── 1_find_create_jira_issue_action.png │ │ │ │ ├── 20_what_it_should_look_like.png │ │ │ │ ├── 2_find_issue_priorities.png │ │ │ │ ├── 3_add_step.png │ │ │ │ ├── 4_add_action_in_app.png │ │ │ │ ├── 5_variables_by_workato.png │ │ │ │ ├── 6_create_variable_action.png │ │ │ │ ├── 7_add_variable.png │ │ │ │ ├── 8_name_variable.png │ │ │ │ └── 9_add_if_condition.png │ │ │ ├── microsoft-teams │ │ │ │ ├── 01-create-folder.png │ │ │ │ ├── 02-create-folder-modal.png │ │ │ │ ├── 03-create-connection.png │ │ │ │ ├── 04-select-microsoft-teams-connection.png │ │ │ │ ├── 05-connection-details.png │ │ │ │ ├── 06-connection-connected.png │ │ │ │ ├── 07-search-microsoft-teams-recipe.png │ │ │ │ ├── 08-use-recipe.png │ │ │ │ ├── 09-recipe-location.png │ │ │ │ ├── 10-customize-recipe.png │ │ │ │ ├── 11-recipe-error.png │ │ │ │ ├── 12-click-step-with-error.png │ │ │ │ ├── 13-message-settings.png │ │ │ │ ├── 14-start-recipe.png │ │ │ │ └── 15-recipe-running.png │ │ │ ├── optional_fields_button.png │ │ │ └── trigger_filters │ │ │ │ ├── add_filters.png │ │ │ │ ├── set_filter_value.png │ │ │ │ └── show_trigger_filters.png │ │ └── troubleshooting │ │ │ ├── how_to_troubleshoot │ │ │ ├── action_error.png │ │ │ ├── dashboard_with_error.png │ │ │ ├── failing_recipe.png │ │ │ └── recipe_run_list.png │ │ │ ├── rerun_recipe.png │ │ │ └── revert_recipe_change │ │ │ ├── recipe_versions.png │ │ │ └── restore_recipe_version.png │ ├── jira-configuration-parameters-for-pentest-1.png │ ├── jira-configuration-parameters-for-pentest-2.png │ ├── jira-integration-status.png │ ├── jira-server-logs-Lastlog.png │ ├── jira-server-logs.png │ └── vanta │ │ ├── authorize-app.png │ │ ├── cobalt-integration-connect.png │ │ ├── cobalt-integration-in-vanta.png │ │ ├── delete-credentials-and-data.png │ │ ├── delete-integration-from-vanta.png │ │ ├── disconnect-integration-from-cobalt.png │ │ ├── tile-connected.png │ │ └── tile-disconnected.png ├── methodologies │ ├── external-internal-network-pentest-methodology-process.png │ ├── internal-network-pentest-methodology-process.png │ ├── mobile-app-pentest-methodology-process.png │ └── web-app-pentest-methodology-process.png ├── pmp │ ├── add-in-house-pentester.png │ ├── complete-the-Cobalt-coverage-checklist.png │ ├── create-pentest-in-house-pentest.png │ ├── edit-pentest-report.png │ ├── filter-ready-for-retest-findings.png │ ├── move-the-pentest-to-remediation.png │ ├── open-the-pentest-chat.png │ ├── pentest-overview-in-house-pentester.png │ ├── pmp.png │ ├── submit-finding.png │ ├── switch-role-to-in-house-pentester.png │ ├── vulnerability-detector-enriched-content.png │ ├── vulnerability-detector-results.png │ └── vulnerability-detector-start-new-scan.png ├── profservices │ └── specialized-pentest-label.png ├── release-notes │ ├── Attack-Surface-Insights.png │ ├── Catalog.png │ ├── DRA.png │ ├── FindingNotApplicable.png │ ├── Home.png │ ├── NotApplicable.png │ ├── ReviewFindingsNow.png │ ├── SCR-Brief.png │ ├── SCR.png │ ├── Scan-Progress.png │ ├── Scans-April-Release.png │ ├── age-by-severity.png │ ├── ai-llm-release-notes.png │ ├── associated-targets.png │ ├── attestation-letter.png │ ├── confirm-credential-deletion.png │ ├── coverage.png │ ├── cvss.png │ ├── dra-report.png │ ├── email-target-created.png │ ├── extra-hosts.png │ ├── integration-builder-notifications.png │ ├── integrations-builder-assistant.png │ ├── partial-scans.png │ ├── pentest-notifications.png │ ├── pentest-report-order.png │ ├── saml-updates.png │ ├── scan-profiles.png │ ├── severity_trend.png │ ├── target-directory.png │ └── test-report-covers.png └── scans │ ├── 10_ScheduledScanForm.png │ ├── 11_ScheduledScansView.png │ ├── 1_CreateTarget.png │ ├── 2_AddTarget-API.png │ ├── 2_AddTarget.png │ ├── 3.1_LoginSequence.png │ ├── 3_AuthenticatedScan.png │ ├── 4_StartScanTargets.png │ ├── 5_TargetScanResultsSampleReport.png │ ├── 6_ScansSampleFindingsReport.png │ ├── 7_ViewReport.png │ ├── 9_Retest_Finding.png │ ├── API-Auth-1.png │ ├── API-Auth-2.png │ ├── Anatomy_DASTTarget.png │ ├── ScanProfiles.png │ ├── blackout-period-disabled.png │ ├── blackout-period-enabled.png │ ├── extra-hosts │ ├── ExtraHosts_Create.png │ ├── ExtraHosts_CustomCookies.png │ ├── ExtraHosts_CustomHeaders.png │ └── ExtraHosts_List.png │ ├── partial-scans-configured.png │ ├── partial-scans-modal.png │ ├── scan-failed-01.png │ ├── scan-failed-02.png │ ├── scanner-tab │ ├── API-Parameter.png │ └── Custom-Headers.png │ ├── scans │ ├── BlueProgressBar.png │ ├── DarkGreyProgressBar.png │ ├── GreenProgressBar.png │ ├── LightGreyProgressBar.png │ ├── PauseScan.png │ ├── PausedComponents.png │ ├── RedProgressBar.png │ ├── ResumeScan.png │ ├── ScanStatuses.png │ ├── StartScan.png │ └── YellowProgressBar.png │ └── sequence-recorder │ ├── recorder1.png │ ├── recorder2.png │ └── recorder3.png └── styles ├── Google ├── AMPM.yml ├── Acronyms.yml ├── Colons.yml ├── DateFormat.yml ├── Ellipses.yml ├── EmDash.yml ├── EnDash.yml ├── Exclamation.yml ├── FirstPerson.yml ├── Gender.yml ├── GenderBias.yml ├── HeadingPunctuation.yml ├── Latin.yml ├── LyHyphens.yml ├── OptionalPlurals.yml ├── Ordinal.yml ├── OxfordComma.yml ├── Parens.yml ├── Passive.yml ├── Periods.yml ├── Ranges.yml ├── Semicolons.yml ├── Slang.yml ├── Spacing.yml ├── Spelling.yml ├── Units.yml ├── Will.yml ├── WordList.yml ├── meta.json └── vocab.txt ├── Readability ├── FleschKincaid.yml └── meta.json ├── Spelling.yml ├── Vocab └── Cobalt │ ├── README │ ├── accept.txt │ ├── reject.txt │ └── spelling-exceptions.txt ├── cobalt ├── Acronyms.yml ├── Admin.yml ├── AlertBoxStyle.yml ├── BadgeCapitalization.yml ├── British.yml ├── Capitalization.yml ├── Contractions.yml ├── CurrentStatus.yml ├── DefaultBranch.yml ├── E-Prime.yml ├── ElementDescriptors.yml ├── FirstPerson.yml ├── Headings.yml ├── InclusionAbleism.yml ├── InclusionCultural.yml ├── InclusionGender.yml ├── InternalLinkExtension.yml ├── LICENSE.md ├── LatinTerms.yml ├── MeaningfulLinkWords.yml ├── MergeConflictMarkers.yml ├── NonStandardQuotes.yml ├── OxfordComma.yml ├── Possessive.yml ├── Quotes.yml ├── ReferenceLinks.yml ├── RelativeLinksDoubleSlashes.yml ├── Repetition.yml ├── SentenceLength.yml ├── SentenceSpacing.yml ├── Simplicity.yml ├── Spelling.yml ├── SubstitutionSuggestions.yml ├── SubstitutionWarning.yml ├── Substitutions.yml ├── ToDo.yml ├── UnclearAntecedent.yml ├── VersionText.yml ├── Wordy.yml └── spelling-exceptions.txt └── write-good ├── Cliches.yml ├── Illusions.yml ├── Passive.yml ├── README.md ├── So.yml ├── ThereIs.yml ├── TooWordy.yml ├── Weasel.yml └── meta.json /.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | resources/ 3 | node_modules/ 4 | tech-doc-hugo/ 5 | tmp/ 6 | .DS_Store 7 | .idea 8 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.hugo_build.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/.hugo_build.lock -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- 1 | StylesPath = styles 2 | 3 | [*.md] 4 | BasedOnStyles = Readability, cobalt, write-good, Google 5 | 6 | IgnoredScopes = code, strong, tt 7 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Default owners for everything in the repo. 2 | * @mjang-cobalt @ana-dashuk-cobalt 3 | # If neither user is available, contact 4 | # Stef Sexton (@stef-cobalt), or message in the Cobalt internal Slack #docs room. 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM klakegg/hugo:ext-alpine 2 | 3 | RUN apk add git 4 | -------------------------------------------------------------------------------- /content/en/Cobalt-API/Documentation/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Documentation 3 | weight: 600 4 | --- 5 | 6 | {{% cobalt-api-docs-redirect %}} 7 | -------------------------------------------------------------------------------- /content/en/Cobalt-API/Documentation/v1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: API v1 Documentation 3 | linkTitle: v1 Documentation 4 | slug: v1 5 | weight: 300 6 | --- 7 | 8 | {{% cobalt-api-docs %}} 9 | -------------------------------------------------------------------------------- /content/en/Cobalt-API/Documentation/v2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: API v2 Documentation 3 | linkTitle: v2 Documentation 4 | slug: v2 5 | weight: 200 6 | --- 7 | 8 | {{% cobalt-api-docs %}} 9 | -------------------------------------------------------------------------------- /content/en/Domains: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /content/en/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Search Results 3 | type: search 4 | layout: search 5 | toc_hide: true 6 | --- 7 | 8 | -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- 1 | version: "3.3" 2 | 3 | services: 4 | 5 | site: 6 | image: docsy/docsy-example 7 | build: 8 | context: . 9 | command: server 10 | ports: 11 | - "1313:1313" 12 | volumes: 13 | - .:/src 14 | -------------------------------------------------------------------------------- /layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- 1 | {{ template "_default/_markup/td-render-heading.html" . }} 2 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ .Render "content" }} 3 | {{ end }} -------------------------------------------------------------------------------- /layouts/network-service-discovery-intro.md: -------------------------------------------------------------------------------- 1 | After gathering all available information, our pentesters probe the resources of the targeted organization. These tests involve several stages. -------------------------------------------------------------------------------- /layouts/partials/feedback.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/partials/page-meta-lastmod.html: -------------------------------------------------------------------------------- 1 | {{ T "post_last_mod" }} {{ .Site.Lastmod | time.Format .Site.Params.time_format_default }} 2 | -------------------------------------------------------------------------------- /layouts/redirect/single.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /layouts/shortcodes/2fa-see-troubleshooting.md: -------------------------------------------------------------------------------- 1 | If you have problems signing in with 2FA, see our [troubleshooting tips](/platform-deep-dive/cobalt-account/account-recovery/#problems-with-two-factor-authentication). -------------------------------------------------------------------------------- /layouts/shortcodes/accepted-risk-intro.md: -------------------------------------------------------------------------------- 1 | Once you've analyzed a finding, you may want to accept it if: 2 | 3 | - The risk associated with the vulnerability is low; or 4 | - You plan to mitigate the finding in a way that doesn't involve an actual technical fix. -------------------------------------------------------------------------------- /layouts/shortcodes/aggregated-risk-definition.md: -------------------------------------------------------------------------------- 1 | Aggregated Risk is the sum of the risks of individual findings discovered in a pentest. -------------------------------------------------------------------------------- /layouts/shortcodes/agile-pentest.md: -------------------------------------------------------------------------------- 1 | An Agile Pentest performed by Cobalt pentesters focuses on code changes or a specific area of an asset and comes with an Automated Report intended for internal use -------------------------------------------------------------------------------- /layouts/shortcodes/api-scan-tools-part.md: -------------------------------------------------------------------------------- 1 | Our pentesters may use scanning tools, including: 2 | 3 | - Burp Suite Community/Professional Edition 4 | - OWASP Zed Attack Proxy (ZAP) 5 | -------------------------------------------------------------------------------- /layouts/shortcodes/api-scan-tools.md: -------------------------------------------------------------------------------- 1 | Our pentesters may use scanning tools, including: 2 | 3 | - Burp Suite Community/Professional Edition 4 | - testssl.sh 5 | - [Dirble](https://github.com/nccgroup/dirble) 6 | - OWASP Zed Attack Proxy (ZAP) 7 | -------------------------------------------------------------------------------- /layouts/shortcodes/api-token.md: -------------------------------------------------------------------------------- 1 | YOUR-PERSONAL-API-TOKEN -------------------------------------------------------------------------------- /layouts/shortcodes/api-what-you-need.md: -------------------------------------------------------------------------------- 1 | - [Personal API token](/cobalt-api/create-personal-api-token/): `YOUR-PERSONAL-API-TOKEN` 2 | - [Organization token](/cobalt-api/get-organization-token/): `YOUR-V2-ORGANIZATION-TOKEN` -------------------------------------------------------------------------------- /layouts/shortcodes/asset-categories.html: -------------------------------------------------------------------------------- 1 | - Web apps 2 | - External networks 3 | - Internal networks 4 | - Mobile apps 5 | - APIs 6 | - Cloud configuration (AWS, Azure, GCP) 7 | -------------------------------------------------------------------------------- /layouts/shortcodes/asset-definition.md: -------------------------------------------------------------------------------- 1 | An asset is a either a software component of value, such as a web application or API, or a network environment. 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/asset-id.md: -------------------------------------------------------------------------------- 1 | YOUR-ASSET-IDENTIFIER -------------------------------------------------------------------------------- /layouts/shortcodes/asset-tag-definition.md: -------------------------------------------------------------------------------- 1 | An asset tag is customer-defined metadata associated with a Cobalt asset. -------------------------------------------------------------------------------- /layouts/shortcodes/assign-contact-intro.md: -------------------------------------------------------------------------------- 1 | Cobalt Staff members and pentesters may reach out to the person assigned as the point of contact with questions regarding the pentest. -------------------------------------------------------------------------------- /layouts/shortcodes/attestation-letter.md: -------------------------------------------------------------------------------- 1 | A one-page report suitable for external stakeholders. Includes the following: -------------------------------------------------------------------------------- /layouts/shortcodes/attestation-report.md: -------------------------------------------------------------------------------- 1 | A report similar to [Customer Letter](/getting-started/glossary/#customer-letter), with additional details: -------------------------------------------------------------------------------- /layouts/shortcodes/azure-ad-definition.md: -------------------------------------------------------------------------------- 1 | Azure Active Directory (AD) is a cloud-based identity and access management solution by Microsoft. -------------------------------------------------------------------------------- /layouts/shortcodes/beta-integrations-list.md: -------------------------------------------------------------------------------- 1 | - Asana 2 | - Bitbucket Issues 3 | - PagerDuty 4 | - PivotalTracker 5 | - ServiceNow 6 | - Trello 7 | - Zendesk 8 | -------------------------------------------------------------------------------- /layouts/shortcodes/beta-label.html: -------------------------------------------------------------------------------- 1 | Beta -------------------------------------------------------------------------------- /layouts/shortcodes/cobalt-api-docs-redirect.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /layouts/shortcodes/cobalt-average-definition.md: -------------------------------------------------------------------------------- 1 | Cobalt Average for a given year is the average of the [Aggregated Risk](/getting-started/glossary/#aggregated-risk) of all pentests conducted across all customers in that year. -------------------------------------------------------------------------------- /layouts/shortcodes/cobalt-credits.md: -------------------------------------------------------------------------------- 1 | [Cobalt credits](https://www.cobalt.io/pentest-pricing#cobaltcredits) -------------------------------------------------------------------------------- /layouts/shortcodes/cobranding-first-steps.md: -------------------------------------------------------------------------------- 1 | 1. Select the organization in the upper-left corner. 2 | 1. Navigate to the **Settings** page. -------------------------------------------------------------------------------- /layouts/shortcodes/code-webui-port-forward.html: -------------------------------------------------------------------------------- 1 | 2 |
export NAMESPACE=istio-system
3 |    kubectl port-forward -n ${NAMESPACE} svc/istio-ingressgateway 8080:80
-------------------------------------------------------------------------------- /layouts/shortcodes/coming-soon.html: -------------------------------------------------------------------------------- 1 | Coming Soon 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/compromised-account-action.md: -------------------------------------------------------------------------------- 1 | We'll temporarily lock your account and open an investigation. -------------------------------------------------------------------------------- /layouts/shortcodes/count-user-roles.md: -------------------------------------------------------------------------------- 1 | Determine User Roles based on personas, or target user groups of your asset. Group user permissions into several levels, and count the number of such groups. -------------------------------------------------------------------------------- /layouts/shortcodes/credit-definition.md: -------------------------------------------------------------------------------- 1 | A **Cobalt credit** is a standardized unit of work that represents 8 pentesting hours. -------------------------------------------------------------------------------- /layouts/shortcodes/csm-support-link.html: -------------------------------------------------------------------------------- 1 | your Customer Success Manager (CSM) or support@cobalt.io -------------------------------------------------------------------------------- /layouts/shortcodes/csm-support.md: -------------------------------------------------------------------------------- 1 | your Customer Success Manager (CSM) or support@cobalt.io -------------------------------------------------------------------------------- /layouts/shortcodes/customer-letter.md: -------------------------------------------------------------------------------- 1 | An executive summary of the pentest. May be used as a certificate of completion. Great for external stakeholders. Includes: -------------------------------------------------------------------------------- /layouts/shortcodes/customize-report-tier.md: -------------------------------------------------------------------------------- 1 | If you've purchased an appropriate [PtaaS tier](https://www.cobalt.io/pentest-pricing), you can [customize](/platform-deep-dive/pentests/reports/customize-report/) the contents of some reports. -------------------------------------------------------------------------------- /layouts/shortcodes/download-pentest-report-steps.md: -------------------------------------------------------------------------------- 1 | 1. On the pentest page, navigate to **Report**. 2 | 2. For Comprehensive and In-House pentests, select the report type. 3 | 3. Select **Download**. 4 | -------------------------------------------------------------------------------- /layouts/shortcodes/environment.md: -------------------------------------------------------------------------------- 1 | - Production (for end users) 2 | - Staging (proposed future production environment) 3 | - Development (asset in work) -------------------------------------------------------------------------------- /layouts/shortcodes/farid.md: -------------------------------------------------------------------------------- 1 | [Farid Luhar](https://www.linkedin.com/in/farid-luhar/) -------------------------------------------------------------------------------- /layouts/shortcodes/finding-definition.md: -------------------------------------------------------------------------------- 1 | A finding is a vulnerability that a pentester reports during a pentest. -------------------------------------------------------------------------------- /layouts/shortcodes/finding-details.md: -------------------------------------------------------------------------------- 1 | - Vulnerability Type 2 | - Description 3 | - Affected URLs 4 | - Proof of Concept of the vulnerability 5 | - Severity 6 | - Suggested Fix 7 | -------------------------------------------------------------------------------- /layouts/shortcodes/full-report-findings.md: -------------------------------------------------------------------------------- 1 | A report that adds details of _every_ test finding to the [Full Report](/getting-started/glossary/#full-report). -------------------------------------------------------------------------------- /layouts/shortcodes/get-started-integrations.md: -------------------------------------------------------------------------------- 1 | To get started, navigate to the **Integrations** page in the Cobalt app. -------------------------------------------------------------------------------- /layouts/shortcodes/harsh-bothra.md: -------------------------------------------------------------------------------- 1 | [Harsh Bothra](https://harshbothra.tech/) -------------------------------------------------------------------------------- /layouts/shortcodes/idempotency-key.md: -------------------------------------------------------------------------------- 1 | A-UNIQUE-IDENTIFIER-TO-PREVENT-UNINTENTIONAL-DUPLICATION -------------------------------------------------------------------------------- /layouts/shortcodes/in-house-pentest-definition.md: -------------------------------------------------------------------------------- 1 | An In-House Pentest is a pentest that an organization performs on the Cobalt platform without involving Cobalt pentesters. -------------------------------------------------------------------------------- /layouts/shortcodes/learn-more-reports.md: -------------------------------------------------------------------------------- 1 | Learn more about [pentest reports](/platform-deep-dive/pentests/reports/). -------------------------------------------------------------------------------- /layouts/shortcodes/network-additional-testing.md: -------------------------------------------------------------------------------- 1 | Cobalt pentesters use various custom and publicly available tools throughout a pentest, such as: 2 | 3 | - Port scanners 4 | - Automated vulnerability scanners 5 | - HTTP proxies 6 | - Exploits 7 | - Custom scripts 8 | - Security applications -------------------------------------------------------------------------------- /layouts/shortcodes/network-manual-intro.md: -------------------------------------------------------------------------------- 1 | During manual assessment, Cobalt pentesters examine specific resources that they identified. In most cases, pentesters focus on visibly open services: -------------------------------------------------------------------------------- /layouts/shortcodes/network-manual-list.md: -------------------------------------------------------------------------------- 1 | - Web servers 2 | - FTP servers 3 | - Email servers 4 | - Firewalls 5 | - Routers 6 | - DNS servers -------------------------------------------------------------------------------- /layouts/shortcodes/network-manual-stages-intro.md: -------------------------------------------------------------------------------- 1 | While pentesters perform checks based on the specifics of a given situation, a common scenario involves examining the following: -------------------------------------------------------------------------------- /layouts/shortcodes/network-service-discovery-intro.md: -------------------------------------------------------------------------------- 1 | After gathering all available information, our pentesters probe the resources belonging to the targeted organization. These tests involve several stages: -------------------------------------------------------------------------------- /layouts/shortcodes/new-label.html: -------------------------------------------------------------------------------- 1 | New -------------------------------------------------------------------------------- /layouts/shortcodes/org-member-definition.md: -------------------------------------------------------------------------------- 1 | An Organization Member is a customer representative who manages pentests and assets for their organization on the Cobalt platform but has less permissions compared to an Organization Owner. In the Cobalt UI, you'll see this user role as "Member." -------------------------------------------------------------------------------- /layouts/shortcodes/org-token.md: -------------------------------------------------------------------------------- 1 | YOUR-V2-ORGANIZATION-TOKEN -------------------------------------------------------------------------------- /layouts/shortcodes/osstmm-methodology.md: -------------------------------------------------------------------------------- 1 | Cobalt follows an industry-standard methodology primarily based on the [Open Source Security Testing Methodology Manual (OSSTMM)](https://www.isecom.org/OSSTMM.3.pdf). 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/pageinfo.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 | {{ $color := .Get "color" | default "primary" }} 3 |
4 | {{ .Inner }} 5 |
6 | -------------------------------------------------------------------------------- /layouts/shortcodes/params.html: -------------------------------------------------------------------------------- 1 | 2 | {{- .Page.Param (.Get 0) -}} -------------------------------------------------------------------------------- /layouts/shortcodes/payloadartist.md: -------------------------------------------------------------------------------- 1 | [payloadartist](https://twitter.com/payloadartist) -------------------------------------------------------------------------------- /layouts/shortcodes/pentest-big-scope.md: -------------------------------------------------------------------------------- 1 | Pentests requiring more than 20 credits don’t get immediate credit confirmation. We’ll specify the number of required credits after reviewing the pentest. 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/pentest-rigor.md: -------------------------------------------------------------------------------- 1 | Our pentesters test your assets rigorously. 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/process-findings.md: -------------------------------------------------------------------------------- 1 | - Fix the finding and [submit it for retest](/platform-deep-dive/pentests/findings/remediate-findings/#submit-a-finding-for-retest) 2 | - [Mark the finding as Accepted Risk](/platform-deep-dive/pentests/findings/remediate-findings/#mark-a-finding-as-accepted-risk) -------------------------------------------------------------------------------- /layouts/shortcodes/ptaas-tier.md: -------------------------------------------------------------------------------- 1 | [PtaaS tier](https://www.cobalt.io/pentest-pricing) -------------------------------------------------------------------------------- /layouts/shortcodes/remove-from-all-pentests.md: -------------------------------------------------------------------------------- 1 | As an Organization Owner, you can remove a Pentest Team Member—who doesn't belong to the organization—from all pentests they collaborate on. -------------------------------------------------------------------------------- /layouts/shortcodes/resolved-finding-states.md: -------------------------------------------------------------------------------- 1 | the following [states](/platform-deep-dive/pentests/findings/finding-states/): 2 | - Accepted Risk 3 | - Fixed -------------------------------------------------------------------------------- /layouts/shortcodes/shashank.md: -------------------------------------------------------------------------------- 1 | [Shashank Dixit](https://www.linkedin.com/in/shashankpramoddixit/) -------------------------------------------------------------------------------- /layouts/shortcodes/sign-in.md: -------------------------------------------------------------------------------- 1 | [Sign In](https://app.us.cobalt.io/) 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/sso-definition.md: -------------------------------------------------------------------------------- 1 | Single sign-on (SSO) is an authentication method that allows users to access multiple independent systems with a single set of credentials. -------------------------------------------------------------------------------- /layouts/shortcodes/tf-serving-version.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | v1 -------------------------------------------------------------------------------- /layouts/shortcodes/tier-feature-html.html: -------------------------------------------------------------------------------- 1 | The availability of this feature depends on your PtaaS tier. -------------------------------------------------------------------------------- /layouts/shortcodes/tier-feature.md: -------------------------------------------------------------------------------- 1 | The availability of this feature depends on your [PtaaS tier](https://www.cobalt.io/pentest-pricing). -------------------------------------------------------------------------------- /layouts/shortcodes/unstabl3.html: -------------------------------------------------------------------------------- 1 | [Shubham Chaskar](https://shubhamchaskar.com/) -------------------------------------------------------------------------------- /layouts/shortcodes/user-role.md: -------------------------------------------------------------------------------- 1 | A User Role is a user group within an application with specific permissions, such as an administrator, manager, or guest. -------------------------------------------------------------------------------- /layouts/shortcodes/various-tools.md: -------------------------------------------------------------------------------- 1 | The tools that our pentesters use during each phase may vary from test to test. 2 | -------------------------------------------------------------------------------- /static/VSCodeDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/VSCodeDemo.png -------------------------------------------------------------------------------- /static/_redirects: -------------------------------------------------------------------------------- 1 | # Redirects from what the browser requests to what we serve 2 | -------------------------------------------------------------------------------- /static/bestprac/Content_Contributor_Agreement_Template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/bestprac/Content_Contributor_Agreement_Template.pdf -------------------------------------------------------------------------------- /static/bestprac/deserialization-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/bestprac/deserialization-diagram.jpg -------------------------------------------------------------------------------- /static/cobalt-api/create-personal-API-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/cobalt-api/create-personal-API-token.png -------------------------------------------------------------------------------- /static/cobalt-api/findings-imported-to-Google-Sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/cobalt-api/findings-imported-to-Google-Sheets.png -------------------------------------------------------------------------------- /static/cobalt-api/manage-personal-API-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/cobalt-api/manage-personal-API-tokens.png -------------------------------------------------------------------------------- /static/deepdive/API-tokens-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/API-tokens-page.png -------------------------------------------------------------------------------- /static/deepdive/AcceptedRiskFinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/AcceptedRiskFinding.png -------------------------------------------------------------------------------- /static/deepdive/AcceptedRiskReason.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/AcceptedRiskReason.png -------------------------------------------------------------------------------- /static/deepdive/AcceptedRiskReasons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/AcceptedRiskReasons.png -------------------------------------------------------------------------------- /static/deepdive/AddCredits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/AddCredits.png -------------------------------------------------------------------------------- /static/deepdive/AddPentestTeamMembers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/AddPentestTeamMembers.png -------------------------------------------------------------------------------- /static/deepdive/AssetDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/AssetDetails.png -------------------------------------------------------------------------------- /static/deepdive/AssetsPageOverviewCallouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/AssetsPageOverviewCallouts.png -------------------------------------------------------------------------------- /static/deepdive/ChangeUserRole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/ChangeUserRole.png -------------------------------------------------------------------------------- /static/deepdive/Check2FAStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Check2FAStatus.png -------------------------------------------------------------------------------- /static/deepdive/Cobalt-IdP-initiated-SAML-SSO-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Cobalt-IdP-initiated-SAML-SSO-process.png -------------------------------------------------------------------------------- /static/deepdive/Cobalt-Okta-SAML-app-update-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Cobalt-Okta-SAML-app-update-1.png -------------------------------------------------------------------------------- /static/deepdive/Cobalt-Okta-SAML-app-update-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Cobalt-Okta-SAML-app-update-2.png -------------------------------------------------------------------------------- /static/deepdive/Cobalt-configuration-for-Okta-manual-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Cobalt-configuration-for-Okta-manual-app-1.png -------------------------------------------------------------------------------- /static/deepdive/Cobalt-configuration-for-Okta-manual-app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Cobalt-configuration-for-Okta-manual-app-2.png -------------------------------------------------------------------------------- /static/deepdive/Cobalt-configuration-for-Okta-preintegrated-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Cobalt-configuration-for-Okta-preintegrated-app-1.png -------------------------------------------------------------------------------- /static/deepdive/Cobalt-configuration-for-Okta-preintegrated-app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Cobalt-configuration-for-Okta-preintegrated-app-2.png -------------------------------------------------------------------------------- /static/deepdive/Cobalt-configuration-for-Okta-preintegrated-app-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Cobalt-configuration-for-Okta-preintegrated-app-3.png -------------------------------------------------------------------------------- /static/deepdive/CopyRecoveryCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/CopyRecoveryCode.png -------------------------------------------------------------------------------- /static/deepdive/CoverageChecklistOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/CoverageChecklistOverview.png -------------------------------------------------------------------------------- /static/deepdive/CoverageChecklistPentester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/CoverageChecklistPentester.png -------------------------------------------------------------------------------- /static/deepdive/CreateNewAsset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/CreateNewAsset.png -------------------------------------------------------------------------------- /static/deepdive/CreditsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/CreditsPage.png -------------------------------------------------------------------------------- /static/deepdive/CustomizePentestReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/CustomizePentestReport.png -------------------------------------------------------------------------------- /static/deepdive/CustomizedReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/CustomizedReport.png -------------------------------------------------------------------------------- /static/deepdive/EditAcceptedRisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/EditAcceptedRisk.png -------------------------------------------------------------------------------- /static/deepdive/ExampleCobrandedReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/ExampleCobrandedReport.png -------------------------------------------------------------------------------- /static/deepdive/FilterFindingsbyState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/FilterFindingsbyState.png -------------------------------------------------------------------------------- /static/deepdive/FilterPendingFixFindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/FilterPendingFixFindings.png -------------------------------------------------------------------------------- /static/deepdive/Findings-org-view-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Findings-org-view-2.png -------------------------------------------------------------------------------- /static/deepdive/FollowFinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/FollowFinding.png -------------------------------------------------------------------------------- /static/deepdive/Groups_CreateForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Groups_CreateForm.png -------------------------------------------------------------------------------- /static/deepdive/Groups_MainPageandActions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Groups_MainPageandActions.png -------------------------------------------------------------------------------- /static/deepdive/Groups_ViewPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Groups_ViewPage.png -------------------------------------------------------------------------------- /static/deepdive/InsightsAllFindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/InsightsAllFindings.png -------------------------------------------------------------------------------- /static/deepdive/InsightsAllFindingsByType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/InsightsAllFindingsByType.png -------------------------------------------------------------------------------- /static/deepdive/InsightsFindingsByStatusAndSeverity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/InsightsFindingsByStatusAndSeverity.png -------------------------------------------------------------------------------- /static/deepdive/InsightsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/InsightsPage.png -------------------------------------------------------------------------------- /static/deepdive/InsightsRiskOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/InsightsRiskOverview.png -------------------------------------------------------------------------------- /static/deepdive/InsightsTimeToFixBySeverity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/InsightsTimeToFixBySeverity.png -------------------------------------------------------------------------------- /static/deepdive/InviteUsersOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/InviteUsersOverlay.png -------------------------------------------------------------------------------- /static/deepdive/Manage2FA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Manage2FA.png -------------------------------------------------------------------------------- /static/deepdive/MessagesChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/MessagesChat.png -------------------------------------------------------------------------------- /static/deepdive/MessagesPentesterUpdates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/MessagesPentesterUpdates.png -------------------------------------------------------------------------------- /static/deepdive/Okta-SAML-configurations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Okta-SAML-configurations.png -------------------------------------------------------------------------------- /static/deepdive/Okta-app-username-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Okta-app-username-format.png -------------------------------------------------------------------------------- /static/deepdive/Okta-manual-app-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Okta-manual-app-attributes.png -------------------------------------------------------------------------------- /static/deepdive/OpenMessagesSidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/OpenMessagesSidebar.png -------------------------------------------------------------------------------- /static/deepdive/OpenPentesterUpdates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/OpenPentesterUpdates.png -------------------------------------------------------------------------------- /static/deepdive/OrganizationsList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/OrganizationsList.png -------------------------------------------------------------------------------- /static/deepdive/PartnerRole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/PartnerRole.png -------------------------------------------------------------------------------- /static/deepdive/PentestFlowSlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/PentestFlowSlack.png -------------------------------------------------------------------------------- /static/deepdive/PentestFlowWithSlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/PentestFlowWithSlack.png -------------------------------------------------------------------------------- /static/deepdive/PentestNotifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/PentestNotifications.png -------------------------------------------------------------------------------- /static/deepdive/PentestProcessFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/PentestProcessFlow.png -------------------------------------------------------------------------------- /static/deepdive/PentestReportTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/PentestReportTypes.png -------------------------------------------------------------------------------- /static/deepdive/PentestStates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/PentestStates.png -------------------------------------------------------------------------------- /static/deepdive/PeopleOrganization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/PeopleOrganization.png -------------------------------------------------------------------------------- /static/deepdive/PreviewRiskAdvisories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/PreviewRiskAdvisories.png -------------------------------------------------------------------------------- /static/deepdive/ReadyForRetestFinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/ReadyForRetestFinding.png -------------------------------------------------------------------------------- /static/deepdive/RemoveAuthenticatorDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/RemoveAuthenticatorDevice.png -------------------------------------------------------------------------------- /static/deepdive/RemoveCollaboratorFromAllPentests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/RemoveCollaboratorFromAllPentests.png -------------------------------------------------------------------------------- /static/deepdive/ReportBranding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/ReportBranding.png -------------------------------------------------------------------------------- /static/deepdive/ReportSections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/ReportSections.png -------------------------------------------------------------------------------- /static/deepdive/SAML-enforcement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/SAML-enforcement.png -------------------------------------------------------------------------------- /static/deepdive/SampleSlackFinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/SampleSlackFinding.png -------------------------------------------------------------------------------- /static/deepdive/SetupAuthenticatorDuringSignin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/SetupAuthenticatorDuringSignin.png -------------------------------------------------------------------------------- /static/deepdive/SeverityLevels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/SeverityLevels.png -------------------------------------------------------------------------------- /static/deepdive/SlackChannelOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/SlackChannelOpen.png -------------------------------------------------------------------------------- /static/deepdive/SubscriptionPlanCreditsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/SubscriptionPlanCreditsPage.png -------------------------------------------------------------------------------- /static/deepdive/TurnOff2FA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/TurnOff2FA.png -------------------------------------------------------------------------------- /static/deepdive/Updated_ACS_URL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/Updated_ACS_URL.png -------------------------------------------------------------------------------- /static/deepdive/ViewActivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/ViewActivity.png -------------------------------------------------------------------------------- /static/deepdive/ViewAllNotifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/ViewAllNotifications.png -------------------------------------------------------------------------------- /static/deepdive/ViewFindingsSummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/ViewFindingsSummary.png -------------------------------------------------------------------------------- /static/deepdive/add-technology-for-asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/add-technology-for-asset.png -------------------------------------------------------------------------------- /static/deepdive/configure-SAML-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/configure-SAML-overlay.png -------------------------------------------------------------------------------- /static/deepdive/configure-non-gallery-SAML-app-in-Okta-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/configure-non-gallery-SAML-app-in-Okta-1.png -------------------------------------------------------------------------------- /static/deepdive/configure-non-gallery-SAML-app-in-Okta-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/configure-non-gallery-SAML-app-in-Okta-2.png -------------------------------------------------------------------------------- /static/deepdive/configure-non-gallery-SAML-app-in-Okta-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/configure-non-gallery-SAML-app-in-Okta-3.png -------------------------------------------------------------------------------- /static/deepdive/configure-saml-sso-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/configure-saml-sso-overlay.png -------------------------------------------------------------------------------- /static/deepdive/download-ASM-domains-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/download-ASM-domains-1.png -------------------------------------------------------------------------------- /static/deepdive/download-ASM-domains-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/download-ASM-domains-2.png -------------------------------------------------------------------------------- /static/deepdive/download-DAST-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/download-DAST-report.png -------------------------------------------------------------------------------- /static/deepdive/download-credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/download-credits.png -------------------------------------------------------------------------------- /static/deepdive/download-engagement-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/download-engagement-report.png -------------------------------------------------------------------------------- /static/deepdive/download-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/download-findings.png -------------------------------------------------------------------------------- /static/deepdive/download-insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/download-insights.png -------------------------------------------------------------------------------- /static/deepdive/download-pentest-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/download-pentest-findings.png -------------------------------------------------------------------------------- /static/deepdive/download-pentest-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/download-pentest-report.png -------------------------------------------------------------------------------- /static/deepdive/findings-organization-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/findings-organization-view.png -------------------------------------------------------------------------------- /static/deepdive/ipsandports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/ipsandports.png -------------------------------------------------------------------------------- /static/deepdive/listofdomains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/listofdomains.png -------------------------------------------------------------------------------- /static/deepdive/planning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/planning.png -------------------------------------------------------------------------------- /static/deepdive/scanadomain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/scanadomain.png -------------------------------------------------------------------------------- /static/deepdive/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/search.png -------------------------------------------------------------------------------- /static/deepdive/slug-acs-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/slug-acs-url.png -------------------------------------------------------------------------------- /static/deepdive/targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/deepdive/targets.png -------------------------------------------------------------------------------- /static/gsg/APIPentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/APIPentest.png -------------------------------------------------------------------------------- /static/gsg/AddDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/AddDetails.png -------------------------------------------------------------------------------- /static/gsg/AdditionalRequests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/AdditionalRequests.png -------------------------------------------------------------------------------- /static/gsg/AssetAttachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/AssetAttachments.png -------------------------------------------------------------------------------- /static/gsg/AssetType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/AssetType.png -------------------------------------------------------------------------------- /static/gsg/CircularPlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CircularPlan.png -------------------------------------------------------------------------------- /static/gsg/CloudPentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CloudPentest.png -------------------------------------------------------------------------------- /static/gsg/CloudPlatformDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CloudPlatformDetails.png -------------------------------------------------------------------------------- /static/gsg/Cobalt-sign-in-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/Cobalt-sign-in-page.png -------------------------------------------------------------------------------- /static/gsg/Collaborator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/Collaborator.png -------------------------------------------------------------------------------- /static/gsg/CreatePentestFlowFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CreatePentestFlowFull.png -------------------------------------------------------------------------------- /static/gsg/CreatePentestFlowStage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CreatePentestFlowStage1.png -------------------------------------------------------------------------------- /static/gsg/CreatePentestFlowStage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CreatePentestFlowStage2.png -------------------------------------------------------------------------------- /static/gsg/CreatePentestFlowStage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CreatePentestFlowStage3.png -------------------------------------------------------------------------------- /static/gsg/CreatePentestFlowStage4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CreatePentestFlowStage4.png -------------------------------------------------------------------------------- /static/gsg/CreatePentestFlowStage5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CreatePentestFlowStage5.png -------------------------------------------------------------------------------- /static/gsg/CreatePentestFlowStage6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CreatePentestFlowStage6.png -------------------------------------------------------------------------------- /static/gsg/CreatePentestFlowStage7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/CreatePentestFlowStage7.png -------------------------------------------------------------------------------- /static/gsg/EditPentestSubmitForReview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/EditPentestSubmitForReview.png -------------------------------------------------------------------------------- /static/gsg/InstructionsForPentesters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/InstructionsForPentesters.png -------------------------------------------------------------------------------- /static/gsg/LetsGetStartedScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/LetsGetStartedScreen.png -------------------------------------------------------------------------------- /static/gsg/LetsGetStartedScreen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/LetsGetStartedScreen2.png -------------------------------------------------------------------------------- /static/gsg/PentestDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/PentestDetails.png -------------------------------------------------------------------------------- /static/gsg/PentestObjectives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/PentestObjectives.png -------------------------------------------------------------------------------- /static/gsg/PentestTargets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/PentestTargets.png -------------------------------------------------------------------------------- /static/gsg/PentestWizardAsset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/PentestWizardAsset.png -------------------------------------------------------------------------------- /static/gsg/PentesterLimits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/PentesterLimits.png -------------------------------------------------------------------------------- /static/gsg/README.md: -------------------------------------------------------------------------------- 1 | The static/gsg directory includes screenshots for the Getting Started Guide. -------------------------------------------------------------------------------- /static/gsg/RateControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/RateControls.png -------------------------------------------------------------------------------- /static/gsg/ReviewAsset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/ReviewAsset.png -------------------------------------------------------------------------------- /static/gsg/SampleSlackComm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/SampleSlackComm1.png -------------------------------------------------------------------------------- /static/gsg/ScheduleScopePentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/ScheduleScopePentest.png -------------------------------------------------------------------------------- /static/gsg/SetRequirements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/SetRequirements.png -------------------------------------------------------------------------------- /static/gsg/TargetEnvironment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/TargetEnvironment.png -------------------------------------------------------------------------------- /static/gsg/TechnologyStack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/TechnologyStack.png -------------------------------------------------------------------------------- /static/gsg/TestCredentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/TestCredentials.png -------------------------------------------------------------------------------- /static/gsg/WebOrAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/WebOrAPI.png -------------------------------------------------------------------------------- /static/gsg/asset-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/asset-details.png -------------------------------------------------------------------------------- /static/gsg/asset-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/asset-tags.png -------------------------------------------------------------------------------- /static/gsg/pentest-planning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/pentest-planning.png -------------------------------------------------------------------------------- /static/gsg/pentest-scoping-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/pentest-scoping-api.png -------------------------------------------------------------------------------- /static/gsg/pentest-scoping-cloud-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/pentest-scoping-cloud-config.png -------------------------------------------------------------------------------- /static/gsg/pentest-scoping-ip-addresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/pentest-scoping-ip-addresses.png -------------------------------------------------------------------------------- /static/gsg/pentest-scoping-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/pentest-scoping-mobile.png -------------------------------------------------------------------------------- /static/gsg/pentest-scoping-web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/pentest-scoping-web-app.png -------------------------------------------------------------------------------- /static/gsg/pentest-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/pentest-tag.png -------------------------------------------------------------------------------- /static/gsg/point-of-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/point-of-contact.png -------------------------------------------------------------------------------- /static/gsg/schedule-pentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/schedule-pentest.png -------------------------------------------------------------------------------- /static/gsg/scope-pentest-comprehensive-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/gsg/scope-pentest-comprehensive-options.png -------------------------------------------------------------------------------- /static/homepage/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/homepage/hero.png -------------------------------------------------------------------------------- /static/icons/ArrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/icons/ArrowLeft.png -------------------------------------------------------------------------------- /static/icons/Bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/icons/Bell.png -------------------------------------------------------------------------------- /static/icons/Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/icons/Chat.png -------------------------------------------------------------------------------- /static/icons/Flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/icons/Flash.png -------------------------------------------------------------------------------- /static/icons/Gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/icons/Gear.png -------------------------------------------------------------------------------- /static/icons/Slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/icons/Slack.png -------------------------------------------------------------------------------- /static/icons/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/icons/Trash.png -------------------------------------------------------------------------------- /static/icons/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/icons/Warning.png -------------------------------------------------------------------------------- /static/integrations/ADO-documentation-configuration-embed-click-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-documentation-configuration-embed-click-done.png -------------------------------------------------------------------------------- /static/integrations/ADO-documentation-configuration-embed-click-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-documentation-configuration-embed-click-save.png -------------------------------------------------------------------------------- /static/integrations/ADO-documentation-configuration-embed-create-work-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-documentation-configuration-embed-create-work-item.png -------------------------------------------------------------------------------- /static/integrations/ADO-documentation-configuration-embed-datapill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-documentation-configuration-embed-datapill.png -------------------------------------------------------------------------------- /static/integrations/ADO-documentation-configuration-embed-optional-fields-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-documentation-configuration-embed-optional-fields-overlay.png -------------------------------------------------------------------------------- /static/integrations/ADO-documentation-configuration-embed-optional-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-documentation-configuration-embed-optional-fields.png -------------------------------------------------------------------------------- /static/integrations/ADO-documentation-required-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-documentation-required-parameters.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-check-error-jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-check-error-jobs.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-configuration-status-gear-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-configuration-status-gear-icon.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-configuration-status-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-configuration-status-green.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-configuration-status-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-configuration-status-grey.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-restore-recipe-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-restore-recipe-version.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-syncs-edit-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-syncs-edit-button.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-syncs-switch-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-syncs-switch-off.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-syncs-switch-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-syncs-switch-on.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-troubleshoot-clear-cookies-cookies-site-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-troubleshoot-clear-cookies-cookies-site-data.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-troubleshoot-clear-cookies-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-troubleshoot-clear-cookies-delete.png -------------------------------------------------------------------------------- /static/integrations/ADO-integration-troubleshoot-clear-cookies-manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-integration-troubleshoot-clear-cookies-manage.png -------------------------------------------------------------------------------- /static/integrations/ADO-interation-show-recipe-versions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ADO-interation-show-recipe-versions.png -------------------------------------------------------------------------------- /static/integrations/AzureDevOps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/AzureDevOps.png -------------------------------------------------------------------------------- /static/integrations/Bitbucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Bitbucket.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-configure-plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-configure-plan.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-create-inhouse-pentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-create-inhouse-pentest.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-create-pentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-create-pentest.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-enter-inhouse-pentests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-enter-inhouse-pentests.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-get-started-with-inhouse-pentests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-get-started-with-inhouse-pentests.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-inhouse-pentests-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-inhouse-pentests-enabled.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-launch-pentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-launch-pentest.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-live-pentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-live-pentest.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-optional-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-optional-details.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-pending-fix-vuln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-pending-fix-vuln.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-pentest-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-pentest-created.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-pentest-planned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-pentest-planned.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-pentest-vulns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-pentest-vulns.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-plan-pentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-plan-pentest.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-rename-pentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-rename-pentest.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-secondary-user-invited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-secondary-user-invited.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-select-pending-fix-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-select-pending-fix-state.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-select-vulnerability-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-select-vulnerability-type.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-set-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-set-description.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-set-objectives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-set-objectives.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-set-poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-set-poc.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-set-severity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-set-severity.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-set-suggested-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-set-suggested-fix.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-set-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-set-targets.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-set-technology-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-set-technology-stack.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-submit-evaluation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-submit-evaluation.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-submit-finding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-submit-finding.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-submit-for-triage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-submit-for-triage.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-switch-role-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-switch-role-success.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-switch-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-switch-role.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-verify-secondary-user-added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-verify-secondary-user-added.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-verify-user-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-verify-user-role.png -------------------------------------------------------------------------------- /static/integrations/Create-test-finding-vuln-triaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Create-test-finding-vuln-triaging.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-add-api-scan-configuration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-add-api-scan-configuration-1.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-add-api-scan-configuration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-add-api-scan-configuration-2.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-add-api-scan-configuration-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-add-api-scan-configuration-3.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-add-tool-configuration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-add-tool-configuration-1.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-add-tool-configuration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-add-tool-configuration-2.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-add-tool-configuration-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-add-tool-configuration-3.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-add-tool-type-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-add-tool-type-1.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-add-tool-type-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-add-tool-type-2.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-add-tool-type-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-add-tool-type-3.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-import-findings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-import-findings-1.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-import-findings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-import-findings-2.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-import-findings-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-import-findings-3.png -------------------------------------------------------------------------------- /static/integrations/DefectDojo-import-findings-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/DefectDojo-import-findings-4.png -------------------------------------------------------------------------------- /static/integrations/Defectdojo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Defectdojo.png -------------------------------------------------------------------------------- /static/integrations/Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Github.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-change-external-id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-change-external-id.gif -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-configure-external-url.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-configure-external-url.gif -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-configure-finding-state-change-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-configure-finding-state-change-trigger.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-configure-from-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-configure-from-setting.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-customize-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-customize-recipe.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-disallow-any-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-disallow-any-status.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-filter-by-asset-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-filter-by-asset-1.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-filter-by-asset-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-filter-by-asset-2.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-filter-by-asset-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-filter-by-asset-3.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-hover-datapill.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-hover-datapill.gif -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-issue-filter-condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-issue-filter-condition.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-manage-statuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-manage-statuses.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-manage-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-manage-workflow.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-native-jira-cloud-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-native-jira-cloud-configuration.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-open-integration-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-open-integration-builder.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-sample-jira-cloud-project-workflow-initial-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-sample-jira-cloud-project-workflow-initial-state.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-sample-jira-cloud-project-workflow-modified-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-sample-jira-cloud-project-workflow-modified-state.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-save-and-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-save-and-copy.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-save-exit-start-recipe-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-save-exit-start-recipe-1.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-save-exit-start-recipe-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-save-exit-start-recipe-2.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-search-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-search-recipe.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-select-datapill.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-select-datapill.gif -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-select-project-issue-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-select-project-issue-type.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-use-labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-use-labels-1.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-use-labels-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-use-labels-2.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-use-labels-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-use-labels-3.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-use-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-use-recipe.png -------------------------------------------------------------------------------- /static/integrations/Jira-Cloud-migration-workflow-transition-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira-Cloud-migration-workflow-transition-name.png -------------------------------------------------------------------------------- /static/integrations/Jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jira.png -------------------------------------------------------------------------------- /static/integrations/Jupiterone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Jupiterone.png -------------------------------------------------------------------------------- /static/integrations/Kenna-Security-create-data-importer-connector-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kenna-Security-create-data-importer-connector-1.png -------------------------------------------------------------------------------- /static/integrations/Kenna-Security-create-data-importer-connector-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kenna-Security-create-data-importer-connector-2.png -------------------------------------------------------------------------------- /static/integrations/Kenna-Security-create-data-importer-connector-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kenna-Security-create-data-importer-connector-3.png -------------------------------------------------------------------------------- /static/integrations/Kenna-Security-create-data-importer-connector-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kenna-Security-create-data-importer-connector-4.png -------------------------------------------------------------------------------- /static/integrations/Kenna-Security-create-data-importer-connector-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kenna-Security-create-data-importer-connector-5.png -------------------------------------------------------------------------------- /static/integrations/Kenna-Security-create-data-importer-connector-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kenna-Security-create-data-importer-connector-6.png -------------------------------------------------------------------------------- /static/integrations/Kenna-Security-view-findings-AppSec-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kenna-Security-view-findings-AppSec-1.png -------------------------------------------------------------------------------- /static/integrations/Kenna-Security-view-findings-AppSec-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kenna-Security-view-findings-AppSec-2.png -------------------------------------------------------------------------------- /static/integrations/Kenna-Security-view-findings-VM-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kenna-Security-view-findings-VM-1.png -------------------------------------------------------------------------------- /static/integrations/Kenna-Security-view-findings-VM-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kenna-Security-view-findings-VM-2.png -------------------------------------------------------------------------------- /static/integrations/Kennasecurity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Kennasecurity.png -------------------------------------------------------------------------------- /static/integrations/OneTrust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/OneTrust.png -------------------------------------------------------------------------------- /static/integrations/PlexTrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/PlexTrac.png -------------------------------------------------------------------------------- /static/integrations/ServiceNow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/ServiceNow.png -------------------------------------------------------------------------------- /static/integrations/Slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Slack.png -------------------------------------------------------------------------------- /static/integrations/Tugboatlogic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Tugboatlogic.png -------------------------------------------------------------------------------- /static/integrations/Webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/Webhooks.png -------------------------------------------------------------------------------- /static/integrations/anecdotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/anecdotes.png -------------------------------------------------------------------------------- /static/integrations/auto-push-toggle-for-Jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/auto-push-toggle-for-Jira.png -------------------------------------------------------------------------------- /static/integrations/carry-over-findings/DEFAULT_INT_SETTINGS_CARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/carry-over-findings/DEFAULT_INT_SETTINGS_CARD.png -------------------------------------------------------------------------------- /static/integrations/carry-over-findings/DEFAULT_INT_SETTINGS_MODAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/carry-over-findings/DEFAULT_INT_SETTINGS_MODAL.png -------------------------------------------------------------------------------- /static/integrations/carry-over-findings/carryover-ticket-handling-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/carry-over-findings/carryover-ticket-handling-config.png -------------------------------------------------------------------------------- /static/integrations/cobalt-severity-level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/cobalt-severity-level.png -------------------------------------------------------------------------------- /static/integrations/configure-jira-cloud-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/configure-jira-cloud-integration.png -------------------------------------------------------------------------------- /static/integrations/configure-jira-dc-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/configure-jira-dc-integration.png -------------------------------------------------------------------------------- /static/integrations/configure-jira-integration-for-pentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/configure-jira-integration-for-pentest.png -------------------------------------------------------------------------------- /static/integrations/configure-jira-server-dc-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/configure-jira-server-dc-integration.png -------------------------------------------------------------------------------- /static/integrations/create-webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/create-webhook.png -------------------------------------------------------------------------------- /static/integrations/delete-jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/delete-jira.png -------------------------------------------------------------------------------- /static/integrations/enable-jira-server-logs-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/enable-jira-server-logs-1.png -------------------------------------------------------------------------------- /static/integrations/enable-jira-server-logs-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/enable-jira-server-logs-2.png -------------------------------------------------------------------------------- /static/integrations/enable-jira-server-logs-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/enable-jira-server-logs-3.png -------------------------------------------------------------------------------- /static/integrations/enable-jira-server-logs-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/enable-jira-server-logs-4.png -------------------------------------------------------------------------------- /static/integrations/external-issue-tracking-jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/external-issue-tracking-jira.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/connect_your_apps/delete_connection/delete_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/connect_your_apps/delete_connection/delete_connection.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/connect_your_apps/edit_connection/select_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/connect_your_apps/edit_connection/select_connection.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/connect_your_apps/set_up_connection/folder_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/connect_your_apps/set_up_connection/folder_view.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/connect_your_apps/set_up_connection/select_connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/connect_your_apps/set_up_connection/select_connector.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/findings_outlook_notifications/create_connection_step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/findings_outlook_notifications/create_connection_step1.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/findings_outlook_notifications/create_connection_step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/findings_outlook_notifications/create_connection_step2.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/findings_outlook_notifications/create_connection_step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/findings_outlook_notifications/create_connection_step3.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/findings_outlook_notifications/create_connection_step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/findings_outlook_notifications/create_connection_step4.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/findings_outlook_notifications/running_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/findings_outlook_notifications/running_recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/findings_outlook_notifications/start_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/findings_outlook_notifications/start_recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/01-select-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/01-select-project.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/02-create-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/02-create-connection.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/03-all-connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/03-all-connections.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/04-find-gitlab-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/04-find-gitlab-connection.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/05-gitlab-connection-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/05-gitlab-connection-data.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/06-gitlab-connection-auth-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/06-gitlab-connection-auth-type.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/08-connection-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/08-connection-connected.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/09-new-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/09-new-folder.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/10-new-folder-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/10-new-folder-data.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/11-folder-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/11-folder-created.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/12-find-community-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/12-find-community-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/13-use-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/13-use-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/14-copy-and-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/14-copy-and-save.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/15-customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/15-customize.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/16-recipe-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/16-recipe-error.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/17-click-step-with-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/17-click-step-with-error.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/18-select-gitlab-project-and-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/18-select-gitlab-project-and-save.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/19-start-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/19-start-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/gitlab/20-recipe-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/gitlab/20-recipe-running.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/01-create-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/01-create-folder.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/02-create-folder-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/02-create-folder-modal.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/03-create-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/03-create-connection.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/05-connection-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/05-connection-details.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/06-azure-devops-pat-scopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/06-azure-devops-pat-scopes.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/07-connection-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/07-connection-connected.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/08-search-create-work-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/08-search-create-work-item.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/09-use-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/09-use-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/10-recipe-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/10-recipe-location.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/11-customize-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/11-customize-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/12-create-work-item-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/12-create-work-item-error.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/13-create-work-item-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/13-create-work-item-fix.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/14-work-item-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/14-work-item-description.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/15-upload-attachment-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/15-upload-attachment-error.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/16-upload-attachment-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/16-upload-attachment-fix.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/18-start-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/18-start-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/19-recipe-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/19-recipe-running.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/azure-devops/21-work-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/azure-devops/21-work-item.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/data_pill_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/data_pill_mapping.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/01_create-connection-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/01_create-connection-start.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/02_new-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/02_new-connection.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/03_connect-to-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/03_connect-to-github.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/04_oauth-authorize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/04_oauth-authorize.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/05_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/05_connected.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/06_create-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/06_create-folder.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/07_name-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/07_name-folder.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/08_folder-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/08_folder-created.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/09_recipe-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/09_recipe-library.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/10_select-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/10_select-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/11_use-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/11_use-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/12_copy-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/12_copy-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/13_copy-and-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/13_copy-and-save.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/14_customize-recipe-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/14_customize-recipe-start.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/15_customize-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/15_customize-error.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/16_customize-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/16_customize-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/17_save-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/17_save-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/18_exit-recipe-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/18_exit-recipe-editor.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/19_start-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/19_start-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/20_recipe-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/20_recipe-running.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/21_stop-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/21_stop-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/22_edit-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/22_edit-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/23_recipe-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/23_recipe-editor.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/24_customizable-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/24_customizable-fields.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/25_optional-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/25_optional-fields.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/26_select-optional-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/26_select-optional-fields.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/27_update-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/27_update-trigger.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/28_trigger-asset-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/28_trigger-asset-field.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/29_trigger-asset-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/29_trigger-asset-selected.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/30_trigger-pentest-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/30_trigger-pentest-field.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/31_trigger-pentest-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/31_trigger-pentest-selected.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/github/32_trigger-reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/github/32_trigger-reset.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/01-create-http-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/01-create-http-folder.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/02-create-http-folder-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/02-create-http-folder-modal.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/03-create-connection-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/03-create-connection-folder.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/04-create-connection-folder-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/04-create-connection-folder-modal.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/05-create-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/05-create-connection.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/06-search-http-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/06-search-http-connection.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/07-http-connection-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/07-http-connection-details.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/08-http-connection-auth-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/08-http-connection-auth-basic.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/09-http-connection-auth-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/09-http-connection-auth-header.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/10-http-connection-auth-header-show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/10-http-connection-auth-header-show.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/11-http-connection-base-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/11-http-connection-base-url.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/12-http-connection-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/12-http-connection-connected.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/13-create-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/13-create-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/14-create-recipe-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/14-create-recipe-details.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/15-trigger-recipe-select-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/15-trigger-recipe-select-app.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/16-trigger-recipe-select-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/16-trigger-recipe-select-trigger.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/17-trigger-recipe-select-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/17-trigger-recipe-select-connection.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/18-filter-trigger-by-pentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/18-filter-trigger-by-pentest.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/19-filter-trigger-by-pentest-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/19-filter-trigger-by-pentest-modal.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/21-use-get-pentest-finding-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/21-use-get-pentest-finding-action.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/22-get-pentest-finding-by-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/22-get-pentest-finding-by-id.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/23-filter-pentest-finding-by-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/23-filter-pentest-finding-by-state.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/24-use-http-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/24-use-http-action.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/26-use-http-action-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/26-use-http-action-setup.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/27-use-http-action-config-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/27-use-http-action-config-url.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/28-use-http-action-config-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/28-use-http-action-config-body.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/29-use-http-action-config-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/29-use-http-action-config-header.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/31-use-http-action-config-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/31-use-http-action-config-review.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/32-use-http-action-set-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/32-use-http-action-set-body.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/34-use-http-action-set-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/34-use-http-action-set-header.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/35-save-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/35-save-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/36-start-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/36-start-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/37-recipe-did-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/37-recipe-did-start.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/38-finding-pending-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/38-finding-pending-fix.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/39-recipe-run-pending-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/39-recipe-run-pending-fix.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/40-recipe-run-log-pending-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/40-recipe-run-log-pending-fix.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/41-finding-valid-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/41-finding-valid-fix.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/http/42-recipe-run-valid-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/http/42-recipe-run-valid-fix.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/microsoft-teams/01-create-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/microsoft-teams/01-create-folder.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/microsoft-teams/03-create-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/microsoft-teams/03-create-connection.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/microsoft-teams/05-connection-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/microsoft-teams/05-connection-details.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/microsoft-teams/08-use-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/microsoft-teams/08-use-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/microsoft-teams/09-recipe-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/microsoft-teams/09-recipe-location.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/microsoft-teams/10-customize-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/microsoft-teams/10-customize-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/microsoft-teams/11-recipe-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/microsoft-teams/11-recipe-error.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/microsoft-teams/13-message-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/microsoft-teams/13-message-settings.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/microsoft-teams/14-start-recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/microsoft-teams/14-start-recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/microsoft-teams/15-recipe-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/microsoft-teams/15-recipe-running.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/optional_fields_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/optional_fields_button.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/trigger_filters/add_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/trigger_filters/add_filters.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/trigger_filters/set_filter_value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/trigger_filters/set_filter_value.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/how_to_guides/trigger_filters/show_trigger_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/how_to_guides/trigger_filters/show_trigger_filters.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/troubleshooting/how_to_troubleshoot/action_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/troubleshooting/how_to_troubleshoot/action_error.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/troubleshooting/how_to_troubleshoot/failing_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/troubleshooting/how_to_troubleshoot/failing_recipe.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/troubleshooting/how_to_troubleshoot/recipe_run_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/troubleshooting/how_to_troubleshoot/recipe_run_list.png -------------------------------------------------------------------------------- /static/integrations/integration_builder/troubleshooting/rerun_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/integration_builder/troubleshooting/rerun_recipe.png -------------------------------------------------------------------------------- /static/integrations/jira-configuration-parameters-for-pentest-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/jira-configuration-parameters-for-pentest-1.png -------------------------------------------------------------------------------- /static/integrations/jira-configuration-parameters-for-pentest-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/jira-configuration-parameters-for-pentest-2.png -------------------------------------------------------------------------------- /static/integrations/jira-integration-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/jira-integration-status.png -------------------------------------------------------------------------------- /static/integrations/jira-server-logs-Lastlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/jira-server-logs-Lastlog.png -------------------------------------------------------------------------------- /static/integrations/jira-server-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/jira-server-logs.png -------------------------------------------------------------------------------- /static/integrations/vanta/authorize-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/vanta/authorize-app.png -------------------------------------------------------------------------------- /static/integrations/vanta/cobalt-integration-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/vanta/cobalt-integration-connect.png -------------------------------------------------------------------------------- /static/integrations/vanta/cobalt-integration-in-vanta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/vanta/cobalt-integration-in-vanta.png -------------------------------------------------------------------------------- /static/integrations/vanta/delete-credentials-and-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/vanta/delete-credentials-and-data.png -------------------------------------------------------------------------------- /static/integrations/vanta/delete-integration-from-vanta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/vanta/delete-integration-from-vanta.png -------------------------------------------------------------------------------- /static/integrations/vanta/disconnect-integration-from-cobalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/vanta/disconnect-integration-from-cobalt.png -------------------------------------------------------------------------------- /static/integrations/vanta/tile-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/vanta/tile-connected.png -------------------------------------------------------------------------------- /static/integrations/vanta/tile-disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/integrations/vanta/tile-disconnected.png -------------------------------------------------------------------------------- /static/methodologies/external-internal-network-pentest-methodology-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/methodologies/external-internal-network-pentest-methodology-process.png -------------------------------------------------------------------------------- /static/methodologies/internal-network-pentest-methodology-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/methodologies/internal-network-pentest-methodology-process.png -------------------------------------------------------------------------------- /static/methodologies/mobile-app-pentest-methodology-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/methodologies/mobile-app-pentest-methodology-process.png -------------------------------------------------------------------------------- /static/methodologies/web-app-pentest-methodology-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/methodologies/web-app-pentest-methodology-process.png -------------------------------------------------------------------------------- /static/pmp/add-in-house-pentester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/add-in-house-pentester.png -------------------------------------------------------------------------------- /static/pmp/complete-the-Cobalt-coverage-checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/complete-the-Cobalt-coverage-checklist.png -------------------------------------------------------------------------------- /static/pmp/create-pentest-in-house-pentest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/create-pentest-in-house-pentest.png -------------------------------------------------------------------------------- /static/pmp/edit-pentest-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/edit-pentest-report.png -------------------------------------------------------------------------------- /static/pmp/filter-ready-for-retest-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/filter-ready-for-retest-findings.png -------------------------------------------------------------------------------- /static/pmp/move-the-pentest-to-remediation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/move-the-pentest-to-remediation.png -------------------------------------------------------------------------------- /static/pmp/open-the-pentest-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/open-the-pentest-chat.png -------------------------------------------------------------------------------- /static/pmp/pentest-overview-in-house-pentester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/pentest-overview-in-house-pentester.png -------------------------------------------------------------------------------- /static/pmp/pmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/pmp.png -------------------------------------------------------------------------------- /static/pmp/submit-finding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/submit-finding.png -------------------------------------------------------------------------------- /static/pmp/switch-role-to-in-house-pentester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/switch-role-to-in-house-pentester.png -------------------------------------------------------------------------------- /static/pmp/vulnerability-detector-enriched-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/vulnerability-detector-enriched-content.png -------------------------------------------------------------------------------- /static/pmp/vulnerability-detector-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/vulnerability-detector-results.png -------------------------------------------------------------------------------- /static/pmp/vulnerability-detector-start-new-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/pmp/vulnerability-detector-start-new-scan.png -------------------------------------------------------------------------------- /static/profservices/specialized-pentest-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/profservices/specialized-pentest-label.png -------------------------------------------------------------------------------- /static/release-notes/Attack-Surface-Insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/Attack-Surface-Insights.png -------------------------------------------------------------------------------- /static/release-notes/Catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/Catalog.png -------------------------------------------------------------------------------- /static/release-notes/DRA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/DRA.png -------------------------------------------------------------------------------- /static/release-notes/FindingNotApplicable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/FindingNotApplicable.png -------------------------------------------------------------------------------- /static/release-notes/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/Home.png -------------------------------------------------------------------------------- /static/release-notes/NotApplicable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/NotApplicable.png -------------------------------------------------------------------------------- /static/release-notes/ReviewFindingsNow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/ReviewFindingsNow.png -------------------------------------------------------------------------------- /static/release-notes/SCR-Brief.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/SCR-Brief.png -------------------------------------------------------------------------------- /static/release-notes/SCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/SCR.png -------------------------------------------------------------------------------- /static/release-notes/Scan-Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/Scan-Progress.png -------------------------------------------------------------------------------- /static/release-notes/Scans-April-Release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/Scans-April-Release.png -------------------------------------------------------------------------------- /static/release-notes/age-by-severity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/age-by-severity.png -------------------------------------------------------------------------------- /static/release-notes/ai-llm-release-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/ai-llm-release-notes.png -------------------------------------------------------------------------------- /static/release-notes/associated-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/associated-targets.png -------------------------------------------------------------------------------- /static/release-notes/attestation-letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/attestation-letter.png -------------------------------------------------------------------------------- /static/release-notes/confirm-credential-deletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/confirm-credential-deletion.png -------------------------------------------------------------------------------- /static/release-notes/coverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/coverage.png -------------------------------------------------------------------------------- /static/release-notes/cvss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/cvss.png -------------------------------------------------------------------------------- /static/release-notes/dra-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/dra-report.png -------------------------------------------------------------------------------- /static/release-notes/email-target-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/email-target-created.png -------------------------------------------------------------------------------- /static/release-notes/extra-hosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/extra-hosts.png -------------------------------------------------------------------------------- /static/release-notes/integration-builder-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/integration-builder-notifications.png -------------------------------------------------------------------------------- /static/release-notes/integrations-builder-assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/integrations-builder-assistant.png -------------------------------------------------------------------------------- /static/release-notes/partial-scans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/partial-scans.png -------------------------------------------------------------------------------- /static/release-notes/pentest-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/pentest-notifications.png -------------------------------------------------------------------------------- /static/release-notes/pentest-report-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/pentest-report-order.png -------------------------------------------------------------------------------- /static/release-notes/saml-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/saml-updates.png -------------------------------------------------------------------------------- /static/release-notes/scan-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/scan-profiles.png -------------------------------------------------------------------------------- /static/release-notes/severity_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/severity_trend.png -------------------------------------------------------------------------------- /static/release-notes/target-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/target-directory.png -------------------------------------------------------------------------------- /static/release-notes/test-report-covers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/release-notes/test-report-covers.png -------------------------------------------------------------------------------- /static/scans/10_ScheduledScanForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/10_ScheduledScanForm.png -------------------------------------------------------------------------------- /static/scans/11_ScheduledScansView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/11_ScheduledScansView.png -------------------------------------------------------------------------------- /static/scans/1_CreateTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/1_CreateTarget.png -------------------------------------------------------------------------------- /static/scans/2_AddTarget-API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/2_AddTarget-API.png -------------------------------------------------------------------------------- /static/scans/2_AddTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/2_AddTarget.png -------------------------------------------------------------------------------- /static/scans/3.1_LoginSequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/3.1_LoginSequence.png -------------------------------------------------------------------------------- /static/scans/3_AuthenticatedScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/3_AuthenticatedScan.png -------------------------------------------------------------------------------- /static/scans/4_StartScanTargets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/4_StartScanTargets.png -------------------------------------------------------------------------------- /static/scans/5_TargetScanResultsSampleReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/5_TargetScanResultsSampleReport.png -------------------------------------------------------------------------------- /static/scans/6_ScansSampleFindingsReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/6_ScansSampleFindingsReport.png -------------------------------------------------------------------------------- /static/scans/7_ViewReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/7_ViewReport.png -------------------------------------------------------------------------------- /static/scans/9_Retest_Finding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/9_Retest_Finding.png -------------------------------------------------------------------------------- /static/scans/API-Auth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/API-Auth-1.png -------------------------------------------------------------------------------- /static/scans/API-Auth-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/API-Auth-2.png -------------------------------------------------------------------------------- /static/scans/Anatomy_DASTTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/Anatomy_DASTTarget.png -------------------------------------------------------------------------------- /static/scans/ScanProfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/ScanProfiles.png -------------------------------------------------------------------------------- /static/scans/blackout-period-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/blackout-period-disabled.png -------------------------------------------------------------------------------- /static/scans/blackout-period-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/blackout-period-enabled.png -------------------------------------------------------------------------------- /static/scans/extra-hosts/ExtraHosts_Create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/extra-hosts/ExtraHosts_Create.png -------------------------------------------------------------------------------- /static/scans/extra-hosts/ExtraHosts_CustomCookies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/extra-hosts/ExtraHosts_CustomCookies.png -------------------------------------------------------------------------------- /static/scans/extra-hosts/ExtraHosts_CustomHeaders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/extra-hosts/ExtraHosts_CustomHeaders.png -------------------------------------------------------------------------------- /static/scans/extra-hosts/ExtraHosts_List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/extra-hosts/ExtraHosts_List.png -------------------------------------------------------------------------------- /static/scans/partial-scans-configured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/partial-scans-configured.png -------------------------------------------------------------------------------- /static/scans/partial-scans-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/partial-scans-modal.png -------------------------------------------------------------------------------- /static/scans/scan-failed-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scan-failed-01.png -------------------------------------------------------------------------------- /static/scans/scan-failed-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scan-failed-02.png -------------------------------------------------------------------------------- /static/scans/scanner-tab/API-Parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scanner-tab/API-Parameter.png -------------------------------------------------------------------------------- /static/scans/scanner-tab/Custom-Headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scanner-tab/Custom-Headers.png -------------------------------------------------------------------------------- /static/scans/scans/BlueProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/BlueProgressBar.png -------------------------------------------------------------------------------- /static/scans/scans/DarkGreyProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/DarkGreyProgressBar.png -------------------------------------------------------------------------------- /static/scans/scans/GreenProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/GreenProgressBar.png -------------------------------------------------------------------------------- /static/scans/scans/LightGreyProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/LightGreyProgressBar.png -------------------------------------------------------------------------------- /static/scans/scans/PauseScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/PauseScan.png -------------------------------------------------------------------------------- /static/scans/scans/PausedComponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/PausedComponents.png -------------------------------------------------------------------------------- /static/scans/scans/RedProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/RedProgressBar.png -------------------------------------------------------------------------------- /static/scans/scans/ResumeScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/ResumeScan.png -------------------------------------------------------------------------------- /static/scans/scans/ScanStatuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/ScanStatuses.png -------------------------------------------------------------------------------- /static/scans/scans/StartScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/StartScan.png -------------------------------------------------------------------------------- /static/scans/scans/YellowProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/scans/YellowProgressBar.png -------------------------------------------------------------------------------- /static/scans/sequence-recorder/recorder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/sequence-recorder/recorder1.png -------------------------------------------------------------------------------- /static/scans/sequence-recorder/recorder2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/sequence-recorder/recorder2.png -------------------------------------------------------------------------------- /static/scans/sequence-recorder/recorder3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/static/scans/sequence-recorder/recorder3.png -------------------------------------------------------------------------------- /styles/Google/AMPM.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Use 'AM' or 'PM' (preceded by a space)." 3 | link: 'https://developers.google.com/style/word-list' 4 | level: error 5 | nonword: true 6 | tokens: 7 | - '\d{1,2}[AP]M' 8 | - '\d{1,2} ?[ap]m' 9 | - '\d{1,2} ?[aApP]\.[mM]\.' 10 | -------------------------------------------------------------------------------- /styles/Google/Colons.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "'%s' should be in lowercase." 3 | link: 'https://developers.google.com/style/colons' 4 | nonword: true 5 | level: warning 6 | scope: sentence 7 | tokens: 8 | - ':\s[A-Z]' 9 | -------------------------------------------------------------------------------- /styles/Google/Ellipses.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "In general, don't use an ellipsis." 3 | link: 'https://developers.google.com/style/ellipses' 4 | nonword: true 5 | level: warning 6 | action: 7 | name: remove 8 | tokens: 9 | - '\.\.\.' 10 | -------------------------------------------------------------------------------- /styles/Google/Exclamation.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Don't use exclamation points in text." 3 | link: 'https://developers.google.com/style/exclamation-points' 4 | nonword: true 5 | level: error 6 | tokens: 7 | - '\w!(?:\s|$)' 8 | -------------------------------------------------------------------------------- /styles/Google/Gender.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Don't use '%s' as a gender-neutral pronoun." 3 | link: 'https://developers.google.com/style/pronouns#gender-neutral-pronouns' 4 | level: error 5 | ignorecase: true 6 | tokens: 7 | - he/she 8 | - s/he 9 | - \(s\)he 10 | -------------------------------------------------------------------------------- /styles/Google/Ordinal.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Spell out all ordinal numbers ('%s') in text." 3 | link: 'https://developers.google.com/style/numbers' 4 | level: error 5 | nonword: true 6 | tokens: 7 | - \d+(?:st|nd|rd|th) 8 | -------------------------------------------------------------------------------- /styles/Google/OxfordComma.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Use the Oxford comma in '%s'." 3 | link: 'https://developers.google.com/style/commas' 4 | scope: sentence 5 | level: warning 6 | tokens: 7 | - '(?:[^,]+,){1,}\s\w+\s(?:and|or)' 8 | -------------------------------------------------------------------------------- /styles/Google/Parens.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Use parentheses judiciously." 3 | link: 'https://developers.google.com/style/parentheses' 4 | nonword: true 5 | level: suggestion 6 | tokens: 7 | - '\(.+\)' 8 | -------------------------------------------------------------------------------- /styles/Google/Periods.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Don't use periods with acronyms or initialisms such as '%s'." 3 | link: 'https://developers.google.com/style/abbreviations' 4 | level: error 5 | nonword: true 6 | tokens: 7 | - '\b(?:[A-Z]\.){3,}' 8 | -------------------------------------------------------------------------------- /styles/Google/Ranges.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Don't add words such as 'from' or 'between' to describe a range of numbers." 3 | link: 'https://developers.google.com/style/hyphens' 4 | nonword: true 5 | level: warning 6 | tokens: 7 | - '(?:from|between)\s\d+\s?-\s?\d+' 8 | -------------------------------------------------------------------------------- /styles/Google/Semicolons.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Use semicolons judiciously." 3 | link: 'https://developers.google.com/style/semicolons' 4 | nonword: true 5 | scope: sentence 6 | level: suggestion 7 | tokens: 8 | - ';' 9 | -------------------------------------------------------------------------------- /styles/Google/Spacing.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "'%s' should have one space." 3 | link: 'https://developers.google.com/style/sentence-spacing' 4 | level: error 5 | nonword: true 6 | tokens: 7 | - '[a-z][.?!] {2,}[A-Z]' 8 | - '[a-z][.?!][A-Z]' 9 | -------------------------------------------------------------------------------- /styles/Google/Spelling.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "In general, use American spelling instead of '%s'." 3 | link: 'https://developers.google.com/style/spelling' 4 | ignorecase: true 5 | level: warning 6 | tokens: 7 | - '(?:\w+)nised?' 8 | - '(?:\w+)logue' 9 | -------------------------------------------------------------------------------- /styles/Google/Units.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Put a nonbreaking space between the number and the unit in '%s'." 3 | link: 'https://developers.google.com/style/units-of-measure' 4 | nonword: true 5 | level: error 6 | tokens: 7 | - \d+(?:B|kB|MB|GB|TB) 8 | - \d+(?:ns|ms|s|min|h|d) 9 | -------------------------------------------------------------------------------- /styles/Google/Will.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Avoid using '%s'." 3 | link: 'https://developers.google.com/style/tense' 4 | ignorecase: true 5 | level: warning 6 | tokens: 7 | - will 8 | -------------------------------------------------------------------------------- /styles/Google/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed": "https://github.com/errata-ai/Google/releases.atom", 3 | "vale_version": ">=1.0.0" 4 | } 5 | -------------------------------------------------------------------------------- /styles/Google/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/styles/Google/vocab.txt -------------------------------------------------------------------------------- /styles/Readability/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed": "https://github.com/errata-ai/Readability/releases.atom", 3 | "vale_version": ">=2.13.0" 4 | } -------------------------------------------------------------------------------- /styles/Vocab/Cobalt/README: -------------------------------------------------------------------------------- 1 | This directory includes content designed for Vale Server. Do not delete. -------------------------------------------------------------------------------- /styles/Vocab/Cobalt/accept.txt: -------------------------------------------------------------------------------- 1 | Cobalt 2 | Docsy 3 | pentest 4 | pageinfo -------------------------------------------------------------------------------- /styles/Vocab/Cobalt/reject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobalthq/cobalt-product-public-docs/b385deb3eda40caf61ebab43e983c00a555e9f12/styles/Vocab/Cobalt/reject.txt -------------------------------------------------------------------------------- /styles/cobalt/Quotes.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Commas and periods go inside quotation marks, unless it's a literal string." 3 | link: 'https://developers.google.com/style/quotation-marks' 4 | level: warning 5 | nonword: true 6 | tokens: 7 | - '"[^"]+"[.,?]' 8 | -------------------------------------------------------------------------------- /styles/write-good/Illusions.yml: -------------------------------------------------------------------------------- 1 | extends: repetition 2 | message: "'%s' is repeated!" 3 | level: warning 4 | alpha: true 5 | action: 6 | name: edit 7 | params: 8 | - truncate 9 | - " " 10 | tokens: 11 | - '[^\s]+' 12 | -------------------------------------------------------------------------------- /styles/write-good/So.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Don't start a sentence with '%s'." 3 | level: error 4 | raw: 5 | - '(?:[;-]\s)so[\s,]|\bSo[\s,]' 6 | -------------------------------------------------------------------------------- /styles/write-good/ThereIs.yml: -------------------------------------------------------------------------------- 1 | extends: existence 2 | message: "Don't start a sentence with '%s'." 3 | ignorecase: false 4 | level: error 5 | raw: 6 | - '(?:[;-]\s)There\s(is|are)|\bThere\s(is|are)\b' 7 | -------------------------------------------------------------------------------- /styles/write-good/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed": "https://github.com/errata-ai/write-good/releases.atom", 3 | "vale_version": ">=1.0.0" 4 | } 5 | --------------------------------------------------------------------------------