Skip to content
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.

Commit

Permalink
2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Eidelberg committed Jul 23, 2021
1 parent be3e240 commit 8809d45
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 21 deletions.
15 changes: 0 additions & 15 deletions Loader/Loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,23 +143,8 @@ func DLLfile(b64ciphertext string, b64key string, b64iv string, mode string, ref
WindowsVersion := &WindowsVersion{}
WindowsVersion.Variables = make(map[string]string)

<<<<<<< HEAD
DLL.Variables["fullciphertext"] = Cryptor.VarNumberLength(4, 12)
DLL.Variables["ciphertext"] = Utils.B64ripper(b64ciphertext, DLL.Variables["fullciphertext"], true)
=======
splitval := len(b64ciphertext)
splitval = splitval - 45
encodedfirsthalf := string(b64ciphertext[:splitval])
encodedsecondhalf := string(b64ciphertext[splitval:])

DLL.Variables["b64_string1name"] = Cryptor.VarNumberLength(4, 12)
DLL.Variables["b64_string2name"] = Cryptor.VarNumberLength(4, 12)
DLL.Variables["fullciphertext"] = Cryptor.VarNumberLength(4, 12)
DLL.Variables["b64_string1value"] = encodedfirsthalf
DLL.Variables["b64_string2value"] = encodedsecondhalf

DLL.Variables["ciphertext"] = b64ciphertext
>>>>>>> 2be2a036f73846a9aba50e30d2fd9fc2b2184aa4
DLL.Variables["key"] = b64key
DLL.Variables["iv"] = b64iv
DLL.Variables["vkey"] = Cryptor.VarNumberLength(4, 12)
Expand Down
6 changes: 0 additions & 6 deletions Struct/Struct.go
Original file line number Diff line number Diff line change
Expand Up @@ -342,14 +342,8 @@ func DLL_Refresher() string {
if {{.Variables.Version}} == "10.0" {
{{.Variables.loader}}()
}
<<<<<<< HEAD
{{.Variables.ETW}}
{{.Variables.ciphertext}}
=======
{{.Variables.b64_string1name}} := "{{.Variables.b64_string1value}}"
{{.Variables.b64_string2name}} := "{{.Variables.b64_string2value}}"
{{.Variables.fullciphertext}} := {{.Variables.b64_string1name}} + {{.Variables.b64_string2name}}
>>>>>>> 2be2a036f73846a9aba50e30d2fd9fc2b2184aa4
{{.Variables.vciphertext}}, _ := base64.StdEncoding.DecodeString({{.Variables.fullciphertext}})
{{.Variables.vkey}}, _ := base64.StdEncoding.DecodeString("{{.Variables.key}}")
Expand Down

0 comments on commit 8809d45

Please sign in to comment.