We have gone quantum. A collaborator of ours built this quantum circuit to compute the factorization of a Bavs RSA key and took note of the results. They are now stored in her server (https://qc.pwn2.win) inside the
/a/N
path, where a is the group generator and N is the modulus. Unfortunately we could not get in touch with her lately, so we need your help understanding what she did. Once you figure out how the circuit works and discover what are the values of a and N, we can see the results from her calculations and use them to decrypt the message.Note: We know that the message was originally encrypted with the following commands:
openssl rsautl -encrypt -oaep -pubin -inkey public.pem -in aes256.key -out aes256.key.enc openssl aes-256-cbc -base64 -in secret_message.txt -out secret_message.enc -k $(cat aes256.key)
Time
5 hours
Solution
TL;DR
- Split the qasm file
- Extract N
- Plot the calling graph
- Extract the classical part
- Simulate it to get a
- Get the period and public key from the server
- Factorize N
We have gone quantum.
In this chal, we have a crazy 10GB (40GB in 1024bits ver.) qasm file describing a enormous quantum circuit. As the description says, the circuit is built for factoring RSA key. It may be an implementation of Shor's algorithm.
The following writeup is for 640bits version, it should be similar in 1024bits, but gate/reg name will be different.
Basic qasm
- qreg: a quantum register (e.g. qubit), initialized to .
- creg: a classical register, e.g. bit, initialized to .
- x:
NOT
in quantum. - h: Hadamard gate, a gate for creating superposition or some crazy quantum things.
- cx:
XOR
in quantum,cx a,o
equalso ^= a
in classic. - ccx:
AND
in quantum,cx a,b,o
equalso ^= (a & b)
in classic. - swap: Swap two input qubits.
Tear the monster
To dealing with the qasm file, I split each gate to seperate file, outputing 3881 files. (Script)
The most interesting file is main, which is the part not enclosed in gate xxx { ... }
. It looks like:
qreg af[642];
qreg a[642];
qreg n[642];
qreg kk[643];
qreg aa[1];
qreg ab[1];
qreg an[642];
qreg ac[642];
qreg yv[642];
creg c[642];
creg cr0[1];
creg cr1[1];
...
creg cr640[1];
creg cr641[1];
x n[0];
x n[3];
x n[6];
x n[7];
...
x n[633];
x n[635];
x n[638];
x n[639];
sqgate_3858 a,af,n,ac,an,yv,kk,aa,ab;
h yv;
sqgate_3850 af,a,n,kk,an,ac,yv
measure an -> c;
h yv[0];
measure yv[0]->cr0[0];
if(cr0==1) u1(pi/2) yv[1];
h yv[1];
measure yv[1]->cr1[0];
if(cr0==1) u1(pi/4) yv[2];
if(cr1==1) u1(pi/2) yv[2];
h yv[2];
measure yv[2]->cr2[0];
if(cr0==1) u1(pi/8) yv[3];
if(cr1==1) u1(pi/4) yv[3];
if(cr2==1) u1(pi/2) yv[3];
h yv[3];
...
The part x n[...];
seems to be an constructor of variable n
. According to its name, it might be which is one of our target.
There's also an interesting variable a
, but it isn't initialized directly.
After init n
, it calls sqgate_3858
, applies hadamard gate on yv
, calls sqgate_3850
, and then extracts the output by measuring.
Note that although yv
is passed to sqgate_3858
, there isn't any reference to it in sqgate_3858
.
Find the generator
According to the wikipedia, Shor's algorithm is composed of these steps:
- Classical parts: Generate a random number , which is coprime to .
- Prepare initial state: Apply hadamard gate to zero state.
- Apply : Change initial state to .
- Apply QFT.
- Measuring output to find period.
Compare to the code in last part, sqgate_3858
seems to be the classical part, h yv
is preparing the initial state, sqgate_3850
applied f(x)
and QFT
.
When I plot the calling graph (Script1 and Script2), I can confirm that sqgate_3858
is actually a classical circuit. There isn't any call to hadamard gate or any gate that will create superposition. The primitive gates it called are: x, cx, ccx, swap
.
We can simulate this part and extract the state of those register. Here's the script, and the output is:
a: 140...565
su: 0
n: 362...081
o: 1
x: 1
y: 0
sc: 0
aa: 0
ab: 0
We got and now.
Factorize N
Opening the webpage https://qc.pwn2.win/140...565/362...081 as the challenge description said, it gave us the period and .
According to the algorithm:
There are three possibilities: divides , divides , or divides ,
To check this, we can calculate And then we found is not equals to . It means that is a factor of !!!
Next step is to construct the private key with RsaCtfTool
, and decrypt the flag with openssl
.