Skip to content

Commit

Permalink
extend descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-tz committed Sep 11, 2024
1 parent e70d5b3 commit 62fdc80
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions web/explorer/src/components/DescriptionPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,36 @@
<div class="text-center">
<h1>
<img src="@/assets/images/logo-full.png" alt="Capa: identify program capabilities" />
<h3 class="font-medium" style="color: rgb(176, 26, 26)">capa: identify program capabilities</h3>
<h3 class="font-medium" style="color: rgb(37, 147, 215)">capa: identify program capabilities</h3>
</h1>
</div>
<div>
<p class="text-xl p-3 max-w-75rem" style="max-width: 75ch">
capa explorer web is a web-based tool for exploring the capabilities identified in a program. It can be
used to search and display the rule matches in different viewing modes.
capa Explorer Web is a web-based tool to explore the capabilities identified by capa. This tool allows
you to interactively browse and display capa results in multiple viewing modes.
</p>
</div>
<div class="bg-blue-50 border-round p-3 pb-4 text-center max-w-75rem mt-4">
<p class="text-700 text-sm m-0">New to capa? Follow these quick steps to get started:</p>
<p class="text-700 text-sm mb-3"></p>
<ol class="text-left text-sm pl-4 mb-3">
<li class="mb-2">Install capa: <code>pip install flare-capa</code></li>
<li class="mb-2">Generate JSON output: <code>capa -j /path/to/file > result.json</code></li>
<li>Upload the JSON file here to explore the results</li>
<li class="mb-2"><a href="https://github.com/mandiant/capa/blob/master/doc/installation.md" class="underline">Install capa</a>, e.g.
<ul>
<li>download the latest <a href="https://github.com/mandiant/capa/releases" class="underline">standalone executable release</a></li>
<li>or run <code>$ pip install flare-capa</code></li>
</ul>
</li>
<li class="mb-2">Analyze a sample and save the JSON results:
<ul>
<li><code>$ capa -j /path/to/file > result.json</code></li>
</ul>
</li>
<li>Load the JSON results file into capa Explorer Web</li>
</ol>
<p class="text-700 text-sm m-0">
For more detailed information, explore the
<a
href="https://github.com/mandiant/capa"
href="https://github.com/mandiant/capa/tree/master/web/explorer"
target="_blank"
rel="noopener noreferrer"
class="text-blue-600 hover:text-blue-800 transition-colors duration-200"
Expand All @@ -32,6 +41,11 @@
>.
</p>
</div>
<div>
<p class="text-base p-3 max-w-75rem" style="max-width: 75ch">
You can download capa Explorer Web for offline usage via the download button in the top-right corner of this page.
</p>
</div>
</div>
</template>

Expand Down

0 comments on commit 62fdc80

Please sign in to comment.