You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
967 B

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/validate-techniques.R
\name{validate_techniques}
\alias{validate_techniques}
\title{Validate Techniques strings against MITRE authoritative source}
\usage{
validate_techniques(
techniques,
matrix = c("enterprise", "mobile", "pre"),
ignore_case = FALSE,
na_rm = TRUE
)
}
\arguments{
\item{matrix}{which matrix to use when validating?}
\item{ignore_case}{if \code{TRUE} case will not be taken into account when
comparing strings. Default is \code{FALSE}.}
\item{na_rm}{remove NA's before comparing?}
\item{tactics}{a character vector of tactic strings to validate.}
}
\value{
\code{TRUE} if all tactics validate, otherwise \code{FALSE} with messages
identifying the invalid tactics.
}
\description{
Validate Techniques strings against MITRE authoritative source
}
\examples{
validate_techniques("persistence")
validate_techniques(c("persistence", "Persistence", "Persistance"))
}