Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 844 Bytes

File metadata and controls

36 lines (28 loc) · 844 Bytes

alt text

AutoDeGOder

This is a Go utility script that performs XOR + NOT decryption on hex-encoded strings using a given key. (It's a bit of a misnomer, but I like the name.)

Features

  • Decrypts multiple hex-encoded strings in one run
  • Uses XOR + NOT operation for decryption
  • Outputs results in a structured JSON format
  • Handles multiple blobs in a single execution

Usage

  1. Open main.go
  2. Modify the blobs array to include your hex-encoded strings:
blobs := []string{
    "ENCODEDSTRING1",
    "ENCODEDSTRING2",
    "ENCODEDSTRING3",
}
  1. Set your decryption key:
key := "DECRYPTIONKEY"
  1. Run the program:
go run main.go

Output

The program creates a file named decrypted_blobs.json containing the decryption results saved in the same directory main.go runs.