Files
Necropolis-C2/protobuf/cpb/common.proto
T
2026-07-07 04:39:43 +01:00

34 lines
517 B
Protocol Buffer

syntax = "proto3";
package cpb;
option go_package = "github.com/Yenn503/NecropolisC2/protobuf/cpb";
message Empty {}
message Process {
int32 Pid = 1;
int32 Ppid = 2;
string Name = 3;
string Owner = 4;
string Path = 5;
string Args = 6;
string Session = 7;
string Architecture = 8;
}
message EnvVar {
string Key = 1;
string Value = 2;
}
message Response {
uint32 Err = 1;
string ErrMsg = 2;
bytes Data = 3;
}
message Request {
uint32 Opcode = 1;
bytes Data = 2;
int64 PeerID = 3;
}