Skip to content

Commit

Permalink
💬 Update help information
Browse files Browse the repository at this point in the history
  • Loading branch information
yutianqaq committed Feb 5, 2024
1 parent 0d46b92 commit 3156f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Decryptors/Decryptors.go
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ func main() {
key := []byte("%s")
decryptedShellcode := RC4Encryption(%s, key)
fmt.Print("XOR Decrypted Payload:\n")
fmt.Print("RC4 Decrypted Payload:\n")
for i, b := range decryptedShellcode {
fmt.Printf("0x%%02X", b)
if i < len(decryptedShellcode)-1 {
Expand Down Expand Up @@ -840,7 +840,7 @@ func main() {
panic(err)
}
fmt.Print("Decrypted Payload:\n")
fmt.Print("AES Decrypted Payload:\n")
for i, b := range decrypted {
fmt.Printf("0x%%02X", b)
if i < len(decrypted)-1 {
Expand Down

0 comments on commit 3156f9d

Please sign in to comment.