<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Do you backup your custom content? in Cortex XSIAM Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/do-you-backup-your-custom-content/m-p/1244740#M294</link>
    <description>&lt;P data-start="47" data-end="52"&gt;Hi,&lt;/P&gt;
&lt;P data-start="59" data-end="238"&gt;I’m looking for a way to back up my custom content - such as playbooks, lists, scripts, correlation rules, and more, to an external repository (GitHub, GitLab, Azure DevOps, etc.).&lt;/P&gt;
&lt;P data-start="245" data-end="392"&gt;So far, I’ve had partial success with playbooks using Python scripts and API calls, but I’m having difficulty backing up the other content types.&lt;/P&gt;
&lt;P data-start="399" data-end="449"&gt;Has anyone tried implementing something like this?&lt;/P&gt;</description>
    <pubDate>Tue, 30 Dec 2025 12:00:45 GMT</pubDate>
    <dc:creator>Yossi_Nagar</dc:creator>
    <dc:date>2025-12-30T12:00:45Z</dc:date>
    <item>
      <title>Do you backup your custom content?</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/do-you-backup-your-custom-content/m-p/1244740#M294</link>
      <description>&lt;P data-start="47" data-end="52"&gt;Hi,&lt;/P&gt;
&lt;P data-start="59" data-end="238"&gt;I’m looking for a way to back up my custom content - such as playbooks, lists, scripts, correlation rules, and more, to an external repository (GitHub, GitLab, Azure DevOps, etc.).&lt;/P&gt;
&lt;P data-start="245" data-end="392"&gt;So far, I’ve had partial success with playbooks using Python scripts and API calls, but I’m having difficulty backing up the other content types.&lt;/P&gt;
&lt;P data-start="399" data-end="449"&gt;Has anyone tried implementing something like this?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 12:00:45 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/do-you-backup-your-custom-content/m-p/1244740#M294</guid>
      <dc:creator>Yossi_Nagar</dc:creator>
      <dc:date>2025-12-30T12:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Do you backup your custom content?</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/do-you-backup-your-custom-content/m-p/1247937#M334</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/1096352967"&gt;@Yossi_Nagar&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Greetings for the day.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;In Cortex XSIAM, backing up custom content to an external repository can be achieved through two primary methods: the native Remote Repository feature for specific supported content types, and a specialized API-based workaround for a comprehensive backup of all custom content.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;1. Native Remote Repository Feature&lt;/H4&gt;
&lt;P&gt;Cortex XSIAM includes a built-in feature to manage and sync content between tenants (for example, Development to Production) using a Git-based repository such as GitHub, GitLab, Bitbucket, or Azure DevOps.&lt;/P&gt;
&lt;H4&gt;Supported Content Types&lt;/H4&gt;
&lt;P&gt;The following types can be pushed and pulled via the Remote Repository:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Playbooks and Scripts&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Integrations&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Classifiers and Mappers&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Issue/Indicator Layouts, Types, and Fields&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H4&gt;Unsupported Content Types&lt;/H4&gt;
&lt;P&gt;The native sync feature does &lt;STRONG&gt;not&lt;/STRONG&gt; support:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Correlation Rules&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Parsing Rules and Data Modeling Rules&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Lists and Dashboards&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H4&gt;&amp;nbsp;&lt;/H4&gt;
&lt;H4&gt;2. Automated Backup Workaround (API Method)&lt;/H4&gt;
&lt;P&gt;To back up the content types not supported by the Remote Repository (such as lists and correlation rules), you can automate the export of a Content Bundle and push it to your repository. This method uses the internal API to download all custom content in a single encrypted file.&lt;/P&gt;
&lt;H4&gt;Workflow for Automated Backup&lt;/H4&gt;
&lt;H4&gt;Step 1: Download the Content Bundle&lt;/H4&gt;
&lt;P&gt;Create a playbook or script that uses the &lt;CODE&gt;core-api-download&lt;/CODE&gt; command to target the &lt;CODE&gt;/content/bundle&lt;/CODE&gt; endpoint:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;core-api-download endpoint="/content/bundle"
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H4&gt;Step 2: Commit to External Repository&lt;/H4&gt;
&lt;P&gt;Use an integration command (for example, from the GitHub or GitLab content packs) to upload the resulting file. Example using the GitHub integration:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;github-commit-file filename="XSIAM_Backup.zip" content="${core-api-download.File}" repository="your-repo-name" branch="main" message="Daily automated backup"
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H4&gt;Step 3: Schedule the Backup&lt;/H4&gt;
&lt;P&gt;Configure this playbook to run as a Job (for example, daily or weekly) under:&lt;/P&gt;
&lt;P&gt;Settings → Configurations → Automation → Jobs&lt;/P&gt;
&lt;H4&gt;&amp;nbsp;&lt;/H4&gt;
&lt;H4&gt;3. Manual Export Option&lt;/H4&gt;
&lt;P&gt;You can also manually export all custom content for backup purposes via the UI:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Navigate to &lt;STRONG&gt;Settings → Configurations → General → Server Settings&lt;/STRONG&gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Scroll to the &lt;STRONG&gt;Custom Content&lt;/STRONG&gt; section.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Click &lt;STRONG&gt;Export all custom content&lt;/STRONG&gt; to download a &lt;CODE&gt;.tar&lt;/CODE&gt; file containing your custom playbooks, scripts, layouts, and other components.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Important Considerations&lt;/H4&gt;
&lt;P&gt;&lt;STRONG&gt;Correlation Rules:&lt;/STRONG&gt; These often must be moved manually by copying the XQL query text.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Version Mismatch:&lt;/STRONG&gt; It is not recommended to push or pull content between tenants running different XSIAM versions to avoid compatibility issues.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Permissions:&lt;/STRONG&gt; Managing Remote Repository settings requires Instance Admin privileges or specific RBAC permissions for Remote Repository.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If you feel this has answered your query, please let us know by clicking like and on&amp;nbsp;&lt;STRONG&gt;"mark this as a Solution".&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;S. Subashkar Sekar&lt;/P&gt;</description>
      <pubDate>Wed, 11 Feb 2026 14:03:18 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/do-you-backup-your-custom-content/m-p/1247937#M334</guid>
      <dc:creator>susekar</dc:creator>
      <dc:date>2026-02-11T14:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Do you backup your custom content?</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/do-you-backup-your-custom-content/m-p/1247945#M341</link>
      <description>&lt;P&gt;The best answer I got.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for so detailed answer, I believe you covered everything here - I'll go and check all options you mentioned.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate that,&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 11 Feb 2026 14:38:31 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/do-you-backup-your-custom-content/m-p/1247945#M341</guid>
      <dc:creator>Yossi_Nagar</dc:creator>
      <dc:date>2026-02-11T14:38:31Z</dc:date>
    </item>
  </channel>
</rss>

