Skip to content

Latest commit

 

History

History
56 lines (50 loc) · 3.71 KB

DomainDiscoverAPIAccount.md

File metadata and controls

56 lines (50 loc) · 3.71 KB

Falcon::DomainDiscoverAPIAccount

Properties

Name Type Description Notes
account_name String The account's name (Domain\Username or Hostname\Username). [optional]
account_type String The type of the account (Local or Domain). [optional]
admin_privileges String Whether the account has administrator privileges (Yes, No, or Unknown). [optional]
cid String The account's customer ID.
first_seen_timestamp String The first time the account was seen successfully logging in to your environment. [optional]
id String The unique ID of the account.
last_failed_login_hostname String The hostname of the asset on which the account last made a failed login. [optional]
last_failed_login_timestamp String The date and time of the account's most recent failed login. [optional]
last_failed_login_type String The type of the account's most recent failed login. <ul><li>Interactive</li><li>Network</li><li>Batch</li><li>Service</li><li>Unlock</li><li>Network cleartext</li><li>New credentials</li><li>Remote interactive</li><li>Cached credentials</li><li>Auditing</li></ul> [optional]
last_successful_login_host_city String The name of the city where the asset is located on which the account last successfully logged in. [optional]
last_successful_login_host_country String The name of the country where the asset is located on which the account last successfully logged in. [optional]
last_successful_login_hostname String The hostname of the asset on which the account last successfully logged in. [optional]
last_successful_login_remote_ip String The remote IP address of the asset on which the account last successfully logged in. [optional]
last_successful_login_timestamp String The date and time of the account's most recent successful login. [optional]
last_successful_login_type String The type of the account's most recent successful login. <ul><li>Interactive</li><li>Network</li><li>Service</li><li>Remote interactive</li><li>Cached credentials</li><li>Auditing</li></ul> [optional]
local_admin_privileges String Whether the account has local administrator privileges (Yes, No). [optional]
login_domain String The domain of the asset the account successfully logged in to. [optional]
password_last_set_timestamp String The most recent date and time the account's password was changed. [optional]
user_sid String The account's security identifier on Windows assets. [optional]
username String The account's username. [optional]

Example

require 'crimson-falcon'

instance = Falcon::DomainDiscoverAPIAccount.new(
  account_name: null,
  account_type: null,
  admin_privileges: null,
  cid: null,
  first_seen_timestamp: null,
  id: null,
  last_failed_login_hostname: null,
  last_failed_login_timestamp: null,
  last_failed_login_type: null,
  last_successful_login_host_city: null,
  last_successful_login_host_country: null,
  last_successful_login_hostname: null,
  last_successful_login_remote_ip: null,
  last_successful_login_timestamp: null,
  last_successful_login_type: null,
  local_admin_privileges: null,
  login_domain: null,
  password_last_set_timestamp: null,
  user_sid: null,
  username: null
)