Skip to content

Commit

Permalink
Merge pull request #5 from ashirt-ops/fix/commands-wrapping
Browse files Browse the repository at this point in the history
fix: commands wrapping and adding content for support page
  • Loading branch information
jkennedyvz authored Feb 20, 2024
2 parents aad1b18 + 86ea4e0 commit 6e2e58a
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 22 deletions.
21 changes: 17 additions & 4 deletions assets/scss/list.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
#linux-command {
width: 35%;
@media (max-width: 1440px) {
#linux-command {
width: 80%;
font-size: 80%;
}

#osx-command {
width: 50%;
}
}

#osx-command {
width: 17%;
@media (min-width: 1440px) {
#linux-command {
width: 60%;
}

#osx-command {
width: 27%;
}
}

code > button {
Expand Down
4 changes: 2 additions & 2 deletions content/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ layout: list

**Step 1.** Download ASHIRT for Linux [here]({{<fetch-ashirt-version template="https://github.com/ashirt-ops/ashirt/releases/download/%[1]v/ashirt-%[1]v-x86_64.AppImage">}})

**Step 2.** Set the executable bit on the downloaded app image:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<code id="linux-command">chmod +x{{< fetch-ashirt-version template="ashirt-%s-x86_64.AppImage" >}} <button onClick="copyCode('linux-command')">Copy code</button></code>
**Step 2.** Set the executable bit on the downloaded app image:\
<code id="linux-command">chmod +x{{< fetch-ashirt-version template="ashirt-%s-x86_64.AppImage" >}} <button onClick="copyCode('linux-command')">Copy code</button></code>

**Step 3.** Launch Ashirt application
3 changes: 2 additions & 1 deletion content/osx.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ layout: list

**Step 3.** Move ashirt app into your local applications folder

**Step 4.** Launch the Ashirt application using the folder through spotlight or with your terminal using the command: <code id="osx-command">open -a ashirt <button onClick="copyCode('osx-command')">Copy code</button></code>
**Step 4.** Launch the Ashirt application using the folder through spotlight or with your terminal using the command:\
<code id="osx-command">open -a ashirt <button onClick="copyCode('osx-command')">Copy code</button></code>
25 changes: 10 additions & 15 deletions content/support.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,9 @@ layout: faq

<div class="questions-box">

## Contact Email

[email protected]

</div>

<div class="questions-box">

## Online Chat

link to support chat messaging
[Online Chat (Discord)](https://discord.gg/ymcW6sRveX)

</div>

Expand All @@ -33,25 +25,28 @@ link to support chat messaging

<div class="questions-box">

## Question example, Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor?
## Who is ASHIRT for?

Solution: _Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor_
- _ASHIRT was developed by the Yahoo Red Team to reduce friction of reporting during engagements. ASHIRT allows operators to quickly submit relevant evidence without switching screens._
- _No more dragging and dropping screenshots into a shared folder or document. No more saving recordings to a shared file folder._

</div>

<div class="questions-box">

## Question example, Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor?
## Why should I use ASHIRT?

Solution: _Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor_
- It allows multiple operators to capture and place that evidence into a coherent timeline of events.
- It serves as an automatic synchronization point for different members and stakeholders to instantly get visibility into what is happening.

</div>

<div class="questions-box">

## Question example, Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor?
## What does ASHIRT do for Blue Teams?

Solution: _Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor_
- _It improves collaboration, allowing network defenders to see exactly what happened, when it happened, and most importantly how._
- _When the Blue Team wants to recreate an attack, structure a hunt, or build detections, ASHIRT lays an easy-to-follow timeline to reference. One Paranoids' network defender said, "It's not quite being in the attacker's shoes, but it's pretty dang close."_

</div>
</div>

0 comments on commit 6e2e58a

Please sign in to comment.