add premium rsa, not sure if autogen will work

This commit is contained in:
neptunia 2017-03-17 19:03:51 -04:00
parent ba4bdfc1d5
commit 1d7fea8e54
3 changed files with 103 additions and 0 deletions

View file

@ -0,0 +1 @@
My RSA is the greatest. It's so strong, in fact, that I'll even give you d! [file](${ciphertext_txt})

95
premium-rsa/grader.py Normal file
View file

@ -0,0 +1,95 @@
from cStringIO import StringIO
import os, random
from Crypto.Util import number
flag = randleetify("i_probably_shouldnta_leeked_d",random)
def egcd(a, b):
if a == 0:
return (b, 0, 1)
else:
g, y, x = egcd(b % a, a)
return (g, x - (b // a) * y, y)
def modinv(a, m):
g, x, y = egcd(a, m)
if g != 1:
raise Exception('modular inverse does not exist')
else:
return x % m
def randleetify(s, random):
i = list(s)
for c in range(len(i)):
if random.random() > 0.5:
if i[c] == 'i':
if random.random() > 0.66:
i[c] = '1'
elif random.random() > 0.33:
i[c] = 'I'
elif i[c] == 'o':
if random.random() > 0.66:
i[c] = '0'
elif random.random() > 0.33:
i[c] = 'O'
elif i[c] == 'a':
if random.random() > 0.66:
i[c] = '4'
elif random.random() > 0.33:
i[c] = 'A'
elif i[c] == 'l':
if random.random() > 0.66:
i[c] = '1'
elif random.random() > 0.33:
i[c] = 'L'
elif i[c] == 's':
if random.random() > 0.66:
i[c] = '5'
elif random.random() > 0.33:
i[c] = 'S'
elif i[c] == 'e':
if random.random() > 0.66:
i[c] = '3'
elif random.random() > 0.33:
i[c] = 'E'
elif i[c].isalpha():
if random.random() > 0.5:
i[c] = i[c].upper()
return ''.join(i)
def get_problem(random):
n_length = 2048
p = number.getPrime(n_length, os.urandom)
q = number.getPrime(n_length, os.urandom)
n = p*q
e = 65537
phi = (p-1)*(q-1)
d = modinv(e, phi)
cut = len(bin(d).strip('0b').strip('L'))//2
given = bin(d).strip('0b').strip('L')[cut:]
deez = hex(int(given,2)).zfill(len(given)/4)
salt = random.choice("!?.")
return (n, e, cut, deez, salt)
def generate_ciphertext(random):
n, e, cut, deez, salt = get_problem(random)
encoded = int(("easyctf{%s%s}" % (flag, salt)).encode('hex'),16)
ciphertext = 'n: '+str(n)+'\n'
ciphertext += 'e: '+str(e)+'\n'
ciphertext += 'd: [??? '+str(cut)+' REDACTED BITS ???]'+str(deez)+'\n'
ciphertext += 'c: '+str(pow(encoded, e, n))+'\n'
return StringIO(ciphertext)
def generate(random):
return dict(files={
"ciphertext.txt": generate_ciphertext
})
def grade(random, key):
n, e, deez, salt = get_problem(random)
if key.find("%s_%s" % (flag, salt)) >= 0:
return True, "Correct!"
return False, "Nope."

7
premium-rsa/problem.yml Normal file
View file

@ -0,0 +1,7 @@
title: Premium RSA
author: neptunia
hint: You thought it'd be that simple?
category: Cryptography
autogen: true
programming: false
value: 350