Linux

Tool Tip – Organize Your Arsenal



0:00 Intro
0:06 Install and Basic Setup Of Arsenal From Github
1:38 Basic Use Of Arsenal and Fix TIOCSTI Error
3:35 Adding Custom Commands Into Arsenal
7:22 Thanks For Watching

* Please don’t work out of the /tmp/ directory that was mainly for the demo
store your Arsenal into the place that works for you.

# Download Arsenal With Git. Also Where the Doc Can Be Found

git clone

# Setup Arsenal
git clone
cd arsenal

pip3 install -r requirements.txt

0r

python3 -m venv virt_env
source ./virt_env/bin/activate
pip3 install -r requirements.txt

* Exit Python Virtual Env without closing Terminal or Terminal split

deactivate

## Fix TIOCSTI Issue

sudo sysctl -w dev.tty.legacy_tiocsti=1

0r

sudo cp /etc/sysctl.conf /etc/sysctl.conf.bak
sudo nano /etc/sysctl.conf

* add this line to /etc/sysctl.conf
dev.tty.legacy_tiocsti=1

sudo sysctl -p

# Basic use of Arsenal
./run -h
./run

0r

./run -x
./run –copy

1. search for command “arrow keys or mouse wheel”
2. select command with “Enter-Key”
3. Also use up/down arrow keys for setting arguments in the currently selected command.
4. after format command “Enter-Key again to return formatted command”
5. Back out of command with “ESC or Escape Key” without closing Arsenal
6. Ctrl-C to exit out of Arsenal is OK when you are done with “Arsenal”

# Adding Custom or New commands Into Arsenal
* Templates for default commands from git clone

* revshells.com website where the AWK reverse shell is from in that part of the video
Thanks again 0day! for making this amazing website!

git clone
cd ./arsenal/arsenal/data/cheats/”cheat-sheet-type”
cat cheat_sheet.md

* add new custom cheat sheet
nano ./arsenal/my_cheats/custom_cheat.md

* Please use default commands as a template.
YouTube Comments are not kind to special characters ):

[ad_2]

source

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button