-
Notifications
You must be signed in to change notification settings - Fork 63
API
Jared Atkinson edited this page Aug 5, 2017
·
12 revisions
List computers that have been enumerated by an ACE discovery.
Return a specific computer that has been enumerated by an ACE discovery.
Credential objects are usernames and passwords to be used by ACE for authenticating with systems that are targeted by a sweep. Passwords are encrypted at rest and only decrypted in memory when used to authenticate.
Delete a credential from the ACE database.
List credentials in the ACE database.
Add a credential to the ACE database. Added credentials must be passed in the following format:
public class CredentialViewModel
{
[Required]
public string UserName { get; set; }
[Required]
public string Password { get; set; }
}
Update a credential in the ACE database. The specific credential to update must be specified by it's unique identifier. The credential object must be passed in the following format:
public class CredentialViewModel
{
[Required]
public string UserName { get; set; }
[Required]
public string Password { get; set; }
}