We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 110135d commit bcf6914Copy full SHA for bcf6914
Convert2Shellcode/Convert2Shellcode_post.go
@@ -190,7 +190,7 @@ func main() {
190
finalShellcode := make([]uint8, finalsize)
191
copy(finalShellcode, dllBytes)
192
copy(finalShellcode, bootstrap)
193
- finalShellcode = append(finalShellcode, rdiShellcode64...)
+ copy(finalShellcode[len(dllBytes):], rdiShellcode64)
194
195
// 确定输出路径
196
outputPath := "shellcode_post.bin"
0 commit comments