update readme

This commit is contained in:
2026-07-07 04:37:29 +01:00
commit 50cbc601d5
69 changed files with 15056 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
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;
}