Trevohack / AYO

Manage variables effectively when playing CTFs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AYO

The Efficient CTF (Capture The Flag) Manager

GitHub License GitHub Repo stars Static Badge Static Badge

Install Documentation Usage

Documentation

  • Welcome to AYO, your simple CTF (Capture The Flag) environment manager! AYO focuses on providing an easy-to-use interface for setting up and managing variables crucial for CTFs, such as rhost (remote host), domain, url, and more. With AYO, you can quickly configure your CTF environment and retrieve information with just a few simple commands.

  • AYO is an efficient CTF Manager that can do multiple tasks:

    • Hold box info
    • Retrieve box info easily
    • Set or change box data easily
    • Add new boxes
    • Configure hosts file

Usage

  • A detailed explanation on how the commands work.

Set Info

  • Set variables:
ayo set --var variable1 --value machine_1
  • Set a new variable url with the value http://myurl.com/.
ayo set --var url --value http://myurl.com/

Add New Boxes

  • Create a new box named example with the specified rhost, domain, platform, and active status.
ayo new --box example --rhost 10.10.115.28 --domain example.htb --platform htb --active active 
  • Real Time:
ayo new --box Mailing --rhost 10.10.115.28 --domain mailing.htb --platform htb --active active 

Retrieve Box Info

  • Retrieve the values of specific variables you have assigned:
ayo get rhost
ayo get url 
ayo get domain
  • Real Time Examples:
# Ex 1
rustscan -a $(ayo get rhost)

# Ex 2 
ffuf -w /usr/share/wordlists/dirb/common.txt -u http://$(ayo get domain)/FUZZ.php -t 100

# Ex 3
curl $(ayo get domain)/rev-shell.php 

Installation

  1. Oneliner:
 curl -sL https://raw.githubusercontent.com/Trevohack/AYO/main/setup.sh | bash
  1. Clone The Repository:
git clone https://github.com/Trevohack/AYO
cd AYO
pip install rich
pip install python-hosts
sudo cp main.py /usr/bin/ayo 
sudo chmod +x /usr/bin/ayo

Thank You!

About

Manage variables effectively when playing CTFs

License:GNU General Public License v3.0


Languages

Language:Python 77.5%Language:Shell 22.5%