Response - Common fields used in all gRPC responses. Note that the Err field only used when the implant needs to return an error to the server. Client<->Server comms should use normal gRPC error handling.

interface Response {
    Async: boolean;
    BeaconID: string;
    Err: string;
    TaskID: string;
}

Properties

Async: boolean
BeaconID: string
Err: string
TaskID: string