Scripting Credentials
What does this hook into?
Scripting tasking involves the following RESTful endpoints on an instance of Mythic
. This means you need to create a new Mythic
instance (i.e. mythic = Mythic(username="blah" ...
) and then call these functions like mythic.get_all_tasks()
:
How to create new credentials
Credential's type
must be one of the following:
plaintext
certificate
hash
key
ticket
cookie
hex
To create a credential, you must supply a type
, a realm
(this is your domain if you're doing Windows), a credential
(this is the actual credential value), and an account
(who does this credential belong to). You can also optionally add a comment:
Last updated