Skip to content
Ol3gl3 edited this page Jan 10, 2023 · 6 revisions

DROPS Tools

This repository contains cheatsheets for tools in a YAML format files that will be reflected in DROPS.

Are you tired of coppying same commands and changing the relevant parameters and flags?
DROPS is here to help! It is an innovative dynamic cheat sheet for Red Team operations and tools.

Using this repository you will be able to contribute more tools to the cheatsheet and use them.

Contribution guidelines

  1. Edit the files.json file, to include added tool cheatsheet
  2. Create yaml file for added tool cheatsheet
  3. Request a Pool Request (PR)
  4. After approved it will be reflected in the main website

General structure

---
projectLink: <Link>
name: <Name>
languages: 
    # Section containing ..
    - name: 
params:
    # Section containing relevant parameters
    - name: user
      description: 'Username for ticket request'
      template: "/user:{0}"
      optional: true
      selected: false
      type: text
      default: ''

sections:
    # Tools commands
    - name: <Name explaining what this command should do>
      labels: ['Recon'] # Relevant labels for filtering
      mitre: 'T11.11' # Mitre relevant technique
      verb: '' # Verb that 
      required_flags: [] # Will reflect required params for command
      optional_flags: [] # Will contain any optional params for command

Params guide

params

Section guide

section

Filters

To make it easier to search for specific commands, it is possible to add labels which will be used to filter by different categories:

  • Services
  • Operating Systems
  • Attack phases
  • Possession

For filtering to work correctly you need to make sure that all labels relevant for the tool are exists in the files.json file. Also make sure to specify the relevant labels under each section.

VSCode snippets

This repository comes with preconfigured snippets for:

  • Tools general structure
  • Parameters
  • Sections

Full example

Rubeus