Skip to content

Instantly share code, notes, and snippets.

@Kaiserouo
Kaiserouo / lll_solve.sage
Created October 27, 2024 09:44
Warframe 1999 Simple Hash Solver
m = 2 ** 6 + 2 ** 16 - 1
n = 2 ** 32
K = 256
y = 3591244806 # int(your hash) & 0xFFFFFFFF
nv = 12 # length of the actual password\
B = Matrix(ZZ, nv+1, nv+1)
B[0, 0] = n
for i in range(nv-1):