├── .env ├── .firebaserc ├── .github ├── ISSUE_TEMPLATE │ └── developer-documentation-issue.md ├── config.yml ├── dependabot.yml ├── pull_request_template.md ├── stale.yml └── workflows │ ├── auto-assign-issues.yml │ ├── build.yml │ ├── codeql.yml │ ├── handle_new_contribution.yml │ └── links-verify.yml ├── .gitignore ├── .gitlab ├── ci │ └── .gitlab-ci.yml └── helper_functions.sh ├── .hooks └── bootstrap ├── .npmrc ├── .nvmrc ├── .pre-commit-config.yaml ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── build_utils └── slack_notifier.py ├── content-repo ├── .flake8 ├── .gitignore ├── articles-index.md ├── create-docs.sh ├── extra-docs │ ├── articles │ │ ├── Default Pack.md │ │ ├── Doc-Create-XSOAR-Incident-from-MS-Form-Submission.md │ │ ├── EWS_V2_Troubleshooting.md │ │ ├── Forensics_Content.md │ │ ├── Health Check.md │ │ ├── IAM-premium-pack-readme.md │ │ ├── PS-Remote.md │ │ ├── XSIAM_Playbooks.md │ │ ├── aws-auth-guide.md │ │ ├── custom-blocks-with-slack.md │ │ ├── deprecated.md │ │ ├── deprecated_info.json │ │ ├── deprecated_info.schema.json │ │ ├── deprecation-process-and-hidden-packs.md │ │ ├── download-packs-and-docker-images-offline.md │ │ ├── export-indicators.md │ │ ├── long-running-invoke.md │ │ ├── managing-credentials.md │ │ ├── microsoft-auth-guide.md │ │ ├── microsoft-integrations-overview.md │ │ ├── minemeld-migration.md │ │ ├── oproxy.md │ │ ├── paloaltonetworks-integrations-overview.md │ │ ├── processing_google_forms_via_webhook.md │ │ ├── setup-google-maps.md │ │ ├── splunk-add-on.md │ │ ├── tim-edl.md │ │ ├── troubleshooting.md │ │ └── trust-custom-certificates.md │ ├── integrations │ │ ├── active-directory-authentication.md │ │ ├── aws-sns.md │ │ ├── duo.md │ │ ├── googleapps-api.md │ │ ├── mattermost.md │ │ ├── remote-access.md │ │ ├── saml-adfs.md │ │ ├── saml-okta.md │ │ ├── saml-pingone.md │ │ ├── saml_2.md │ │ └── syslog.md │ ├── packs │ │ ├── CaptureTheFlag.md │ │ ├── Change_Management.md │ │ ├── CoA-premium-pack-readme.md │ │ ├── Email-Communication-Readme.md │ │ ├── Endpoint_Malware_Investigation_-_Generic_V2.md │ │ ├── Malware_Investigation_&_Response.md │ │ ├── Phishing-Alerts.md │ │ ├── Phishing-Campaign.md │ │ ├── Policy_Optimizer.md │ │ ├── Prisma-Cloud.md │ │ ├── QRadar.md │ │ ├── Rapid-Breach-Response.md │ │ ├── Shift-management.md │ │ ├── SystemDiagnosticsHealthCheck.md │ │ ├── Windows-Forensics-pack-readme.md │ │ ├── XSOAR-Content-Update-Notifications.md │ │ ├── content-management.md │ │ ├── expanse-pack-readme.md │ │ ├── incident-lifecycle.md │ │ ├── integrations-and-incident-health-check.md │ │ ├── palo-alto-networks-cortex-xdr---investigation-and-response.md │ │ └── ransomware.md │ ├── releases │ │ ├── 18.10.0.md │ │ ├── 18.10.1.md │ │ ├── 18.10.2.md │ │ ├── 18.10.3.md │ │ ├── 18.11.0.md │ │ ├── 18.11.1.md │ │ ├── 18.11.2.md │ │ ├── 18.12.0.md │ │ ├── 18.12.1.md │ │ ├── 18.12.2.md │ │ ├── 18.9.0.md │ │ ├── 18.9.1.md │ │ ├── 18.9.2.md │ │ ├── 19.1.0.md │ │ ├── 19.1.1.md │ │ ├── 19.1.2.md │ │ ├── 19.10.0.md │ │ ├── 19.10.1.md │ │ ├── 19.10.2.md │ │ ├── 19.10.3.md │ │ ├── 19.11.0.md │ │ ├── 19.11.1.md │ │ ├── 19.12.0.md │ │ ├── 19.12.1.md │ │ ├── 19.2.0.md │ │ ├── 19.2.1.md │ │ ├── 19.2.2.md │ │ ├── 19.2.3.md │ │ ├── 19.3.0.md │ │ ├── 19.3.1.md │ │ ├── 19.3.2.md │ │ ├── 19.4.0.md │ │ ├── 19.4.1.md │ │ ├── 19.4.2.md │ │ ├── 19.5.0.md │ │ ├── 19.5.1.md │ │ ├── 19.6.0.md │ │ ├── 19.6.1.md │ │ ├── 19.7.0.md │ │ ├── 19.7.1.md │ │ ├── 19.7.2.md │ │ ├── 19.8.0.md │ │ ├── 19.8.1.md │ │ ├── 19.8.2.md │ │ ├── 19.9.0.md │ │ ├── 19.9.1.md │ │ ├── 20.1.0.md │ │ ├── 20.1.1.md │ │ ├── 20.1.2.md │ │ ├── 20.10.0.md │ │ ├── 20.10.1.md │ │ ├── 20.11.0.md │ │ ├── 20.11.1.md │ │ ├── 20.12.0.md │ │ ├── 20.12.1.md │ │ ├── 20.2.0.md │ │ ├── 20.2.1.md │ │ ├── 20.2.2.md │ │ ├── 20.2.3.md │ │ ├── 20.2.4.md │ │ ├── 20.3.1.md │ │ ├── 20.3.2.md │ │ ├── 20.3.3.md │ │ ├── 20.3.4.md │ │ ├── 20.4.0.md │ │ ├── 20.4.1.md │ │ ├── 20.5.0.md │ │ ├── 20.5.1.md │ │ ├── 20.5.2.md │ │ ├── 20.5.3.md │ │ ├── 20.6.0.md │ │ ├── 20.6.1.md │ │ ├── 20.7.0.md │ │ ├── 20.7.1.md │ │ ├── 20.7.2.md │ │ ├── 20.8.0.md │ │ ├── 20.8.1.md │ │ ├── 20.8.2.md │ │ ├── 20.9.0.md │ │ ├── 20.9.1.md │ │ ├── 20.9.2.md │ │ ├── 21.1.0.md │ │ ├── 21.1.1.md │ │ ├── 21.10.0.md │ │ ├── 21.10.1.md │ │ ├── 21.11.0.md │ │ ├── 21.11.1.md │ │ ├── 21.12.0.md │ │ ├── 21.12.1.md │ │ ├── 21.2.0.md │ │ ├── 21.2.1.md │ │ ├── 21.3.0.md │ │ ├── 21.3.1.md │ │ ├── 21.3.2.md │ │ ├── 21.4.0.md │ │ ├── 21.4.1.md │ │ ├── 21.5.0.md │ │ ├── 21.5.1.md │ │ ├── 21.6.0.md │ │ ├── 21.6.1.md │ │ ├── 21.7.0.md │ │ ├── 21.7.1.md │ │ ├── 21.8.0.md │ │ ├── 21.8.1.md │ │ ├── 21.8.2.md │ │ ├── 21.9.0.md │ │ ├── 21.9.1.md │ │ ├── 22.1.0.md │ │ ├── 22.2.0.md │ │ └── get-releases.py │ └── scripts │ │ ├── commonserveruserpowershell.md │ │ ├── commonserveruserpython.md │ │ └── commonuserserver.md ├── gen_pydocs.py ├── gen_pydocs_test.py ├── gen_top_contrib.py ├── gendocs.py ├── gendocs_test.py ├── get_top_contrib_test.py ├── ignored_entities.json ├── mdx_utils.py ├── mypy.ini ├── post_github_comment.py ├── post_github_comment_test.py ├── pytest.ini ├── reference-index.md └── test_data │ ├── CommonServerPython.py │ ├── bad-mdx-readme.md │ ├── demistomock.py │ ├── empty-readme.md │ ├── good-readme.md │ ├── parsed.md │ └── sample-content │ ├── Beta_Integrations │ └── SymantecDLP │ │ ├── README.md │ │ └── SymantecDLP.yml │ ├── Integrations │ ├── DomainTools_Iris │ │ ├── DomainTools_Iris.yml │ │ └── README.md │ ├── Gmail │ │ ├── Gmail.yml │ │ └── README.md │ ├── PaloAltoNetworks_PAN_OS_EDL_Management │ │ ├── PaloAltoNetworks_PAN_OS_EDL_Management.yml │ │ └── README.md │ ├── PhishLabsIOC_DRP │ │ └── README.md │ ├── SMIME_Messaging │ │ ├── SMIME_Messaging.yml │ │ ├── SMIME_Messaging_image.png │ │ └── readme.md │ ├── SlashNextPhishingIncidentResponse │ │ ├── README.md │ │ └── SlashNextPhishingIncidentResponse.yml │ ├── Vectra_v2 │ │ └── README.md │ ├── integration-F5.yml │ └── integration-F5_README.md │ ├── Packs │ ├── CortexXDR │ │ └── Integrations │ │ │ └── PaloAltoNetworks_XDR │ │ │ └── README.md │ ├── DeprecatedContent │ │ ├── Integrations │ │ │ ├── AzureCompute │ │ │ │ ├── AzureCompute.py │ │ │ │ ├── AzureCompute.yml │ │ │ │ ├── AzureCompute_description.md │ │ │ │ └── AzureCompute_image.png │ │ │ ├── PaloAltoNetworksCortex │ │ │ │ ├── PaloAltoNetworksCortex.py │ │ │ │ ├── PaloAltoNetworksCortex.yml │ │ │ │ ├── PaloAltoNetworksCortex_image.png │ │ │ │ ├── PaloAltoNetworksCortex_test.py │ │ │ │ ├── PaloAltoNetworksCortext_description.md │ │ │ │ ├── README.md │ │ │ │ └── doc_files │ │ │ │ │ └── mceclip0.png │ │ │ ├── PaloAlto_MineMeld │ │ │ │ ├── PaloAlto_MineMeld.py │ │ │ │ ├── PaloAlto_MineMeld.yml │ │ │ │ ├── PaloAlto_MineMeld_description.md │ │ │ │ ├── PaloAlto_MineMeld_image.png │ │ │ │ └── README.md │ │ │ ├── integration-AlienVaultOTX.yml │ │ │ ├── integration-ArcSightESM.yml │ │ │ ├── integration-CveInfo.yml │ │ │ └── integration-aws.yml │ │ └── pack_metadata.json │ ├── GoogleCalendar │ │ ├── .pack-ignore │ │ ├── .secrets-ignore │ │ ├── Integrations │ │ │ └── GoogleCalendar │ │ │ │ ├── GoogleCalendar.py │ │ │ │ ├── GoogleCalendar.yml │ │ │ │ ├── GoogleCalendar_description.md │ │ │ │ ├── GoogleCalendar_image.png │ │ │ │ ├── Pipfile │ │ │ │ ├── Pipfile.lock │ │ │ │ ├── README.md │ │ │ │ └── test_data │ │ │ │ ├── acl_add_data.json │ │ │ │ ├── acl_list_data.json │ │ │ │ └── service_account_json.txt │ │ ├── README.md │ │ ├── TestPlaybooks │ │ │ └── playbook-GoogleCalendar-Test.yml │ │ ├── doc_files │ │ │ ├── add-scope-admin-1.png │ │ │ ├── add-scope-admin-2.png │ │ │ ├── add-scope-admin-3.png │ │ │ ├── create-project-1.png │ │ │ ├── enable-gke-api-enable-2.png │ │ │ ├── google-api-menu.png │ │ │ ├── google_calendar_api.png │ │ │ ├── service-account-create-1.png │ │ │ ├── service-account-create-3.png │ │ │ ├── service-account-create-4.png │ │ │ └── service-acount-menu.png │ │ └── pack_metadata.json │ └── ProofpointServerProtection │ │ ├── Integrations │ │ └── ProofpointProtectionServerV2 │ │ │ ├── ProofpointProtectionServerV2.yml │ │ │ └── README.md │ │ └── doc_imgs │ │ └── api_role.png │ ├── Playbooks │ ├── playbook-lost_stolen_device.yml │ └── playbook-lost_stolen_device_README.md │ └── Scripts │ ├── script-IsIPInRanges.yml │ └── script-IsIPInRanges_README.md ├── demisto_content_logo.png ├── docs ├── concepts │ ├── concepts.md │ ├── design-best-practices.md │ ├── design.md │ ├── dev-setup.md │ ├── faq.md │ ├── getting-started-guide.md │ ├── pycharm-plugin.md │ ├── use-cases.md │ ├── vscode-extension.md │ └── xsoar-ide.md ├── contributing │ ├── checklist.md │ ├── contrib-requirements.md │ ├── contributing.md │ ├── conventions.md │ ├── demo-prep.md │ ├── docs-contrib.md │ ├── marketplace.md │ ├── sdk.md │ └── sla.md ├── dashboards │ └── .gitinclude ├── doc_imgs │ ├── concepts │ │ └── .gitinclude │ ├── contributing │ │ ├── circleci_error.png │ │ ├── content-bot-pr-message.png │ │ ├── content-new-fork.gif │ │ ├── content-new-pr.png │ │ ├── contribution-registration-form.png │ │ ├── doc_status_green.png │ │ ├── doc_status_red.png │ │ ├── docs-compare-changes.png │ │ ├── docs-create-issue.png │ │ ├── docs-create-pr.png │ │ ├── docs-edit-this-page.png │ │ ├── docs-github-create-issue.png │ │ ├── docs-github-edit.png │ │ ├── docs-propose-change.png │ │ ├── failed_CLA.png │ │ ├── pull_request_review.png │ │ ├── request-review-icon.png │ │ └── resolve_conversation.png │ ├── dashboards │ │ └── .gitinclude │ ├── demisto-dbot.png │ ├── incidents │ │ ├── Auto-Extract_ParseEmailFiles_Disabled.png │ │ ├── Auto-Extract_ParseEmailFiles_Inline.png │ │ ├── Auto-Extract_ParseEmailFiles_Outputs.png │ │ ├── Incident_Lifecycle.png │ │ ├── Jobs_Feed-Triggered.png │ │ ├── Jobs_Time-Triggered_Basic.png │ │ ├── Jobs_Time-Triggered_Queue-handling.png │ │ ├── Layout-Builder_Dynamic-Section-Query.png │ │ ├── Layout-Builder_Section-Cards.png │ │ ├── PreProcessingRules.png │ │ ├── SLA_Incident_Field.png │ │ ├── Single-Select_False-Positive.png │ │ ├── fetchhistory.gif │ │ ├── incident-fields-search.png │ │ └── preProcessing.png │ ├── integrations │ │ ├── 40935346-7ca3b24a-6840-11e8-8540-b00677cd6657.png │ │ ├── 40935354-8406dcc4-6840-11e8-9b0c-b0a9c4bd8a99.png │ │ ├── 41154872-459f93fe-6b24-11e8-848b-25ca71f59629.png │ │ ├── 50275566-51eaa780-0448-11e9-8089-b3631fff1274.png │ │ ├── 50277516-4d74bd80-044d-11e9-94b6-5195dd0db796.png │ │ ├── 50571324-46846e00-0db0-11e9-9888-ddd9dc275541.png │ │ ├── 50571503-ed6b0900-0db4-11e9-8e9e-dc23f5ff403c.png │ │ ├── 50575189-ac4d1600-0e01-11e9-83fc-7a8f6f8ce55a.png │ │ ├── 50575199-fd5d0a00-0e01-11e9-9d54-944eb7c6f287.png │ │ ├── 50736134-25fa5080-11c2-11e9-89c5-12844545b5ff.png │ │ ├── 50771147-6aedb800-1292-11e9-833f-b5dd13e3507b.png │ │ ├── 53886096-eae09600-4027-11e9-8c2d-a46078c3dcc4.png │ │ ├── 53886311-69d5ce80-4028-11e9-9755-08585fecff34.png │ │ ├── 53886981-f339d080-4029-11e9-9d27-a76b85d2d025.png │ │ ├── 54881975-2966b500-4e5e-11e9-87c7-b9f2eadeef5d.png │ │ ├── 54881985-48654700-4e5e-11e9-8e1c-7a95d1b84328.png │ │ ├── 54881995-616df800-4e5e-11e9-8f15-475422b97066.png │ │ ├── 54882043-ac880b00-4e5e-11e9-9b59-8cb0f08594d4.png │ │ ├── 54882097-4a7bd580-4e5f-11e9-80d7-4db8859bbab4.png │ │ ├── 54882114-68493a80-4e5f-11e9-89a0-1d2a7106980f.png │ │ ├── 54882368-f7575200-4e61-11e9-86e4-c5e33948f35e.png │ │ ├── 54882405-51581780-4e62-11e9-86a4-293c3eb59cbc.png │ │ ├── 54882618-89f8f080-4e64-11e9-8bbc-e4974c9466a5.png │ │ ├── 54882634-ae54cd00-4e64-11e9-9194-ec7bee84ca76.png │ │ ├── 54883090-3ee1dc00-4e6a-11e9-88b7-5bbce20702d9.png │ │ ├── 54883094-591bba00-4e6a-11e9-8066-945d82bba1e4.png │ │ ├── 54883128-d810f280-4e6a-11e9-94b6-cd6dc43987e9.png │ │ ├── 54883139-f4ad2a80-4e6a-11e9-85c4-4eef17ab75ac.png │ │ ├── 65404184-313ced00-dde0-11e9-9257-e61e2943fd75.gif │ │ ├── 66122533-9b2b7280-e5e8-11e9-92de-f9fbe75b7250.png │ │ ├── 66122634-e6458580-e5e8-11e9-9030-6514832c9422.png │ │ ├── 66122754-2d337b00-e5e9-11e9-8775-562e228e3fe6.png │ │ ├── 66123930-cb284500-e5eb-11e9-804d-6154423e6cee.png │ │ ├── 70272523-0f34f300-17b1-11ea-89a0-e4e0e359f614.png │ │ ├── Screenshot-long-encrypted.png │ │ ├── Unit-Testing-Debug.gif │ │ ├── XSIAM_XQL_query.png │ │ ├── XSOAR_STS_Flow.png │ │ ├── add-values-to-lookup-table.png │ │ ├── bc_alert_example.png │ │ ├── cdl-authorization.png │ │ ├── choose_credentials.png │ │ ├── classify.png │ │ ├── credentials_api_token.png │ │ ├── credentials_username_password.png │ │ ├── demisto_content-external-template.png │ │ ├── deprecate_command.png │ │ ├── deprecated-integration-1.png │ │ ├── deprecated-integration-2.png │ │ ├── description.md_example.png │ │ ├── description_question_mark.png │ │ ├── doc-preview-check.png │ │ ├── docker-for-beginners.png │ │ ├── docker-image-list-demisto.png │ │ ├── fetch-incidents.png │ │ ├── gdpr-card.png │ │ ├── gdpr-details.png │ │ ├── github-download-button.png │ │ ├── gmail_section1_step4.png │ │ ├── gmail_section1_step5.png │ │ ├── gmail_section1_step8.png │ │ ├── gmail_section4_step3.png │ │ ├── incident_type.png │ │ ├── integration-config-panel-61.png │ │ ├── kv-store-lookup.png │ │ ├── lint-powershell-output.png │ │ ├── logo-standard.png │ │ ├── mapping.png │ │ ├── mirror-tags.png │ │ ├── new-lookup-table.png │ │ ├── polling-command.png │ │ ├── pwsh-lint-cmd-output.png │ │ ├── pycharm-export.png │ │ ├── pycharm-general.png │ │ ├── pycharm-mceclip0.png │ │ ├── script-helper-flyout.png │ │ ├── script-helper.png │ │ ├── sections_advanced.png │ │ ├── sections_connect_collect.png │ │ ├── settings-menu.png │ │ ├── snowv2-configuration-settings.png │ │ ├── snowv2-create-new-record.png │ │ ├── snowv2-set-mirroring-fields.png │ │ ├── splunk-lookup-editor.png │ │ ├── timeline_section.png │ │ ├── unit-test-sample-output.png │ │ ├── unit-test-sample-run.png │ │ ├── user-mapping-settings-configuration.png │ │ ├── vs-code-pwsh-analyazer.png │ │ ├── vscode-pwsh-debug.gif │ │ ├── youtube-embed-2.png │ │ └── youtube-embed.png │ ├── packs │ │ ├── deprecated-pack-1.png │ │ ├── deprecated-pack-2.png │ │ └── hidden-pack.png │ ├── partners │ │ ├── Branch_name.png │ │ ├── NewPrivateOfferPartnerSalesProcessFlow.png │ │ ├── PaidPackFlow.png │ │ ├── Pencil_Icon.png │ │ ├── Private Offer Partner Sales Process Flow.png │ │ ├── PrivateOffer-green arrow.png │ │ ├── PrivateOffer-greenarrow.png │ │ ├── PrivateOffer:LearnMore.png │ │ ├── PrivateOfferAgreementv1.1Sample.pdf │ │ ├── PrivateOfferButton.png │ │ ├── PrivateOfferPartnerSalesProcessFlow.png │ │ ├── PrivateOfferPartnerSalesProcessFlowV2.png │ │ ├── PrivateOfferTermsAgreementSample.pdf │ │ ├── Subscribingto3rdpartycontent.png │ │ ├── crest_dev_partner.png │ │ ├── loginsoft_partner.png │ │ ├── metron_logo.png │ │ ├── nttdata_dev_partner.jpg │ │ ├── packexample_cyren.png │ │ ├── pcysys_partner.png │ │ ├── qmasters_dev_partner.png │ │ ├── release_note_step.png │ │ ├── sciencesoft.png │ │ ├── secinfra_logo.png │ │ ├── slashnext_partner.png │ │ └── soarxperts_dev_partner.png │ ├── playbooks │ │ ├── 50276007-8448d480-0449-11e9-9413-67a842a8ce72.png │ │ ├── 50276352-6fb90c00-044a-11e9-8210-a4df27b9500c.png │ │ ├── 50276603-fff75100-044a-11e9-97ef-c848cc051985.png │ │ ├── 62224827-f8742f00-b3bf-11e9-857e-5f216297aee1.png │ │ ├── 62224883-0f1a8600-b3c0-11e9-910e-03a86c7456d7.png │ │ ├── 62225909-fa3ef200-b3c1-11e9-9e66-d96ce7fefbde.png │ │ ├── 62226474-f3fd4580-b3c2-11e9-94be-4ef28a6e5591.png │ │ ├── 62226484-f6f83600-b3c2-11e9-8e99-0cdc8117ee7e.png │ │ ├── 62226641-2a3ac500-b3c3-11e9-97b6-546aab935487.png │ │ ├── 62226647-2c9d1f00-b3c3-11e9-82d5-63a637b2c23e.png │ │ ├── 62226658-3030a600-b3c3-11e9-826a-5104ed3a1a18.png │ │ ├── 62226668-36268700-b3c3-11e9-9d71-b4479696422f.png │ │ ├── 62228424-4f7d0280-b3c6-11e9-8bee-47808ec59d31.png │ │ ├── 62228435-53a92000-b3c6-11e9-9434-f1201e247f62.png │ │ ├── 62228472-628fd280-b3c6-11e9-838c-285e68ec4661.png │ │ ├── 62228481-66235980-b3c6-11e9-95da-46b12ab243ff.png │ │ ├── 62228872-2e68e180-b3c7-11e9-9de3-ea21c0e3c866.png │ │ ├── 62228877-3032a500-b3c7-11e9-8644-17278aa24870.png │ │ ├── 62229068-97505980-b3c7-11e9-9c80-18b6f84ba90c.png │ │ ├── 62229072-991a1d00-b3c7-11e9-9486-e481096bd2db.png │ │ ├── 62229081-9d463a80-b3c7-11e9-8602-ece4e593fa57.png │ │ ├── 62229766-1f832e80-b3c9-11e9-8ac3-6cb48a132c1f.png │ │ ├── 62229771-21e58880-b3c9-11e9-8d85-c82c0c895252.png │ │ ├── 62230489-9240d980-b3ca-11e9-8a88-2d5928888fac.png │ │ ├── 62230511-9ec53200-b3ca-11e9-8d75-2f4a59b71f1a.png │ │ ├── 66270734-7ee53b00-e85f-11e9-8566-e0118774070e.png │ │ ├── 66293071-7d168880-e8ee-11e9-9d55-e8ae1e09fe0e.png │ │ ├── 67758301-18aa9d00-fa46-11e9-84e9-cba48d639766.png │ │ ├── 67759127-9622dd00-fa47-11e9-90d5-a88c616bd8fe.png │ │ ├── 67759239-c9656c00-fa47-11e9-803b-a18005c63b52.png │ │ ├── 67759434-121d2500-fa48-11e9-871b-dac447da1b8e.png │ │ ├── 67759623-76d87f80-fa48-11e9-9dc7-3f8d5ef4341c.png │ │ ├── 67759719-a5565a80-fa48-11e9-9a91-b5ce555197d4.png │ │ ├── 67759760-bb641b00-fa48-11e9-82a0-e028e50efa02.png │ │ ├── 68272945-d4368700-006d-11ea-89a1-fea10c525186.png │ │ ├── Communication-Ask-Task-Message-Preview.png │ │ ├── Communication-Data-Collection-Field-based.png │ │ ├── Communication-Data-Collection-Stand-alone.png │ │ ├── Communication-New-Ask-Task.png │ │ ├── Playbooks_Account-Manager.png │ │ ├── Playbooks_Input-Output.png │ │ ├── Playbooks_Inputs.png │ │ ├── Playbooks_Outputs.png │ │ ├── communication_example-ask-task-timing.png │ │ ├── communication_example-ask-task.png │ │ ├── deprecated-playbook-1.png │ │ ├── deprecated-playbook-2.png │ │ ├── playbook-settings.png │ │ ├── playbook_conditional_automation.png │ │ ├── playbook_conditional_built-in.png │ │ └── task_result.png │ ├── reference │ │ ├── CaptureTheFlag │ │ │ ├── ctfcsiimage.jpg │ │ │ ├── image1.png │ │ │ ├── image10.png │ │ │ ├── image11.png │ │ │ ├── image12.png │ │ │ ├── image13.png │ │ │ ├── image14.png │ │ │ ├── image15.png │ │ │ ├── image16.png │ │ │ ├── image17.png │ │ │ ├── image18.png │ │ │ ├── image19.png │ │ │ ├── image2.png │ │ │ ├── image20.png │ │ │ ├── image21.png │ │ │ ├── image22.png │ │ │ ├── image23.png │ │ │ ├── image24.png │ │ │ ├── image3.png │ │ │ ├── image6.png │ │ │ ├── image8.png │ │ │ ├── image9.png │ │ │ └── marketplace_search_for_ctf.png │ │ ├── Change_Management │ │ │ ├── Jira_Map_fields.PNG │ │ │ ├── Jira_Mapper_load_json.PNG │ │ │ ├── Jira_copy_from.PNG │ │ │ ├── Jira_query.PNG │ │ │ ├── Jira_settings.PNG │ │ │ ├── SNOW_Map_fields.PNG │ │ │ ├── SNOW_copy_from.PNG │ │ │ ├── Snow_settings.PNG │ │ │ ├── classification_and_mapping_Jira.PNG │ │ │ └── classification_and_mapping_SNOW.PNG │ │ ├── EmailCommunication_EmailThreadsLayout.png │ │ ├── EmailCommunication_PopUp.png │ │ ├── EmailCommunication_SendEmailReplySettings.png │ │ ├── Endpoint_Malware_Investigation_-_Generic_V2 │ │ │ ├── Calssifiaction_and_Mapping.png │ │ │ ├── Data_fetched_Json.png │ │ │ ├── Incident_type_settings.png │ │ │ ├── Indicators_extraction_rules.png │ │ │ ├── Instance_Settings.png │ │ │ ├── Mapper.png │ │ │ ├── Mapper_select_fileds.png │ │ │ └── Select_Instance.png │ │ ├── HealthCheck_GridError.png │ │ ├── MalwareInvestigationAndResponse │ │ │ ├── Malware_Investigation_And_Response_layout1.png │ │ │ ├── Malware_Investigation_And_Response_layout2.png │ │ │ ├── Malware_Investigation_And_Response_layout3.png │ │ │ └── Malware_Investigation_And_Response_layout4.png │ │ ├── PowershellRemoting │ │ │ ├── 1-OU.JPG │ │ │ ├── 10-trouble.JPG │ │ │ ├── 11-trouble.JPG │ │ │ ├── 13-workgroup.JPG │ │ │ ├── 14-workgroup.JPG │ │ │ ├── 15-workgroup.JPG │ │ │ ├── 17-cert.JPG │ │ │ ├── 18-cert.JPG │ │ │ ├── 19-cert.JPG │ │ │ ├── 2-OU.JPG │ │ │ ├── 20-cert.JPG │ │ │ ├── 21-cert.JPG │ │ │ ├── 22-cert.JPG │ │ │ ├── 23-cert.JPG │ │ │ ├── 24-cert.JPG │ │ │ ├── 25-cert.JPG │ │ │ ├── 26-gpo.JPG │ │ │ ├── 27-gpo.JPG │ │ │ ├── 28-gpo.JPG │ │ │ ├── 29-cert.JPG │ │ │ ├── 3-gpo.JPG │ │ │ ├── 30-ssl.JPG │ │ │ ├── 4-gpo.JPG │ │ │ ├── 4_1-gpo.jpg │ │ │ ├── 5-gpo.JPG │ │ │ ├── 6-gpo.JPG │ │ │ ├── 7-gpo.JPG │ │ │ ├── 8-gpo.JPG │ │ │ ├── 9-trouble.JPG │ │ │ ├── error1.jpg │ │ │ ├── error2.jpg │ │ │ └── error3.jpg │ │ ├── QRadar │ │ │ └── QRadar_offense_summary.png │ │ ├── RapidBreachResponseLayout │ │ │ ├── Hunting_Results.png │ │ │ ├── IR_Procedures.png │ │ │ ├── Incident_Info.png │ │ │ └── Marketplace.png │ │ ├── SAML-ADFS │ │ │ ├── mceclip0.png │ │ │ ├── mceclip1.png │ │ │ ├── mceclip10.png │ │ │ ├── mceclip11.png │ │ │ ├── mceclip12.png │ │ │ ├── mceclip13.png │ │ │ ├── mceclip14.png │ │ │ ├── mceclip15.png │ │ │ ├── mceclip16.png │ │ │ ├── mceclip17.png │ │ │ ├── mceclip18.png │ │ │ ├── mceclip19.png │ │ │ ├── mceclip2.png │ │ │ ├── mceclip20.png │ │ │ ├── mceclip21.png │ │ │ ├── mceclip3.png │ │ │ ├── mceclip4.png │ │ │ ├── mceclip5.png │ │ │ ├── mceclip6.png │ │ │ ├── mceclip7.png │ │ │ ├── mceclip8.png │ │ │ └── mceclip9.png │ │ ├── SAML-Okta_Create_New_App.png │ │ ├── SAML-Okta_Group_Attributes.png │ │ ├── SAML-PingOne │ │ │ ├── SAML-PingOne-App-Config.png │ │ │ ├── SAML-PingOne-App-Details.png │ │ │ ├── SAML-PingOne-Download-Public-Cert.png │ │ │ ├── SAML-PingOne-Group-Access.png │ │ │ ├── SAML-PingOne-IDP-ID.png │ │ │ ├── SAML-PingOne-Metadata-File.png │ │ │ ├── SAML-PingOne-Metadata-URL.png │ │ │ ├── SAML-PingOne-New-App.png │ │ │ ├── SAML-PingOne-Show-App-Details.png │ │ │ └── SAML-PingOne-Users-Roles.png │ │ ├── SplunkAddOn │ │ │ ├── splunk-add-data-new-search-save-as-alert.png │ │ │ ├── splunk-add-data-new-search-start-searching.png │ │ │ ├── splunk-add-data-upload-data-form.png │ │ │ ├── splunk-add-data-upload-data.png │ │ │ ├── splunk-add-data.png │ │ │ ├── splunk-add-on-configuration-add-xsoar-instance-form.png │ │ │ ├── splunk-add-on-configuration-add-xsoar-instance.png │ │ │ ├── splunk-add-on-configuration-additional-settings.png │ │ │ ├── splunk-add-on-configuration-logging.png │ │ │ ├── splunk-add-on-configuration-proxy.png │ │ │ ├── splunk-add-on-configuration.png │ │ │ ├── splunk-add-on-incidents.png │ │ │ ├── splunk-install-app.png │ │ │ ├── splunk-restart-prompt.png │ │ │ └── splunk-upload-an-app.png │ │ ├── WindowsForensics │ │ │ ├── Forensic_acquisition.JPG │ │ │ └── analysis.JPG │ │ ├── XDRLayout.png │ │ ├── XSOAR-CICD │ │ │ ├── artifacts_server.png │ │ │ ├── cicd_integration.png │ │ │ ├── cicd_playbook.png │ │ │ ├── config_json.png │ │ │ ├── github_notsuccess.png │ │ │ ├── github_success.png │ │ │ ├── pack_example.png │ │ │ └── without_artifacts_server.png │ │ ├── XSOAR-format.png │ │ ├── Xpanse │ │ │ └── Xpanse-Instance-Generic.png │ │ ├── aws-s3.png │ │ ├── aws-sns-mapping1.png │ │ ├── aws-sns-mapping2.png │ │ ├── aws-sns-mceclip0.png │ │ ├── aws-sns-mceclip1.png │ │ ├── build-automate-cloud-flow.png │ │ ├── certificate-verification-altnames.png │ │ ├── certificate-verification-common-name.png │ │ ├── certificate-verification-expire-date.png │ │ ├── credentials-example-1.png │ │ ├── credentials-example-2.png │ │ ├── credentials-manual.png │ │ ├── debug-mode-example.png │ │ ├── default layout 1.png │ │ ├── default layout 2.png │ │ ├── default layout 3.png │ │ ├── default layout 4.png │ │ ├── duo-mceclip0.png │ │ ├── expanse-incident-layout.png │ │ ├── fetch-incidents-debug.png │ │ ├── flow.png │ │ ├── gmail-enable.png │ │ ├── gmail-mceclip0.png │ │ ├── gmail-mceclip1-1.png │ │ ├── gmail-mceclip2.png │ │ ├── google-apps-script-executions.png │ │ ├── google-apps-script-trigger.png │ │ ├── google-forms-cortex-xsoar.png │ │ ├── google-forms-mapping.png │ │ ├── google-maps-gen-purpose.png │ │ ├── google-maps-indicator-type.png │ │ ├── google-maps-map.png │ │ ├── http.png │ │ ├── ilm-add-fields-to-layout.png │ │ ├── ilm-attach-duplicate-mapper-to-integration.png │ │ ├── ilm-configuration.png │ │ ├── ilm-create-indicator-field.png │ │ ├── ilm-create-new-incident-field.png │ │ ├── ilm-integration-instance.png │ │ ├── ilm-map-fields.png │ │ ├── ilm-toggle-indicators.png │ │ ├── integration-name-config.png │ │ ├── log_level.png │ │ ├── marketplace-forensics.png │ │ ├── mceclip0.png │ │ ├── mceclip1-gmail.png │ │ ├── mceclip1.png │ │ ├── mceclip1_1.png │ │ ├── mceclip2.png │ │ ├── mceclip3.png │ │ ├── mceclip5.png │ │ ├── mceclip7.png │ │ ├── mceclip8.png │ │ ├── ms-form-choose-operation.png │ │ ├── ms-form-operation.png │ │ ├── ms-form-response-details.png │ │ ├── ms-form-response.png │ │ ├── ms-form-sign-in.png │ │ ├── test-module-debug.png │ │ └── unclassified edit.png │ ├── scripts │ │ ├── deprecated-script-1.png │ │ └── deprecated-script-2.png │ ├── snowv2-incoming-mapper.png │ ├── translation-results.png │ └── tutorials │ │ ├── tut-integration-ui │ │ ├── 50829961-de54ff80-134e-11e9-8a85-d5b1bb24e246.png │ │ ├── 50830395-5cfe6c80-1350-11e9-9284-0e30836cf885.png │ │ ├── 50831927-37c02d00-1355-11e9-89eb-f58507f46027.png │ │ ├── 50833113-e74ace80-1358-11e9-8969-b82959356bd9.png │ │ ├── 50833193-1eb97b00-1359-11e9-9d00-bf46fa52c37f.png │ │ ├── 50833314-70620580-1359-11e9-99cd-704f59dc67d3.png │ │ ├── 50833385-a7381b80-1359-11e9-9c3a-3b376a993d2c.png │ │ ├── 50833437-cfc01580-1359-11e9-9880-1a53562542dc.png │ │ ├── 50833475-ebc3b700-1359-11e9-96f5-2f45c3eff27e.png │ │ ├── 50833581-5248d500-135a-11e9-941f-bd27964168d8.png │ │ ├── 50833654-9b008e00-135a-11e9-9e08-f1d51f1dc52a.png │ │ ├── 50833717-d69b5800-135a-11e9-85f5-81b6a1dd1e8c.png │ │ ├── 50833826-24b05b80-135b-11e9-8d18-3ee1d52301c1.png │ │ ├── 50833982-8b357980-135b-11e9-9d0e-0d85834e3c65.png │ │ ├── 50834106-e1a2b800-135b-11e9-892f-a00c74b949f6.png │ │ ├── 50834260-3cd4aa80-135c-11e9-80f7-39d80d55d7e9.png │ │ ├── 50834429-a6ed4f80-135c-11e9-9029-40c130be7371.png │ │ ├── 50835627-e49fa780-135f-11e9-8c96-8c3e138d6a9b.png │ │ ├── 50840340-efac0500-136a-11e9-9432-dc3457d7cfd1.png │ │ ├── 50840432-37cb2780-136b-11e9-8c2a-c56fa87a57b9.png │ │ ├── 50840624-94c6dd80-136b-11e9-832e-0a745b2d754a.png │ │ ├── apikey_param.png │ │ ├── argument-text-8.png │ │ ├── argument-text.png │ │ ├── byoi-8.png │ │ ├── byoi.png │ │ ├── command-args.png │ │ ├── command-name.png │ │ ├── command-yoda-speak.png │ │ ├── connect-tasks-8.png │ │ ├── connect-tasks.png │ │ ├── cortex-xsoar-ide-8.png │ │ ├── cortex-xsoar-ide.png │ │ ├── drag-logo.png │ │ ├── fetch-incidents.png │ │ ├── insecure.png │ │ ├── integration-settings-image-8.png │ │ ├── integration-settings-image.png │ │ ├── navigate-byoi.png │ │ ├── new-incident.png │ │ ├── outputs-new.png │ │ ├── outputs-screen.png │ │ ├── outputs.png │ │ ├── parameter-api-key.png │ │ ├── parameter-api-url.png │ │ ├── parameter-insecure.png │ │ ├── parameter-proxy.png │ │ ├── parameters-screen.png │ │ ├── parameters.png │ │ ├── playbook-complete-8.png │ │ ├── playbook-complete.png │ │ ├── playbook-quiet.png │ │ ├── print-task-new.png │ │ ├── print-task-xsoar-8.png │ │ ├── print-task.png │ │ ├── proxy.png │ │ ├── script-helper-screen.png │ │ ├── source-text.png │ │ ├── translation-results.png │ │ ├── translationcontext-new-8.png │ │ ├── translationcontext-new.png │ │ ├── translationcontext.png │ │ ├── url.png │ │ ├── war-room-entry.png │ │ ├── xisam-incident.png │ │ ├── xsiam-yoda-task.png │ │ ├── xsoar-yoda-task.png │ │ ├── yoda-command-cli.png │ │ ├── yoda-instance.png │ │ ├── yoda-speak.png │ │ └── yoda-utility.png │ │ ├── tut-microsoft-auth-guide │ │ ├── app-api.png │ │ ├── app-connect.png │ │ ├── app-perm.png │ │ ├── app-reg.png │ │ ├── choose_your_resource.png │ │ ├── device_code.png │ │ ├── essentials.png │ │ ├── graph-user.png │ │ ├── home_microsoft_azure_portal.png │ │ ├── instance_detailed_instructions.png │ │ ├── instance_detailed_instructions_new.png │ │ ├── reg-app.png │ │ └── subscription_id_resourse_group.png │ │ ├── tut-minemeld-migration │ │ ├── aws-feed-cog.png │ │ ├── aws-feed-configuration-1.png │ │ ├── aws-feed-configuration-2.png │ │ ├── aws-feed-configuration-3.png │ │ ├── aws-feed-configuration-4.png │ │ ├── aws-feed-configuration-5.png │ │ ├── exit_addresses-node.png │ │ ├── exit_addresses-prototype.png │ │ ├── export-indicators-configuration-1.png │ │ ├── export-indicators-configuration-2.png │ │ ├── feed-hc-green-output-node.png │ │ ├── feed-hc-green-output-prototype.png │ │ ├── ipv4-aggregator-node.png │ │ ├── ipv4-aggregator-prototype.png │ │ ├── mm-aws-cloudfront-prototype.png │ │ ├── mm-aws-prototypes.png │ │ ├── mm-o365-prototypes.png │ │ ├── mm-o365-worldwide-any-prototype.png │ │ ├── office-feed-configuration-1.png │ │ ├── office-feed-configuration-2.png │ │ ├── office-feed-configuration-3.png │ │ ├── office-feed-configuration-4.png │ │ ├── search-aws-feed.png │ │ ├── search-bambenek.png │ │ ├── search-export-indicators.png │ │ └── search-office-feed.png │ │ ├── tut-setup-dev-codespace │ │ ├── create-a-new-codespace.gif │ │ └── open-codespace-in-browser.gif │ │ ├── tut-setup-dev-container │ │ └── dev-container-open.png │ │ ├── tut-setup-dev │ │ ├── 01-checkdemistolicense.gif │ │ ├── 02-jumptopage.png │ │ ├── 03-github.png │ │ ├── 04-fork.png │ │ ├── 05-copygithuburl.png │ │ └── 06-githubbranch.png │ │ ├── tutorial-incident-lifecycle │ │ ├── C-M_SIEM_Mapping.png │ │ ├── C-M_SIEM_Set-Classification-Key.png │ │ ├── C-M_SIEM_Set-Classification.png │ │ ├── Customize-Layout_Insert-Field.png │ │ ├── Incidents_Ingested-Incidents.png │ │ ├── Indicator-Type_Default-QRadarpng.png │ │ ├── Investigate_Inciden.png │ │ └── New-Field_Importance.png │ │ ├── tutorial-playbook-TIM-EDL │ │ ├── tutorial_playbook_add-list.png │ │ ├── tutorial_playbook_add-tag-new.png │ │ ├── tutorial_playbook_add-tag.png │ │ ├── tutorial_playbook_define-job-new.png │ │ ├── tutorial_playbook_define-job.png │ │ ├── tutorial_playbook_define-time-triggered-job-new.png │ │ ├── tutorial_playbook_define-time-triggered-job.png │ │ ├── tutorial_playbook_inputs-outputs-context.png │ │ ├── tutorial_playbook_inputs-outputs-new.png │ │ ├── tutorial_playbook_inputs-outputs.png │ │ ├── tutorial_playbook_manual-incident-id-new.png │ │ ├── tutorial_playbook_manual-incident-id.png │ │ ├── tutorial_playbook_pushed-to-SIEM.png │ │ ├── tutorial_playbook_tim_feed-new.png │ │ └── tutorial_playbook_tim_feed.png │ │ └── tutorial-playbook-export-to-splunk │ │ ├── add_server-configuration.png │ │ ├── configure_export-indicator-service.png │ │ ├── splunk_intelligence-download-settings.png │ │ ├── splunk_parsing-options.png │ │ └── splunk_threat_artifiacts.png ├── documentation │ ├── documentation_tips.md │ ├── images_in_documentation_files.md │ ├── integration-description.md │ ├── pack-docs.md │ ├── readme_file.md │ └── release-notes.md ├── incidents │ ├── incident-classification-mapping.md │ ├── incident-customize-incident-layout.md │ ├── incident-fields.md │ ├── incident-jobs.md │ ├── incident-lists.md │ ├── incident-pre-processing.md │ ├── incident-types.md │ └── incident-xsoar-incident-lifecycle.md ├── indicators │ ├── domain-extraction.md │ ├── indicator-fields.md │ ├── relationships.md │ └── url-extraction.md ├── integrations │ ├── Trust-any-certificate.md │ ├── api-execution-metrics.md │ ├── code-conventions.md │ ├── code-generator.md │ ├── collectors.md │ ├── context-and-outputs.md │ ├── context-standards-about.md │ ├── context-standards-mandatory.md │ ├── context-standards-recommended.md │ ├── custom-indicator.md │ ├── dbot.md │ ├── debugging.md │ ├── docker.md │ ├── dt.md │ ├── entitlements.md │ ├── feeds.md │ ├── fetch-incidents-lookback.md │ ├── fetching-credentials.md │ ├── fetching-incidents.md │ ├── generic-commands-about.md │ ├── generic-commands-reputation.md │ ├── generic-endpoint-command.md │ ├── get-entries-filter.md │ ├── iam-integrations.md │ ├── img_1.png │ ├── img_2.png │ ├── integration-cache.md │ ├── integration-desc-redir.md │ ├── integration-doc-redir.md │ ├── integration-logo.md │ ├── linting.md │ ├── long-running.md │ ├── mirroring.md │ ├── package-dir.md │ ├── parameter-types.md │ ├── powershell-code.md │ ├── reopen-investigation.md │ ├── scheduled-commands.md │ ├── task-complete.md │ ├── test-playbooks.md │ ├── unit-testing.md │ ├── yaml-file.md │ └── yml-from-python-code-gen.md ├── packs │ ├── pack-docs-redir.md │ ├── pack-rn-redir.md │ └── packs-format.md ├── partners │ ├── adopt.md │ ├── become-a-tech-partner.md │ ├── certification.md │ ├── office-hours.md │ └── why-xsoar.md ├── playbooks │ ├── generic-polling.md │ ├── playbook-contributions.md │ ├── playbook-conventions.md │ ├── playbook-doc-redir.md │ ├── playbook-settings.md │ ├── playbooks-communication-task-concepts.md │ ├── playbooks-communication-task-customize-message.md │ ├── playbooks-create-communication-task.md │ ├── playbooks-create-conditional-task.md │ ├── playbooks-create-playbook-task.md │ ├── playbooks-extend_context.md │ ├── playbooks-field-reference.md │ ├── playbooks-generic.md │ ├── playbooks-inputs-outputs.md │ ├── playbooks-overview.md │ └── playbooks.md ├── privacy.md ├── reference │ └── .gitinclude ├── scripts │ └── .gitinclude ├── tutorials │ ├── tut-design.md │ ├── tut-integration-ui.md │ ├── tut-setup-dev-codespace.md │ ├── tut-setup-dev-remote.md │ └── tut-setup-dev.md └── welcome.md ├── docusaurus-plugin-gtm └── index.js ├── docusaurus.config.js ├── firebase.json ├── index.json ├── mdx-parse-server.js ├── mdx-parse.js ├── package-lock.json ├── package.json ├── plopfile.js ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── sidebars.js ├── src ├── css │ └── custom.css ├── pages │ ├── index.js │ ├── marketplace │ │ ├── contributors.js │ │ ├── index.js │ │ ├── styles.module.css │ │ └── top-contributors.md │ └── styles.module.css └── theme │ ├── Button │ ├── index.tsx │ └── styles.module.css │ ├── ContentPackTabs │ ├── index.js │ └── styles.module.css │ ├── DocItem │ ├── index.js │ └── styles.module.css │ ├── DocSidebar │ └── index.js │ └── NotFound.js ├── static ├── _redirects ├── assets │ ├── CortexXSOAR_PartnerReadmeRaffle_Spring2021_OfficialRules.pdf │ ├── CortexXSOAR_PartnerReadmeRaffle_Summer2021_OfficialRules.pdf │ ├── NextWaveTechnologyPartnerProgramAgreement.pdf │ └── nfr-policy.pdf ├── demisto-bundle-1597047141768.woff ├── doc_imgs │ └── .gitinclude ├── img │ ├── Cortex XSOAR indicator fields.png │ ├── Cortex-XSOAR-black.svg │ ├── Cortex-XSOAR-green.svg │ ├── Cortex-XSOAR-product-green.svg │ ├── Cortex_XSoar_logo.svg │ ├── Cortex_XSoar_logos_RGB_Cortex-Ng-Soar-Horizontal-KO.svg │ ├── Cortex_XSoar_logos_RGB_Cortex-Ng-Soar-Horizontal.svg │ ├── Cortex_XSoar_logos_RGB_Cortex-Ng-Soar-Horizontal_250_white.png │ ├── Demisto-Icon-Dark.pdf │ ├── Demisto-Icon-Dark.png │ ├── Demisto-Icon-Dark.svg │ ├── Demisto-Icon-White.pdf │ ├── Demisto-Icon-White.png │ ├── Demisto-Icon-White.svg │ ├── Demisto-fullcolor-logo.png │ ├── Demisto_Icon-CMYK.png │ ├── Demisto_Icon.png │ ├── Demisto_Logo.png │ ├── PANW_Parent_Brand_Primary_Logo_RGB_KO.svg │ ├── TopContributors.png │ ├── christopher-chedeau.jpg │ ├── cli.png │ ├── clicontextmenu.png │ ├── climymessages.png │ ├── cliopen.png │ ├── cliopencommands.png │ ├── cliplaygroundpopup.png │ ├── cliprint.png │ ├── cliprinthelloworld.png │ ├── cliprintmessages.png │ ├── cortexfavicon.png │ ├── docusaurus-slash-first-birthday.svg │ ├── docusaurus.ico │ ├── docusaurus.png │ ├── docusaurus.svg │ ├── docusaurus_keytar.svg │ ├── docusaurus_live.gif │ ├── docusaurus_live.webp │ ├── docusaurus_monochrome.svg │ ├── docusaurus_speed.svg │ ├── favicon.ico │ ├── frank.svg │ ├── getting-started-preparation-verify.png │ ├── googlebbd50c8f1c6e7332.html │ ├── hector-ramos.png │ ├── markdown.png │ ├── marketplace_banner_images │ │ ├── Marketplace_Vertical_1.png │ │ ├── Marketplace_Vertical_2.png │ │ └── Marketplace_Vertical_3.png │ ├── oss_logo.png │ ├── prismafavicon.png │ ├── profilo_blog_post_android_ios.png │ ├── profilo_blog_post_palette_website_color_picker.png │ ├── profilo_blog_post_photoshop_color_picker.png │ ├── profilo_blog_post_website_final.png │ ├── profilo_blog_post_website_final_docs.png │ ├── profilo_blog_post_website_initial.png │ ├── react.svg │ ├── ricky-vetter.jpg │ ├── search.svg │ ├── slash-birth.png │ ├── slash-introducing.svg │ ├── slash-upandrunning.png │ ├── strata_favicon.png │ ├── translation.svg │ ├── tutorial-git-clone.png │ ├── undraw_algolia.svg │ ├── undraw_around_the_world.svg │ ├── undraw_code_review.svg │ ├── undraw_creative_process_q6aw.svg │ ├── undraw_creative_team_r90h.svg │ ├── undraw_developer_activity_bv83.svg │ ├── undraw_docusaurus_browser.svg │ ├── undraw_docusaurus_code.svg │ ├── undraw_docusaurus_fb.svg │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_process.svg │ ├── undraw_docusaurus_react.svg │ ├── undraw_docusaurus_tree.svg │ ├── undraw_features_overview.svg │ ├── undraw_futuristic_interface_4q3p.svg │ ├── undraw_google_analytics_a57d.svg │ ├── undraw_mind_map_cwng.svg │ ├── undraw_monitor.svg │ ├── undraw_note_list.svg │ ├── undraw_online.svg │ ├── undraw_open_source.svg │ ├── undraw_operating_system.svg │ ├── undraw_pair_programming_njlp.svg │ ├── undraw_prototyping_process_rswj.svg │ ├── undraw_react.svg │ ├── undraw_selecting_1lx3.svg │ ├── undraw_setup_wizard.svg │ ├── undraw_tweetstorm.svg │ ├── undraw_typewriter.svg │ ├── undraw_user_flow_vr6w.svg │ ├── undraw_version_control.svg │ ├── undraw_version_control_9bpv.svg │ ├── undraw_youtube_tutorial.svg │ └── versioning.svg └── marketplace-index-mapping.json ├── templates └── details.hbs ├── tutorial ├── integration-Yoda_Speak.yml └── playbook-Yoda_Speak.yml └── urls_ignore.txt /.env: -------------------------------------------------------------------------------- 1 | PYTHONPATH=content-repo: 2 | -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "pan-dev-f1b58" 4 | }, 5 | "targets": { 6 | "pan-dev-f1b58": { 7 | "hosting": { 8 | "xsoar.pan.dev": [ 9 | "xsoar-pan-dev" 10 | ] 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /.gitlab/ci/.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | CURRENT_BRANCH_NAME: $INFRA_BRANCH 3 | 4 | include: 5 | - file: "/.gitlab/ci/content-docs/.gitlab-ci.yml" 6 | ref: $INFRA_BRANCH 7 | project: "${CI_PROJECT_NAMESPACE}/infra" 8 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | # Default node limit is 2 GB. GitLab with high-memory-tag limit is 48 GB. We increase it here to 45 GB. 2 | node-options=--max-old-space-size=46080 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.17.1 2 | -------------------------------------------------------------------------------- /content-repo/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max_line_length = 150 3 | exclude = demistomock.py,CommonServerPython.py 4 | -------------------------------------------------------------------------------- /content-repo/.gitignore: -------------------------------------------------------------------------------- 1 | CommonServerPython.py 2 | demistomock.py 3 | !test_data/demistomock.py 4 | !test_data/CommonServerPython.py 5 | approved_tags.json 6 | approved_usecases.json 7 | .content-bucket 8 | top-contributors.md 9 | -------------------------------------------------------------------------------- /content-repo/articles-index.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: articles-index 3 | title: Articles 4 | sidebar_label: Index 5 | custom_edit_url: "" 6 | slug: /reference/articles 7 | --- 8 | 9 | In this section you can find useful Articles about Cortex XSOAR Content. 10 | 11 | -------------------------------------------------------------------------------- /content-repo/extra-docs/releases/19.7.0.md: -------------------------------------------------------------------------------- 1 | ##### Published on 09 July 2019 2 | The release has been replaced by 19.7.1 -------------------------------------------------------------------------------- /content-repo/extra-docs/releases/19.8.1.md: -------------------------------------------------------------------------------- 1 | ##### Published on 20 August 2019 2 | The release has been replaced by 19.8.2 -------------------------------------------------------------------------------- /content-repo/mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | ignore_missing_imports = True 3 | show_error_context = True 4 | show_error_codes = True 5 | pretty = True 6 | follow_imports = silent 7 | files = mdx_utils.py,gendocs.py,post_github_comment.py 8 | -------------------------------------------------------------------------------- /content-repo/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | junit_family=legacy 3 | norecursedirs=test_data 4 | -------------------------------------------------------------------------------- /content-repo/reference-index.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: index 3 | title: Reference Docs 4 | sidebar_label: Index 5 | custom_edit_url: "" 6 | slug: /reference/index 7 | --- 8 | 9 | Find reference documentation for Integrations, Automations, Playbooks and more. 10 | 11 | -------------------------------------------------------------------------------- /content-repo/test_data/empty-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/empty-readme.md -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Integrations/SMIME_Messaging/SMIME_Messaging_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Integrations/SMIME_Messaging/SMIME_Messaging_image.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/.pack-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/.pack-ignore -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/.secrets-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/.secrets-ignore -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/README.md -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/add-scope-admin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/add-scope-admin-1.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/add-scope-admin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/add-scope-admin-2.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/add-scope-admin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/add-scope-admin-3.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/create-project-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/create-project-1.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/enable-gke-api-enable-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/enable-gke-api-enable-2.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/google-api-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/google-api-menu.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/google_calendar_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/google_calendar_api.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/service-account-create-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/service-account-create-1.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/service-account-create-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/service-account-create-3.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/service-account-create-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/service-account-create-4.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/service-acount-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/GoogleCalendar/doc_files/service-acount-menu.png -------------------------------------------------------------------------------- /content-repo/test_data/sample-content/Packs/ProofpointServerProtection/doc_imgs/api_role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/content-repo/test_data/sample-content/Packs/ProofpointServerProtection/doc_imgs/api_role.png -------------------------------------------------------------------------------- /demisto_content_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/demisto_content_logo.png -------------------------------------------------------------------------------- /docs/dashboards/.gitinclude: -------------------------------------------------------------------------------- 1 | DO NOT DELETE -------------------------------------------------------------------------------- /docs/doc_imgs/concepts/.gitinclude: -------------------------------------------------------------------------------- 1 | DO NOT DELETE -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/circleci_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/circleci_error.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/content-bot-pr-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/content-bot-pr-message.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/content-new-fork.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/content-new-fork.gif -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/content-new-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/content-new-pr.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/contribution-registration-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/contribution-registration-form.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/doc_status_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/doc_status_green.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/doc_status_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/doc_status_red.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/docs-compare-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/docs-compare-changes.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/docs-create-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/docs-create-issue.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/docs-create-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/docs-create-pr.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/docs-edit-this-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/docs-edit-this-page.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/docs-github-create-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/docs-github-create-issue.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/docs-github-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/docs-github-edit.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/docs-propose-change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/docs-propose-change.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/failed_CLA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/failed_CLA.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/pull_request_review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/pull_request_review.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/request-review-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/request-review-icon.png -------------------------------------------------------------------------------- /docs/doc_imgs/contributing/resolve_conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/contributing/resolve_conversation.png -------------------------------------------------------------------------------- /docs/doc_imgs/dashboards/.gitinclude: -------------------------------------------------------------------------------- 1 | DO NOT DELETE -------------------------------------------------------------------------------- /docs/doc_imgs/demisto-dbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/demisto-dbot.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/Auto-Extract_ParseEmailFiles_Disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/Auto-Extract_ParseEmailFiles_Disabled.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/Auto-Extract_ParseEmailFiles_Inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/Auto-Extract_ParseEmailFiles_Inline.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/Auto-Extract_ParseEmailFiles_Outputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/Auto-Extract_ParseEmailFiles_Outputs.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/Incident_Lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/Incident_Lifecycle.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/Jobs_Feed-Triggered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/Jobs_Feed-Triggered.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/Jobs_Time-Triggered_Basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/Jobs_Time-Triggered_Basic.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/Jobs_Time-Triggered_Queue-handling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/Jobs_Time-Triggered_Queue-handling.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/Layout-Builder_Dynamic-Section-Query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/Layout-Builder_Dynamic-Section-Query.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/Layout-Builder_Section-Cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/Layout-Builder_Section-Cards.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/PreProcessingRules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/PreProcessingRules.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/SLA_Incident_Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/SLA_Incident_Field.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/Single-Select_False-Positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/Single-Select_False-Positive.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/fetchhistory.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/fetchhistory.gif -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/incident-fields-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/incident-fields-search.png -------------------------------------------------------------------------------- /docs/doc_imgs/incidents/preProcessing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/incidents/preProcessing.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/40935346-7ca3b24a-6840-11e8-8540-b00677cd6657.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/40935346-7ca3b24a-6840-11e8-8540-b00677cd6657.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/40935354-8406dcc4-6840-11e8-9b0c-b0a9c4bd8a99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/40935354-8406dcc4-6840-11e8-9b0c-b0a9c4bd8a99.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/41154872-459f93fe-6b24-11e8-848b-25ca71f59629.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/41154872-459f93fe-6b24-11e8-848b-25ca71f59629.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/50275566-51eaa780-0448-11e9-8089-b3631fff1274.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/50275566-51eaa780-0448-11e9-8089-b3631fff1274.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/50277516-4d74bd80-044d-11e9-94b6-5195dd0db796.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/50277516-4d74bd80-044d-11e9-94b6-5195dd0db796.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/50571324-46846e00-0db0-11e9-9888-ddd9dc275541.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/50571324-46846e00-0db0-11e9-9888-ddd9dc275541.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/50571503-ed6b0900-0db4-11e9-8e9e-dc23f5ff403c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/50571503-ed6b0900-0db4-11e9-8e9e-dc23f5ff403c.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/50575189-ac4d1600-0e01-11e9-83fc-7a8f6f8ce55a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/50575189-ac4d1600-0e01-11e9-83fc-7a8f6f8ce55a.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/50575199-fd5d0a00-0e01-11e9-9d54-944eb7c6f287.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/50575199-fd5d0a00-0e01-11e9-9d54-944eb7c6f287.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/50736134-25fa5080-11c2-11e9-89c5-12844545b5ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/50736134-25fa5080-11c2-11e9-89c5-12844545b5ff.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/50771147-6aedb800-1292-11e9-833f-b5dd13e3507b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/50771147-6aedb800-1292-11e9-833f-b5dd13e3507b.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/53886096-eae09600-4027-11e9-8c2d-a46078c3dcc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/53886096-eae09600-4027-11e9-8c2d-a46078c3dcc4.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/53886311-69d5ce80-4028-11e9-9755-08585fecff34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/53886311-69d5ce80-4028-11e9-9755-08585fecff34.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/53886981-f339d080-4029-11e9-9d27-a76b85d2d025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/53886981-f339d080-4029-11e9-9d27-a76b85d2d025.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54881975-2966b500-4e5e-11e9-87c7-b9f2eadeef5d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54881975-2966b500-4e5e-11e9-87c7-b9f2eadeef5d.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54881985-48654700-4e5e-11e9-8e1c-7a95d1b84328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54881985-48654700-4e5e-11e9-8e1c-7a95d1b84328.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54881995-616df800-4e5e-11e9-8f15-475422b97066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54881995-616df800-4e5e-11e9-8f15-475422b97066.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54882043-ac880b00-4e5e-11e9-9b59-8cb0f08594d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54882043-ac880b00-4e5e-11e9-9b59-8cb0f08594d4.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54882097-4a7bd580-4e5f-11e9-80d7-4db8859bbab4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54882097-4a7bd580-4e5f-11e9-80d7-4db8859bbab4.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54882114-68493a80-4e5f-11e9-89a0-1d2a7106980f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54882114-68493a80-4e5f-11e9-89a0-1d2a7106980f.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54882368-f7575200-4e61-11e9-86e4-c5e33948f35e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54882368-f7575200-4e61-11e9-86e4-c5e33948f35e.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54882405-51581780-4e62-11e9-86a4-293c3eb59cbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54882405-51581780-4e62-11e9-86a4-293c3eb59cbc.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54882618-89f8f080-4e64-11e9-8bbc-e4974c9466a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54882618-89f8f080-4e64-11e9-8bbc-e4974c9466a5.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54882634-ae54cd00-4e64-11e9-9194-ec7bee84ca76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54882634-ae54cd00-4e64-11e9-9194-ec7bee84ca76.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54883090-3ee1dc00-4e6a-11e9-88b7-5bbce20702d9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54883090-3ee1dc00-4e6a-11e9-88b7-5bbce20702d9.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54883094-591bba00-4e6a-11e9-8066-945d82bba1e4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54883094-591bba00-4e6a-11e9-8066-945d82bba1e4.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54883128-d810f280-4e6a-11e9-94b6-cd6dc43987e9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54883128-d810f280-4e6a-11e9-94b6-cd6dc43987e9.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/54883139-f4ad2a80-4e6a-11e9-85c4-4eef17ab75ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/54883139-f4ad2a80-4e6a-11e9-85c4-4eef17ab75ac.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/65404184-313ced00-dde0-11e9-9257-e61e2943fd75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/65404184-313ced00-dde0-11e9-9257-e61e2943fd75.gif -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/66122533-9b2b7280-e5e8-11e9-92de-f9fbe75b7250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/66122533-9b2b7280-e5e8-11e9-92de-f9fbe75b7250.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/66122634-e6458580-e5e8-11e9-9030-6514832c9422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/66122634-e6458580-e5e8-11e9-9030-6514832c9422.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/66122754-2d337b00-e5e9-11e9-8775-562e228e3fe6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/66122754-2d337b00-e5e9-11e9-8775-562e228e3fe6.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/66123930-cb284500-e5eb-11e9-804d-6154423e6cee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/66123930-cb284500-e5eb-11e9-804d-6154423e6cee.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/70272523-0f34f300-17b1-11ea-89a0-e4e0e359f614.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/70272523-0f34f300-17b1-11ea-89a0-e4e0e359f614.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/Screenshot-long-encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/Screenshot-long-encrypted.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/Unit-Testing-Debug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/Unit-Testing-Debug.gif -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/XSIAM_XQL_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/XSIAM_XQL_query.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/XSOAR_STS_Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/XSOAR_STS_Flow.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/add-values-to-lookup-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/add-values-to-lookup-table.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/bc_alert_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/bc_alert_example.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/cdl-authorization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/cdl-authorization.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/choose_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/choose_credentials.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/classify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/classify.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/credentials_api_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/credentials_api_token.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/credentials_username_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/credentials_username_password.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/demisto_content-external-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/demisto_content-external-template.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/deprecate_command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/deprecate_command.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/deprecated-integration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/deprecated-integration-1.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/deprecated-integration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/deprecated-integration-2.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/description.md_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/description.md_example.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/description_question_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/description_question_mark.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/doc-preview-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/doc-preview-check.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/docker-for-beginners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/docker-for-beginners.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/docker-image-list-demisto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/docker-image-list-demisto.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/fetch-incidents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/fetch-incidents.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/gdpr-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/gdpr-card.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/gdpr-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/gdpr-details.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/github-download-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/github-download-button.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/gmail_section1_step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/gmail_section1_step4.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/gmail_section1_step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/gmail_section1_step5.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/gmail_section1_step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/gmail_section1_step8.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/gmail_section4_step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/gmail_section4_step3.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/incident_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/incident_type.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/integration-config-panel-61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/integration-config-panel-61.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/kv-store-lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/kv-store-lookup.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/lint-powershell-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/lint-powershell-output.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/logo-standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/logo-standard.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/mapping.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/mirror-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/mirror-tags.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/new-lookup-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/new-lookup-table.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/polling-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/polling-command.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/pwsh-lint-cmd-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/pwsh-lint-cmd-output.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/pycharm-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/pycharm-export.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/pycharm-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/pycharm-general.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/pycharm-mceclip0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/pycharm-mceclip0.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/script-helper-flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/script-helper-flyout.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/script-helper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/script-helper.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/sections_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/sections_advanced.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/sections_connect_collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/sections_connect_collect.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/settings-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/settings-menu.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/snowv2-configuration-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/snowv2-configuration-settings.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/snowv2-create-new-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/snowv2-create-new-record.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/snowv2-set-mirroring-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/snowv2-set-mirroring-fields.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/splunk-lookup-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/splunk-lookup-editor.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/timeline_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/timeline_section.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/unit-test-sample-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/unit-test-sample-output.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/unit-test-sample-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/unit-test-sample-run.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/user-mapping-settings-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/user-mapping-settings-configuration.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/vs-code-pwsh-analyazer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/vs-code-pwsh-analyazer.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/vscode-pwsh-debug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/vscode-pwsh-debug.gif -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/youtube-embed-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/youtube-embed-2.png -------------------------------------------------------------------------------- /docs/doc_imgs/integrations/youtube-embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/integrations/youtube-embed.png -------------------------------------------------------------------------------- /docs/doc_imgs/packs/deprecated-pack-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/packs/deprecated-pack-1.png -------------------------------------------------------------------------------- /docs/doc_imgs/packs/deprecated-pack-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/packs/deprecated-pack-2.png -------------------------------------------------------------------------------- /docs/doc_imgs/packs/hidden-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/packs/hidden-pack.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/Branch_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/Branch_name.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/NewPrivateOfferPartnerSalesProcessFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/NewPrivateOfferPartnerSalesProcessFlow.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/PaidPackFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/PaidPackFlow.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/Pencil_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/Pencil_Icon.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/Private Offer Partner Sales Process Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/Private Offer Partner Sales Process Flow.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/PrivateOffer-green arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/PrivateOffer-green arrow.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/PrivateOffer-greenarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/PrivateOffer-greenarrow.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/PrivateOffer:LearnMore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/PrivateOffer:LearnMore.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/PrivateOfferAgreementv1.1Sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/PrivateOfferAgreementv1.1Sample.pdf -------------------------------------------------------------------------------- /docs/doc_imgs/partners/PrivateOfferButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/PrivateOfferButton.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/PrivateOfferPartnerSalesProcessFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/PrivateOfferPartnerSalesProcessFlow.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/PrivateOfferPartnerSalesProcessFlowV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/PrivateOfferPartnerSalesProcessFlowV2.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/PrivateOfferTermsAgreementSample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/PrivateOfferTermsAgreementSample.pdf -------------------------------------------------------------------------------- /docs/doc_imgs/partners/Subscribingto3rdpartycontent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/Subscribingto3rdpartycontent.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/crest_dev_partner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/crest_dev_partner.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/loginsoft_partner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/loginsoft_partner.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/metron_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/metron_logo.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/nttdata_dev_partner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/nttdata_dev_partner.jpg -------------------------------------------------------------------------------- /docs/doc_imgs/partners/packexample_cyren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/packexample_cyren.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/pcysys_partner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/pcysys_partner.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/qmasters_dev_partner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/qmasters_dev_partner.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/release_note_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/release_note_step.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/sciencesoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/sciencesoft.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/secinfra_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/secinfra_logo.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/slashnext_partner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/slashnext_partner.png -------------------------------------------------------------------------------- /docs/doc_imgs/partners/soarxperts_dev_partner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/partners/soarxperts_dev_partner.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/50276007-8448d480-0449-11e9-9413-67a842a8ce72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/50276007-8448d480-0449-11e9-9413-67a842a8ce72.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/50276352-6fb90c00-044a-11e9-8210-a4df27b9500c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/50276352-6fb90c00-044a-11e9-8210-a4df27b9500c.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/50276603-fff75100-044a-11e9-97ef-c848cc051985.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/50276603-fff75100-044a-11e9-97ef-c848cc051985.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62224827-f8742f00-b3bf-11e9-857e-5f216297aee1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62224827-f8742f00-b3bf-11e9-857e-5f216297aee1.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62224883-0f1a8600-b3c0-11e9-910e-03a86c7456d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62224883-0f1a8600-b3c0-11e9-910e-03a86c7456d7.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62225909-fa3ef200-b3c1-11e9-9e66-d96ce7fefbde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62225909-fa3ef200-b3c1-11e9-9e66-d96ce7fefbde.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62226474-f3fd4580-b3c2-11e9-94be-4ef28a6e5591.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62226474-f3fd4580-b3c2-11e9-94be-4ef28a6e5591.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62226484-f6f83600-b3c2-11e9-8e99-0cdc8117ee7e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62226484-f6f83600-b3c2-11e9-8e99-0cdc8117ee7e.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62226641-2a3ac500-b3c3-11e9-97b6-546aab935487.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62226641-2a3ac500-b3c3-11e9-97b6-546aab935487.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62226647-2c9d1f00-b3c3-11e9-82d5-63a637b2c23e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62226647-2c9d1f00-b3c3-11e9-82d5-63a637b2c23e.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62226658-3030a600-b3c3-11e9-826a-5104ed3a1a18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62226658-3030a600-b3c3-11e9-826a-5104ed3a1a18.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62226668-36268700-b3c3-11e9-9d71-b4479696422f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62226668-36268700-b3c3-11e9-9d71-b4479696422f.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62228424-4f7d0280-b3c6-11e9-8bee-47808ec59d31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62228424-4f7d0280-b3c6-11e9-8bee-47808ec59d31.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62228435-53a92000-b3c6-11e9-9434-f1201e247f62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62228435-53a92000-b3c6-11e9-9434-f1201e247f62.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62228472-628fd280-b3c6-11e9-838c-285e68ec4661.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62228472-628fd280-b3c6-11e9-838c-285e68ec4661.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62228481-66235980-b3c6-11e9-95da-46b12ab243ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62228481-66235980-b3c6-11e9-95da-46b12ab243ff.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62228872-2e68e180-b3c7-11e9-9de3-ea21c0e3c866.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62228872-2e68e180-b3c7-11e9-9de3-ea21c0e3c866.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62228877-3032a500-b3c7-11e9-8644-17278aa24870.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62228877-3032a500-b3c7-11e9-8644-17278aa24870.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62229068-97505980-b3c7-11e9-9c80-18b6f84ba90c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62229068-97505980-b3c7-11e9-9c80-18b6f84ba90c.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62229072-991a1d00-b3c7-11e9-9486-e481096bd2db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62229072-991a1d00-b3c7-11e9-9486-e481096bd2db.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62229081-9d463a80-b3c7-11e9-8602-ece4e593fa57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62229081-9d463a80-b3c7-11e9-8602-ece4e593fa57.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62229766-1f832e80-b3c9-11e9-8ac3-6cb48a132c1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62229766-1f832e80-b3c9-11e9-8ac3-6cb48a132c1f.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62229771-21e58880-b3c9-11e9-8d85-c82c0c895252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62229771-21e58880-b3c9-11e9-8d85-c82c0c895252.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62230489-9240d980-b3ca-11e9-8a88-2d5928888fac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62230489-9240d980-b3ca-11e9-8a88-2d5928888fac.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/62230511-9ec53200-b3ca-11e9-8d75-2f4a59b71f1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/62230511-9ec53200-b3ca-11e9-8d75-2f4a59b71f1a.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/66270734-7ee53b00-e85f-11e9-8566-e0118774070e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/66270734-7ee53b00-e85f-11e9-8566-e0118774070e.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/66293071-7d168880-e8ee-11e9-9d55-e8ae1e09fe0e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/66293071-7d168880-e8ee-11e9-9d55-e8ae1e09fe0e.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/67758301-18aa9d00-fa46-11e9-84e9-cba48d639766.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/67758301-18aa9d00-fa46-11e9-84e9-cba48d639766.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/67759127-9622dd00-fa47-11e9-90d5-a88c616bd8fe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/67759127-9622dd00-fa47-11e9-90d5-a88c616bd8fe.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/67759239-c9656c00-fa47-11e9-803b-a18005c63b52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/67759239-c9656c00-fa47-11e9-803b-a18005c63b52.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/67759434-121d2500-fa48-11e9-871b-dac447da1b8e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/67759434-121d2500-fa48-11e9-871b-dac447da1b8e.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/67759623-76d87f80-fa48-11e9-9dc7-3f8d5ef4341c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/67759623-76d87f80-fa48-11e9-9dc7-3f8d5ef4341c.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/67759719-a5565a80-fa48-11e9-9a91-b5ce555197d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/67759719-a5565a80-fa48-11e9-9a91-b5ce555197d4.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/67759760-bb641b00-fa48-11e9-82a0-e028e50efa02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/67759760-bb641b00-fa48-11e9-82a0-e028e50efa02.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/68272945-d4368700-006d-11ea-89a1-fea10c525186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/68272945-d4368700-006d-11ea-89a1-fea10c525186.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/Communication-Ask-Task-Message-Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/Communication-Ask-Task-Message-Preview.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/Communication-Data-Collection-Field-based.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/Communication-Data-Collection-Field-based.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/Communication-Data-Collection-Stand-alone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/Communication-Data-Collection-Stand-alone.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/Communication-New-Ask-Task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/Communication-New-Ask-Task.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/Playbooks_Account-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/Playbooks_Account-Manager.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/Playbooks_Input-Output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/Playbooks_Input-Output.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/Playbooks_Inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/Playbooks_Inputs.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/Playbooks_Outputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/Playbooks_Outputs.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/communication_example-ask-task-timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/communication_example-ask-task-timing.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/communication_example-ask-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/communication_example-ask-task.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/deprecated-playbook-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/deprecated-playbook-1.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/deprecated-playbook-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/deprecated-playbook-2.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/playbook-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/playbook-settings.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/playbook_conditional_automation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/playbook_conditional_automation.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/playbook_conditional_built-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/playbook_conditional_built-in.png -------------------------------------------------------------------------------- /docs/doc_imgs/playbooks/task_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/playbooks/task_result.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/ctfcsiimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/ctfcsiimage.jpg -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image1.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image10.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image11.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image12.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image13.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image14.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image15.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image16.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image17.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image18.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image19.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image2.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image20.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image21.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image22.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image23.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image24.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image3.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image6.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image8.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/image9.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/CaptureTheFlag/marketplace_search_for_ctf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/CaptureTheFlag/marketplace_search_for_ctf.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Change_Management/Jira_Map_fields.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Change_Management/Jira_Map_fields.PNG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Change_Management/Jira_Mapper_load_json.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Change_Management/Jira_Mapper_load_json.PNG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Change_Management/Jira_copy_from.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Change_Management/Jira_copy_from.PNG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Change_Management/Jira_query.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Change_Management/Jira_query.PNG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Change_Management/Jira_settings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Change_Management/Jira_settings.PNG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Change_Management/SNOW_Map_fields.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Change_Management/SNOW_Map_fields.PNG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Change_Management/SNOW_copy_from.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Change_Management/SNOW_copy_from.PNG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Change_Management/Snow_settings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Change_Management/Snow_settings.PNG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Change_Management/classification_and_mapping_Jira.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Change_Management/classification_and_mapping_Jira.PNG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Change_Management/classification_and_mapping_SNOW.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Change_Management/classification_and_mapping_SNOW.PNG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/EmailCommunication_EmailThreadsLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/EmailCommunication_EmailThreadsLayout.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/EmailCommunication_PopUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/EmailCommunication_PopUp.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/EmailCommunication_SendEmailReplySettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/EmailCommunication_SendEmailReplySettings.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Calssifiaction_and_Mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Calssifiaction_and_Mapping.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Data_fetched_Json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Data_fetched_Json.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Incident_type_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Incident_type_settings.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Instance_Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Instance_Settings.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Mapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Mapper.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Mapper_select_fileds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Mapper_select_fileds.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Select_Instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Endpoint_Malware_Investigation_-_Generic_V2/Select_Instance.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/HealthCheck_GridError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/HealthCheck_GridError.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/1-OU.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/1-OU.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/10-trouble.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/10-trouble.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/11-trouble.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/11-trouble.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/13-workgroup.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/13-workgroup.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/14-workgroup.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/14-workgroup.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/15-workgroup.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/15-workgroup.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/17-cert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/17-cert.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/18-cert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/18-cert.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/19-cert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/19-cert.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/2-OU.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/2-OU.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/20-cert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/20-cert.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/21-cert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/21-cert.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/22-cert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/22-cert.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/23-cert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/23-cert.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/24-cert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/24-cert.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/25-cert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/25-cert.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/26-gpo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/26-gpo.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/27-gpo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/27-gpo.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/28-gpo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/28-gpo.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/29-cert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/29-cert.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/3-gpo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/3-gpo.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/30-ssl.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/30-ssl.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/4-gpo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/4-gpo.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/4_1-gpo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/4_1-gpo.jpg -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/5-gpo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/5-gpo.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/6-gpo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/6-gpo.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/7-gpo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/7-gpo.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/8-gpo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/8-gpo.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/9-trouble.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/9-trouble.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/error1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/error1.jpg -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/error2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/error2.jpg -------------------------------------------------------------------------------- /docs/doc_imgs/reference/PowershellRemoting/error3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/PowershellRemoting/error3.jpg -------------------------------------------------------------------------------- /docs/doc_imgs/reference/QRadar/QRadar_offense_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/QRadar/QRadar_offense_summary.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/RapidBreachResponseLayout/Hunting_Results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/RapidBreachResponseLayout/Hunting_Results.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/RapidBreachResponseLayout/IR_Procedures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/RapidBreachResponseLayout/IR_Procedures.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/RapidBreachResponseLayout/Incident_Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/RapidBreachResponseLayout/Incident_Info.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/RapidBreachResponseLayout/Marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/RapidBreachResponseLayout/Marketplace.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip0.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip1.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip10.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip11.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip12.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip13.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip14.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip15.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip16.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip17.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip18.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip19.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip2.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip20.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip21.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip3.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip4.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip5.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip6.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip7.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip8.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-ADFS/mceclip9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-ADFS/mceclip9.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-Okta_Create_New_App.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-Okta_Create_New_App.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-Okta_Group_Attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-Okta_Group_Attributes.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-App-Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-App-Config.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-App-Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-App-Details.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Download-Public-Cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Download-Public-Cert.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Group-Access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Group-Access.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-IDP-ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-IDP-ID.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Metadata-File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Metadata-File.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Metadata-URL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Metadata-URL.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-New-App.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-New-App.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Show-App-Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Show-App-Details.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Users-Roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SAML-PingOne/SAML-PingOne-Users-Roles.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-data-new-search-save-as-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-data-new-search-save-as-alert.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-data-new-search-start-searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-data-new-search-start-searching.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-data-upload-data-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-data-upload-data-form.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-data-upload-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-data-upload-data.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-data.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration-add-xsoar-instance-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration-add-xsoar-instance-form.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration-add-xsoar-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration-add-xsoar-instance.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration-additional-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration-additional-settings.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration-logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration-logging.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration-proxy.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-configuration.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-incidents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-add-on-incidents.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-install-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-install-app.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-restart-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-restart-prompt.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/SplunkAddOn/splunk-upload-an-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/SplunkAddOn/splunk-upload-an-app.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/WindowsForensics/Forensic_acquisition.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/WindowsForensics/Forensic_acquisition.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/WindowsForensics/analysis.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/WindowsForensics/analysis.JPG -------------------------------------------------------------------------------- /docs/doc_imgs/reference/XDRLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/XDRLayout.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/XSOAR-CICD/artifacts_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/XSOAR-CICD/artifacts_server.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/XSOAR-CICD/cicd_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/XSOAR-CICD/cicd_integration.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/XSOAR-CICD/cicd_playbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/XSOAR-CICD/cicd_playbook.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/XSOAR-CICD/config_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/XSOAR-CICD/config_json.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/XSOAR-CICD/github_notsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/XSOAR-CICD/github_notsuccess.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/XSOAR-CICD/github_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/XSOAR-CICD/github_success.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/XSOAR-CICD/pack_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/XSOAR-CICD/pack_example.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/XSOAR-CICD/without_artifacts_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/XSOAR-CICD/without_artifacts_server.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/XSOAR-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/XSOAR-format.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/Xpanse/Xpanse-Instance-Generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/Xpanse/Xpanse-Instance-Generic.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/aws-s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/aws-s3.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/aws-sns-mapping1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/aws-sns-mapping1.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/aws-sns-mapping2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/aws-sns-mapping2.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/aws-sns-mceclip0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/aws-sns-mceclip0.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/aws-sns-mceclip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/aws-sns-mceclip1.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/build-automate-cloud-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/build-automate-cloud-flow.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/certificate-verification-altnames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/certificate-verification-altnames.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/certificate-verification-common-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/certificate-verification-common-name.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/certificate-verification-expire-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/certificate-verification-expire-date.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/credentials-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/credentials-example-1.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/credentials-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/credentials-example-2.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/credentials-manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/credentials-manual.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/debug-mode-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/debug-mode-example.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/default layout 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/default layout 1.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/default layout 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/default layout 2.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/default layout 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/default layout 3.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/default layout 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/default layout 4.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/duo-mceclip0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/duo-mceclip0.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/expanse-incident-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/expanse-incident-layout.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/fetch-incidents-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/fetch-incidents-debug.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/flow.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/gmail-enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/gmail-enable.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/gmail-mceclip0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/gmail-mceclip0.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/gmail-mceclip1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/gmail-mceclip1-1.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/gmail-mceclip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/gmail-mceclip2.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/google-apps-script-executions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/google-apps-script-executions.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/google-apps-script-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/google-apps-script-trigger.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/google-forms-cortex-xsoar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/google-forms-cortex-xsoar.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/google-forms-mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/google-forms-mapping.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/google-maps-gen-purpose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/google-maps-gen-purpose.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/google-maps-indicator-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/google-maps-indicator-type.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/google-maps-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/google-maps-map.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/http.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ilm-add-fields-to-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ilm-add-fields-to-layout.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ilm-attach-duplicate-mapper-to-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ilm-attach-duplicate-mapper-to-integration.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ilm-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ilm-configuration.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ilm-create-indicator-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ilm-create-indicator-field.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ilm-create-new-incident-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ilm-create-new-incident-field.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ilm-integration-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ilm-integration-instance.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ilm-map-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ilm-map-fields.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ilm-toggle-indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ilm-toggle-indicators.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/integration-name-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/integration-name-config.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/log_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/log_level.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/marketplace-forensics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/marketplace-forensics.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/mceclip0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/mceclip0.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/mceclip1-gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/mceclip1-gmail.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/mceclip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/mceclip1.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/mceclip1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/mceclip1_1.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/mceclip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/mceclip2.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/mceclip3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/mceclip3.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/mceclip5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/mceclip5.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/mceclip7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/mceclip7.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/mceclip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/mceclip8.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ms-form-choose-operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ms-form-choose-operation.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ms-form-operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ms-form-operation.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ms-form-response-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ms-form-response-details.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ms-form-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ms-form-response.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/ms-form-sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/ms-form-sign-in.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/test-module-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/test-module-debug.png -------------------------------------------------------------------------------- /docs/doc_imgs/reference/unclassified edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/reference/unclassified edit.png -------------------------------------------------------------------------------- /docs/doc_imgs/scripts/deprecated-script-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/scripts/deprecated-script-1.png -------------------------------------------------------------------------------- /docs/doc_imgs/scripts/deprecated-script-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/scripts/deprecated-script-2.png -------------------------------------------------------------------------------- /docs/doc_imgs/snowv2-incoming-mapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/snowv2-incoming-mapper.png -------------------------------------------------------------------------------- /docs/doc_imgs/translation-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/translation-results.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50829961-de54ff80-134e-11e9-8a85-d5b1bb24e246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50829961-de54ff80-134e-11e9-8a85-d5b1bb24e246.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50830395-5cfe6c80-1350-11e9-9284-0e30836cf885.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50830395-5cfe6c80-1350-11e9-9284-0e30836cf885.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50831927-37c02d00-1355-11e9-89eb-f58507f46027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50831927-37c02d00-1355-11e9-89eb-f58507f46027.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833113-e74ace80-1358-11e9-8969-b82959356bd9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833113-e74ace80-1358-11e9-8969-b82959356bd9.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833193-1eb97b00-1359-11e9-9d00-bf46fa52c37f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833193-1eb97b00-1359-11e9-9d00-bf46fa52c37f.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833314-70620580-1359-11e9-99cd-704f59dc67d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833314-70620580-1359-11e9-99cd-704f59dc67d3.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833385-a7381b80-1359-11e9-9c3a-3b376a993d2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833385-a7381b80-1359-11e9-9c3a-3b376a993d2c.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833437-cfc01580-1359-11e9-9880-1a53562542dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833437-cfc01580-1359-11e9-9880-1a53562542dc.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833475-ebc3b700-1359-11e9-96f5-2f45c3eff27e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833475-ebc3b700-1359-11e9-96f5-2f45c3eff27e.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833581-5248d500-135a-11e9-941f-bd27964168d8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833581-5248d500-135a-11e9-941f-bd27964168d8.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833654-9b008e00-135a-11e9-9e08-f1d51f1dc52a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833654-9b008e00-135a-11e9-9e08-f1d51f1dc52a.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833717-d69b5800-135a-11e9-85f5-81b6a1dd1e8c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833717-d69b5800-135a-11e9-85f5-81b6a1dd1e8c.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833826-24b05b80-135b-11e9-8d18-3ee1d52301c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833826-24b05b80-135b-11e9-8d18-3ee1d52301c1.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50833982-8b357980-135b-11e9-9d0e-0d85834e3c65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50833982-8b357980-135b-11e9-9d0e-0d85834e3c65.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50834106-e1a2b800-135b-11e9-892f-a00c74b949f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50834106-e1a2b800-135b-11e9-892f-a00c74b949f6.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50834260-3cd4aa80-135c-11e9-80f7-39d80d55d7e9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50834260-3cd4aa80-135c-11e9-80f7-39d80d55d7e9.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50834429-a6ed4f80-135c-11e9-9029-40c130be7371.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50834429-a6ed4f80-135c-11e9-9029-40c130be7371.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50835627-e49fa780-135f-11e9-8c96-8c3e138d6a9b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50835627-e49fa780-135f-11e9-8c96-8c3e138d6a9b.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50840340-efac0500-136a-11e9-9432-dc3457d7cfd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50840340-efac0500-136a-11e9-9432-dc3457d7cfd1.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50840432-37cb2780-136b-11e9-8c2a-c56fa87a57b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50840432-37cb2780-136b-11e9-8c2a-c56fa87a57b9.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/50840624-94c6dd80-136b-11e9-832e-0a745b2d754a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/50840624-94c6dd80-136b-11e9-832e-0a745b2d754a.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/apikey_param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/apikey_param.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/argument-text-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/argument-text-8.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/argument-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/argument-text.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/byoi-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/byoi-8.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/byoi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/byoi.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/command-args.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/command-args.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/command-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/command-name.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/command-yoda-speak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/command-yoda-speak.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/connect-tasks-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/connect-tasks-8.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/connect-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/connect-tasks.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/cortex-xsoar-ide-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/cortex-xsoar-ide-8.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/cortex-xsoar-ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/cortex-xsoar-ide.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/drag-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/drag-logo.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/fetch-incidents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/fetch-incidents.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/insecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/insecure.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/integration-settings-image-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/integration-settings-image-8.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/integration-settings-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/integration-settings-image.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/navigate-byoi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/navigate-byoi.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/new-incident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/new-incident.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/outputs-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/outputs-new.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/outputs-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/outputs-screen.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/outputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/outputs.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/parameter-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/parameter-api-key.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/parameter-api-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/parameter-api-url.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/parameter-insecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/parameter-insecure.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/parameter-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/parameter-proxy.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/parameters-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/parameters-screen.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/parameters.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/playbook-complete-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/playbook-complete-8.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/playbook-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/playbook-complete.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/playbook-quiet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/playbook-quiet.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/print-task-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/print-task-new.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/print-task-xsoar-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/print-task-xsoar-8.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/print-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/print-task.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/proxy.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/script-helper-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/script-helper-screen.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/source-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/source-text.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/translation-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/translation-results.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/translationcontext-new-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/translationcontext-new-8.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/translationcontext-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/translationcontext-new.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/translationcontext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/translationcontext.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/url.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/war-room-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/war-room-entry.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/xisam-incident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/xisam-incident.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/xsiam-yoda-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/xsiam-yoda-task.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/xsoar-yoda-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/xsoar-yoda-task.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/yoda-command-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/yoda-command-cli.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/yoda-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/yoda-instance.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/yoda-speak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/yoda-speak.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-integration-ui/yoda-utility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-integration-ui/yoda-utility.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/app-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/app-api.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/app-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/app-connect.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/app-perm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/app-perm.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/app-reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/app-reg.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/choose_your_resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/choose_your_resource.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/device_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/device_code.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/essentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/essentials.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/graph-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/graph-user.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/home_microsoft_azure_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/home_microsoft_azure_portal.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/instance_detailed_instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/instance_detailed_instructions.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/instance_detailed_instructions_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/instance_detailed_instructions_new.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/reg-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/reg-app.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-microsoft-auth-guide/subscription_id_resourse_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-microsoft-auth-guide/subscription_id_resourse_group.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-cog.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-configuration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-configuration-1.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-configuration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-configuration-2.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-configuration-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-configuration-3.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-configuration-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-configuration-4.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-configuration-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/aws-feed-configuration-5.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/exit_addresses-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/exit_addresses-node.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/exit_addresses-prototype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/exit_addresses-prototype.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/export-indicators-configuration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/export-indicators-configuration-1.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/export-indicators-configuration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/export-indicators-configuration-2.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/feed-hc-green-output-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/feed-hc-green-output-node.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/feed-hc-green-output-prototype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/feed-hc-green-output-prototype.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/ipv4-aggregator-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/ipv4-aggregator-node.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/ipv4-aggregator-prototype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/ipv4-aggregator-prototype.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/mm-aws-cloudfront-prototype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/mm-aws-cloudfront-prototype.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/mm-aws-prototypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/mm-aws-prototypes.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/mm-o365-prototypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/mm-o365-prototypes.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/mm-o365-worldwide-any-prototype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/mm-o365-worldwide-any-prototype.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/office-feed-configuration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/office-feed-configuration-1.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/office-feed-configuration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/office-feed-configuration-2.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/office-feed-configuration-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/office-feed-configuration-3.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/office-feed-configuration-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/office-feed-configuration-4.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/search-aws-feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/search-aws-feed.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/search-bambenek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/search-bambenek.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/search-export-indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/search-export-indicators.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-minemeld-migration/search-office-feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-minemeld-migration/search-office-feed.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-setup-dev-codespace/create-a-new-codespace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-setup-dev-codespace/create-a-new-codespace.gif -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-setup-dev-codespace/open-codespace-in-browser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-setup-dev-codespace/open-codespace-in-browser.gif -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-setup-dev-container/dev-container-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-setup-dev-container/dev-container-open.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-setup-dev/01-checkdemistolicense.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-setup-dev/01-checkdemistolicense.gif -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-setup-dev/02-jumptopage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-setup-dev/02-jumptopage.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-setup-dev/03-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-setup-dev/03-github.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-setup-dev/04-fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-setup-dev/04-fork.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-setup-dev/05-copygithuburl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-setup-dev/05-copygithuburl.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tut-setup-dev/06-githubbranch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tut-setup-dev/06-githubbranch.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-incident-lifecycle/C-M_SIEM_Mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-incident-lifecycle/C-M_SIEM_Mapping.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-incident-lifecycle/C-M_SIEM_Set-Classification-Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-incident-lifecycle/C-M_SIEM_Set-Classification-Key.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-incident-lifecycle/C-M_SIEM_Set-Classification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-incident-lifecycle/C-M_SIEM_Set-Classification.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-incident-lifecycle/Customize-Layout_Insert-Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-incident-lifecycle/Customize-Layout_Insert-Field.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-incident-lifecycle/Incidents_Ingested-Incidents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-incident-lifecycle/Incidents_Ingested-Incidents.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-incident-lifecycle/Indicator-Type_Default-QRadarpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-incident-lifecycle/Indicator-Type_Default-QRadarpng.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-incident-lifecycle/Investigate_Inciden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-incident-lifecycle/Investigate_Inciden.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-incident-lifecycle/New-Field_Importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-incident-lifecycle/New-Field_Importance.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_add-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_add-list.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_add-tag-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_add-tag-new.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_add-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_add-tag.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_define-job-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_define-job-new.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_define-job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_define-job.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_inputs-outputs-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_inputs-outputs-context.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_inputs-outputs-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_inputs-outputs-new.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_inputs-outputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_inputs-outputs.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_manual-incident-id-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_manual-incident-id-new.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_manual-incident-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_manual-incident-id.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_pushed-to-SIEM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_pushed-to-SIEM.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_tim_feed-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_tim_feed-new.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_tim_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-TIM-EDL/tutorial_playbook_tim_feed.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-export-to-splunk/add_server-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-export-to-splunk/add_server-configuration.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-export-to-splunk/splunk_parsing-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-export-to-splunk/splunk_parsing-options.png -------------------------------------------------------------------------------- /docs/doc_imgs/tutorials/tutorial-playbook-export-to-splunk/splunk_threat_artifiacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/doc_imgs/tutorials/tutorial-playbook-export-to-splunk/splunk_threat_artifiacts.png -------------------------------------------------------------------------------- /docs/integrations/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/integrations/img_1.png -------------------------------------------------------------------------------- /docs/integrations/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/docs/integrations/img_2.png -------------------------------------------------------------------------------- /docs/integrations/integration-desc-redir.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: integration-desc-redir 3 | title: Integration Description File 4 | --- 5 | 6 | Please check the [Integration Description File](../documentation/integration-description) article in the Documentation section. -------------------------------------------------------------------------------- /docs/integrations/integration-doc-redir.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: integration-doc-redir 3 | title: Integration and Scripts File 4 | sidebar_label: README File 5 | --- 6 | 7 | Please check the [README file](../documentation/readme_file) article in the Documentation section. -------------------------------------------------------------------------------- /docs/packs/pack-docs-redir.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: pack-docs-redir 3 | title: Pack Documentation 4 | --- 5 | 6 | Please check the [Pack Documentation](../documentation/pack-docs) article in the Documentation section. -------------------------------------------------------------------------------- /docs/packs/pack-rn-redir.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: pack-rn-redir 3 | title: Release Notes 4 | --- 5 | 6 | Please check the [Release Notes](../documentation/release-notes) article in the Documentation section. -------------------------------------------------------------------------------- /docs/playbooks/playbook-doc-redir.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: playbook-doc-redir 3 | title: Playbook Documentation 4 | --- 5 | 6 | Please check the [README file](../documentation/readme_file) article in the Documentation section. -------------------------------------------------------------------------------- /docs/reference/.gitinclude: -------------------------------------------------------------------------------- 1 | DO NOT DELETE -------------------------------------------------------------------------------- /docs/scripts/.gitinclude: -------------------------------------------------------------------------------- 1 | DO NOT DELETE -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /src/pages/marketplace/top-contributors.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/assets/CortexXSOAR_PartnerReadmeRaffle_Spring2021_OfficialRules.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/assets/CortexXSOAR_PartnerReadmeRaffle_Spring2021_OfficialRules.pdf -------------------------------------------------------------------------------- /static/assets/CortexXSOAR_PartnerReadmeRaffle_Summer2021_OfficialRules.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/assets/CortexXSOAR_PartnerReadmeRaffle_Summer2021_OfficialRules.pdf -------------------------------------------------------------------------------- /static/assets/NextWaveTechnologyPartnerProgramAgreement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/assets/NextWaveTechnologyPartnerProgramAgreement.pdf -------------------------------------------------------------------------------- /static/assets/nfr-policy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/assets/nfr-policy.pdf -------------------------------------------------------------------------------- /static/demisto-bundle-1597047141768.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/demisto-bundle-1597047141768.woff -------------------------------------------------------------------------------- /static/doc_imgs/.gitinclude: -------------------------------------------------------------------------------- 1 | DO NOT DELETE -------------------------------------------------------------------------------- /static/img/Cortex XSOAR indicator fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/Cortex XSOAR indicator fields.png -------------------------------------------------------------------------------- /static/img/Cortex_XSoar_logos_RGB_Cortex-Ng-Soar-Horizontal_250_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/Cortex_XSoar_logos_RGB_Cortex-Ng-Soar-Horizontal_250_white.png -------------------------------------------------------------------------------- /static/img/Demisto-Icon-Dark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/Demisto-Icon-Dark.pdf -------------------------------------------------------------------------------- /static/img/Demisto-Icon-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/Demisto-Icon-Dark.png -------------------------------------------------------------------------------- /static/img/Demisto-Icon-White.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/Demisto-Icon-White.pdf -------------------------------------------------------------------------------- /static/img/Demisto-Icon-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/Demisto-Icon-White.png -------------------------------------------------------------------------------- /static/img/Demisto-fullcolor-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/Demisto-fullcolor-logo.png -------------------------------------------------------------------------------- /static/img/Demisto_Icon-CMYK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/Demisto_Icon-CMYK.png -------------------------------------------------------------------------------- /static/img/Demisto_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/Demisto_Icon.png -------------------------------------------------------------------------------- /static/img/Demisto_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/Demisto_Logo.png -------------------------------------------------------------------------------- /static/img/TopContributors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/TopContributors.png -------------------------------------------------------------------------------- /static/img/christopher-chedeau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/christopher-chedeau.jpg -------------------------------------------------------------------------------- /static/img/cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/cli.png -------------------------------------------------------------------------------- /static/img/clicontextmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/clicontextmenu.png -------------------------------------------------------------------------------- /static/img/climymessages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/climymessages.png -------------------------------------------------------------------------------- /static/img/cliopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/cliopen.png -------------------------------------------------------------------------------- /static/img/cliopencommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/cliopencommands.png -------------------------------------------------------------------------------- /static/img/cliplaygroundpopup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/cliplaygroundpopup.png -------------------------------------------------------------------------------- /static/img/cliprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/cliprint.png -------------------------------------------------------------------------------- /static/img/cliprinthelloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/cliprinthelloworld.png -------------------------------------------------------------------------------- /static/img/cliprintmessages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/cliprintmessages.png -------------------------------------------------------------------------------- /static/img/cortexfavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/cortexfavicon.png -------------------------------------------------------------------------------- /static/img/docusaurus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/docusaurus.ico -------------------------------------------------------------------------------- /static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/docusaurus.png -------------------------------------------------------------------------------- /static/img/docusaurus_live.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/docusaurus_live.gif -------------------------------------------------------------------------------- /static/img/docusaurus_live.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/docusaurus_live.webp -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/getting-started-preparation-verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/getting-started-preparation-verify.png -------------------------------------------------------------------------------- /static/img/googlebbd50c8f1c6e7332.html: -------------------------------------------------------------------------------- 1 | google-site-verification: googlebbd50c8f1c6e7332.html -------------------------------------------------------------------------------- /static/img/hector-ramos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/hector-ramos.png -------------------------------------------------------------------------------- /static/img/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/markdown.png -------------------------------------------------------------------------------- /static/img/marketplace_banner_images/Marketplace_Vertical_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/marketplace_banner_images/Marketplace_Vertical_1.png -------------------------------------------------------------------------------- /static/img/marketplace_banner_images/Marketplace_Vertical_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/marketplace_banner_images/Marketplace_Vertical_2.png -------------------------------------------------------------------------------- /static/img/marketplace_banner_images/Marketplace_Vertical_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/marketplace_banner_images/Marketplace_Vertical_3.png -------------------------------------------------------------------------------- /static/img/oss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/oss_logo.png -------------------------------------------------------------------------------- /static/img/prismafavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/prismafavicon.png -------------------------------------------------------------------------------- /static/img/profilo_blog_post_android_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/profilo_blog_post_android_ios.png -------------------------------------------------------------------------------- /static/img/profilo_blog_post_palette_website_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/profilo_blog_post_palette_website_color_picker.png -------------------------------------------------------------------------------- /static/img/profilo_blog_post_photoshop_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/profilo_blog_post_photoshop_color_picker.png -------------------------------------------------------------------------------- /static/img/profilo_blog_post_website_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/profilo_blog_post_website_final.png -------------------------------------------------------------------------------- /static/img/profilo_blog_post_website_final_docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/profilo_blog_post_website_final_docs.png -------------------------------------------------------------------------------- /static/img/profilo_blog_post_website_initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/profilo_blog_post_website_initial.png -------------------------------------------------------------------------------- /static/img/ricky-vetter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/ricky-vetter.jpg -------------------------------------------------------------------------------- /static/img/slash-birth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/slash-birth.png -------------------------------------------------------------------------------- /static/img/slash-upandrunning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/slash-upandrunning.png -------------------------------------------------------------------------------- /static/img/strata_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/strata_favicon.png -------------------------------------------------------------------------------- /static/img/tutorial-git-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/static/img/tutorial-git-clone.png -------------------------------------------------------------------------------- /templates/details.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/content-docs/c966a33a0b8c7f84393d2634fc33d22d4efa9699/templates/details.hbs --------------------------------------------------------------------------------