Module Values.AssetsSource

The collection of assets used in a pentest configuration, including endpoints, actors, documents, source code repositories, and integrated repositories.

Sourcetype nonrec t = {
  1. endpoints : EndpointList.t option;
    (*

    The list of endpoints to test during the pentest.

    *)
  2. actors : ActorList.t option;
    (*

    The list of actors used during penetration testing.

    *)
  3. documents : DocumentList.t option;
    (*

    The list of documents that provide context for the pentest.

    *)
  4. sourceCode : SourceCodeRepositoryList.t option;
    (*

    The list of source code repositories to analyze during the pentest.

    *)
  5. integratedRepositories : IntegratedRepositoryList.t option;
    (*

    The list of integrated repositories associated with the pentest.

    *)
}
Sourceval make : ?endpoints:??? -> ?actors:??? -> ?documents:??? -> ?sourceCode:??? -> ?integratedRepositories:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t