chore: add more heartbeat fields

This commit is contained in:
0x1a8510f2 2023-01-09 06:25:05 +00:00
parent f96a3aa5e1
commit a499198bfd
Signed by: 0x1a8510f2
GPG Key ID: 1C692E355D76775D

View File

@ -1,11 +1,19 @@
package proto
import "time"
// The structure of heartbeats which Wraiths send to c2 to register
// their status and presence.
type PacketHeartbeat struct {
// The unique fingerprint of the Wraith.
// The unique fingerprint of this Wraith.
Fingerprint string
// A unique fingerprint of the family/strain this Wraith belongs to.
StrainId string
// The time when this Wraith was initialised.
InitTime time.Time
// The operating system Wraith is running on.
HostOS string