Skip to content

Commit

Permalink
fix RegistryType off-by-one
Browse files Browse the repository at this point in the history
  • Loading branch information
daddycocoaman committed Aug 29, 2022
1 parent 8aa8095 commit 1f7bc9b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 30 deletions.
56 changes: 30 additions & 26 deletions protobuf/sliverpb/sliver.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions protobuf/sliverpb/sliver.proto
Original file line number Diff line number Diff line change
Expand Up @@ -628,10 +628,11 @@ message Backdoor {

// Registry - Registry related messages
enum RegistryType {
Binary = 0;
String = 1;
DWORD = 2;
QWORD = 3;
Unknown = 0;
Binary = 1;
String = 2;
DWORD = 3;
QWORD = 4;
}

message RegistryReadReq {
Expand Down

0 comments on commit 1f7bc9b

Please sign in to comment.