summaryrefslogtreecommitdiffstats
path: root/challenge
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2021-02-24 17:50:34 -0500
committerrsiddharth <s@ricketyspace.net>2021-02-24 17:50:34 -0500
commit1347de40f45ec0402ac61fcd86e8f87adf3473ad (patch)
tree1bc5d8760ba330d29dd47d4de67d93e7044c19cc /challenge
parent81320f4f6ff2201d3bcd9666cfc4b47867cfdd12 (diff)
challenge/c16.go: refactor
Keep everything inside C16
Diffstat (limited to 'challenge')
-rw-r--r--challenge/c16.go127
1 files changed, 58 insertions, 69 deletions
diff --git a/challenge/c16.go b/challenge/c16.go
index 155fbaa..0376ccf 100644
--- a/challenge/c16.go
+++ b/challenge/c16.go
@@ -6,27 +6,65 @@ package challenge
import (
"crypto/rand"
"fmt"
+
"ricketyspace.net/cryptopals/lib"
)
-var cbcBitFlipKey []byte = make([]byte, 16)
-var cbcBitFlipIV []byte = make([]byte, 16)
-
-func init() {
- _, err := rand.Read(cbcBitFlipKey)
+func C16() {
+ key := make([]byte, 16)
+ _, err := rand.Read(key)
if err != nil {
- panic(err)
+ fmt.Printf("bit flip key: error: %v", err)
}
+ iv := make([]byte, 16)
+ quote := func(s string) string {
+ qs := ""
+ for i := 0; i < len(s); i++ {
+ if s[i] == ';' || s[i] == '=' {
+ qs += "%" + lib.StrToUpper(lib.ByteToHexStr(s[i]))
+ } else {
+ qs += string(s[i])
+ }
+ }
+ return qs
+ }
+ encrypt := func(s string) []byte {
+ in_s := "comment1=cooking%20MCs;userdata="
+ in_s += quote(s)
+ in_s += ";comment2=%20like%20a%20pound%20of%20bacon"
- // Initialization vector for CBC encryption.
- for i := 0; i < len(cbcBitFlipIV); i++ {
- cbcBitFlipIV[i] = '0'
+ return lib.AESEncryptCBC(lib.StrToBytes(in_s), key,
+ iv)
+ }
+ decryptHasAdmin := func(c []byte) bool {
+ b, _ := lib.AESDecryptCBC(c, key, iv)
+ s := lib.BytesToStr(b)
+
+ // Convert to a map
+ m := make(map[string]string, 0)
+ for _, r := range lib.StrSplitAt(';', s) {
+ kv := lib.StrSplitAt('=', r)
+ if len(kv) != 2 {
+ continue // ignore
+ }
+ kv[0] = lib.StripSpaceChars(kv[0])
+ kv[1] = lib.StripSpaceChars(kv[1])
+ m[kv[0]] = kv[1]
+ }
+ if _, ok := m["admin"]; ok && lib.StrHas(m["admin"], "true") {
+ return true
+ }
+ return false
+ }
+ // Figure out the byte that translates to target byte `t` for cipher
+ // byte `c` assuming the plain text byte at that position is `p`.
+ flipByte := func(p, t, c byte) byte {
+ io := p ^ c // intermediate output (io) byte
+ return t ^ io
}
-}
-func C16() {
s := ";admin=true"
- c := cbcBitFlipEncrypt(s)
+ c := encrypt(s)
fmt.Printf("Original Cipher: %v\n", c)
// Bitflip Attack
@@ -35,14 +73,14 @@ func C16() {
copy(cc, c)
// Assuming position i is the start of '%3Badmin%3Dtrue'
- cc[i+0] = cbcGetFlipByte('%', 0, c[i+0]) // 0 => NUL
- cc[i+1] = cbcGetFlipByte('3', 0, c[i+1]) // 0 => NUL
- cc[i+2] = cbcGetFlipByte('B', 59, cc[i+2]) // 59 => ;
- cc[i+(8+0)] = cbcGetFlipByte('%', 0, c[i+(8+0)]) // 0 => NUL
- cc[i+(8+1)] = cbcGetFlipByte('3', 0, c[i+(8+1)]) // 0 => NUL
- cc[i+(8+2)] = cbcGetFlipByte('D', 61, c[i+(8+2)]) // 61 => =
-
- if cbcBitFlipDecryptHasAdmin(cc) {
+ cc[i+0] = flipByte('%', 0, c[i+0]) // 0 => NUL
+ cc[i+1] = flipByte('3', 0, c[i+1]) // 0 => NUL
+ cc[i+2] = flipByte('B', 59, cc[i+2]) // 59 => ;
+ cc[i+(8+0)] = flipByte('%', 0, c[i+(8+0)]) // 0 => NUL
+ cc[i+(8+1)] = flipByte('3', 0, c[i+(8+1)]) // 0 => NUL
+ cc[i+(8+2)] = flipByte('D', 61, c[i+(8+2)]) // 61 => =
+
+ if decryptHasAdmin(cc) {
fmt.Printf("Modified cipher: %v has ';admin=true;'\n", cc)
return
}
@@ -50,55 +88,6 @@ func C16() {
fmt.Printf("Bitflip Attack failed!\n")
}
-func cbcBitFlipEncrypt(s string) []byte {
- in_s := "comment1=cooking%20MCs;userdata="
- in_s += cbcBitFlipQuote(s)
- in_s += ";comment2=%20like%20a%20pound%20of%20bacon"
-
- return lib.AESEncryptCBC(lib.StrToBytes(in_s), cbcBitFlipKey,
- cbcBitFlipIV)
-}
-
-func cbcBitFlipDecryptHasAdmin(c []byte) bool {
- b, _ := lib.AESDecryptCBC(c, cbcBitFlipKey, cbcBitFlipIV)
- s := lib.BytesToStr(b)
-
- // Convert to a map
- m := make(map[string]string, 0)
- for _, r := range lib.StrSplitAt(';', s) {
- kv := lib.StrSplitAt('=', r)
- if len(kv) != 2 {
- continue // ignore
- }
- kv[0] = lib.StripSpaceChars(kv[0])
- kv[1] = lib.StripSpaceChars(kv[1])
- m[kv[0]] = kv[1]
- }
- if _, ok := m["admin"]; ok && lib.StrHas(m["admin"], "true") {
- return true
- }
- return false
-}
-
-func cbcBitFlipQuote(s string) string {
- qs := ""
- for i := 0; i < len(s); i++ {
- if s[i] == ';' || s[i] == '=' {
- qs += "%" + lib.StrToUpper(lib.ByteToHexStr(s[i]))
- } else {
- qs += string(s[i])
- }
- }
- return qs
-}
-
-// Figure out the byte that translates to target byte `t` for cipher
-// byte `c` assuming the plain text byte at that position is `p`.
-func cbcGetFlipByte(p, t, c byte) byte {
- io := p ^ c // intermediate output (io) byte
- return t ^ io
-}
-
// Output:
// Original Cipher: [18 227 203 76 201 225 61 211 210 75 210 131 101 134 52 68 63 93 34 217 140 103 69 179 175 140 243 88 200 210 29 153 225 201 56 174 159 246 159 32 75 234 203 115 144 56 108 102 60 215 232 204 192 90 54 80 81 119 202 171 27 117 58 102 5 54 72 102 149 132 143 17 198 127 164 117 41 211 56 142 114 185 200 68 33 239 39 188 38 22 14 108 226 223 158 221]
// Modified cipher: [18 227 203 76 201 225 61 211 210 75 210 131 101 134 52 68 26 110 91 217 140 103 69 179 138 191 138 88 200 210 29 153 225 201 56 174 159 246 159 32 75 234 203 115 144 56 108 102 60 215 232 204 192 90 54 80 81 119 202 171 27 117 58 102 5 54 72 102 149 132 143 17 198 127 164 117 41 211 56 142 114 185 200 68 33 239 39 188 38 22 14 108 226 223 158 221] has ';admin=true;'