OBJECT

AttackVectorStep

link GraphQL Schema definition

  • type AttackVectorStep {
  • # Source asset of the step
  • srcAsset: Asset @deprecated( reason: "Deprecated since 3.18 (Zones), use srcAssetOrIps instead" )
  • # Source asset of the step
  • srcAssetOrIps: AttackVectorStepAsset
  • # The risk of source asset
  • srcRisk: Float
  • # Destination asset of the step
  • dstAsset: Asset! @deprecated( reason: "Deprecated since 3.18 (Zones), use dstAssetOrIps instead" )
  • # Destination asset of the step
  • dstAssetOrIps: AttackVectorStepAsset!
  • # The risk of destination asset
  • dstRisk: Float!
  • # Protocols used between the assets
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • protocols(after: String, first: Int, before: String, last: Int): StringConnection!
  • # Last used protocol
  • lastProtocolUsed: String!
  • # Time of last conversation
  • lastConversationTime: Time!
  • # Is inner backplane communication
  • backplaneComm: Boolean!
  • # One of the assets is the internet
  • externalComm: Boolean!
  • }