List available atomic tests - Adam-Mashinchi/invoke-atomicredteam GitHub Wiki

It's helpful to know what tests are available for a given MITRE ATT&CK® technique. Note that you must import the Invoke-Atomic module before running these commands.

List the available tests

You can view a list of all atomic tests:

Invoke-AtomicTest All -ShowDetailsBrief

To view the list of tests associated with a particular technique, specify a technique number:

Invoke-AtomicTest <technique number> -ShowDetailsBrief

For example, T1003 shows all the tests associated with OS Credential Dumping.

View test details

To list tests alonside a verbose description, use the -ShowDetails flag:

Invoke-AtomicTest <technique number> -ShowDetails

Up next