Skip to content

Instantly share code, notes, and snippets.

View hellman's full-sized avatar
🍊

Aleksei Udovenko hellman

🍊
View GitHub Profile
@hellman
hellman / decision_tree.ipynb
Last active March 17, 2024 18:37
Decision Tree of a Boolean function in $O(n3^n)$
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hellman
hellman / Benchmark_is_cyclic.ipynb
Created February 18, 2024 11:51
Benchmark isogeny.is_cyclic
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hellman
hellman / dice_rejected.py
Last active May 15, 2022 09:05
DiceCTF 2021 - rejected
from sage.all import *
from rejected import LFSR, taps
from binteger import Bin
from sock import Sock
n = 64
N = 2**30 + 2**29
f = Sock("mc.ax 31669")
f.send_line(str(N))
@hellman
hellman / dice_psych.py
Last active February 6, 2022 22:08
DiceCTF 2022 - psych (crypto 500)
from sage.all import ZZ, GF, EllipticCurve, proof
from hashlib import scrypt
from sock import Sock
from psych import sidh, xor, G, H
proof.all(False)
def ser(*args):
@hellman
hellman / 0raccoon.ipynb
Last active July 3, 2021 05:20
CTFZone 2021 - Raccoon
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hellman
hellman / write.ipynb
Last active February 28, 2021 14:46
AeroCTF 2021 - Horcrux (Crypto)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hellman
hellman / coll.py
Last active January 14, 2021 08:44
HXP CTF 2020 - Octothorpe (Crypto Hard)
'''
The idea is to reach a state consisting of 00 and FF bytes.
Because of the independence of shifts values, if the message block is the same 32-byte part repeated 2 times,
the state is preserved. We then can change the 32 byte part arbitrarily and keep the hash value unchanged.
To do this we first craft a 32x2 message block that lands on such state after 2nd round (1st round does nothing).
We have 32 bytes of freedom (-charset constraints), so this is reasonable and can be done with 1 byte guess and propagation.
One caveat is that the initial state is rather symmetric and and it's not always easy to land on a desired state,
so we prepend random block first to randomize the state.
@hellman
hellman / Makefile
Last active December 13, 2020 17:01
ASIS CTF 2020 Finals - Trio Color (3DES)
prepare:
mkfifo p1 p2
precomp:
./stage1_precomp
du -hs dump*
# 17G dump0
# 17G dump1
# 17G dump2
# 17G dump3
@hellman
hellman / multicrc_solve.py
Created September 6, 2020 20:08
ALLES! CTF 2020 - crccalc1,2 (Crypto)
from sage.all import *
from crccheck.crc import *
def tobin(v, n):
assert 0 <= v < 2**n
return tuple(ZZ(v).digits(2, padto=n))[::-1]
def frombin(v):
return sum(int(c)*2**i for i, c in enumerate(v[::-1]))
@hellman
hellman / FibHash.ipynb
Last active March 25, 2021 07:28
CONFidence 2020 CTF Finals - FibHash (Crypto 421)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.