Skip to content

Commit

Permalink
Merge pull request #802 from BishopFox/feature/ppid-spoofing
Browse files Browse the repository at this point in the history
Fix grumble flag (Uint instead of Int)
  • Loading branch information
rkervella authored Aug 26, 2022
2 parents c20acb9 + b64f00a commit 18ddfd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/command/exec/execute-assembly.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func ExecuteAssemblyCmd(ctx *grumble.Context, con *console.SliverConsoleClient)
ClassName: ctx.Flags.String("class"),
AppDomain: ctx.Flags.String("app-domain"),
ProcessArgs: processArgs,
PPid: uint32(ctx.Flags.Int("ppid")),
PPid: uint32(ctx.Flags.Uint("ppid")),
})
ctrl <- true
<-ctrl
Expand Down

0 comments on commit 18ddfd2

Please sign in to comment.