Documentation
¶
Overview ¶
The tasks package contains all the tasks Dexter can run.
To add a new task, start by making a copy of the example file.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Tasks = map[string]Task{}
All tasks in Dexter are stored here, added using the `add` function in the files that define the tasks.
Functions ¶
This section is empty.
Types ¶
type ArtifactWriter ¶
type ArtifactWriter struct {
// contains filtered or unexported fields
}
An ArtifactWriter helps you create files in the correct path for a report.
func (*ArtifactWriter) Error ¶
func (writer *ArtifactWriter) Error(message string)
Write an error into a tasks's report
func (*ArtifactWriter) Write ¶
func (writer *ArtifactWriter) Write(dst string, data []byte)
Write a file to the filesystem, logging any errors
Click to show internal directories.
Click to hide internal directories.