<div dir="ltr"><div dir="ltr">Hi all,<div>As in exercise in understanding Cybersecurity in IoT better, I'm trying to implement the flush-reload attack from the paper "FLUSH+RELOAD: A High Resolution, Low Noise, L3 Cache Side-Channel Attack". The crux of the attack is to extract the private key of RSA encryption used in Gnupg. One of the steps to initiate the attack is to find certain memory addresses to feed to a spy function. For that I'm trying to open a C executable in Gnu debugger(gdb). The program is part of the Gnupg 1.4.13 version. My aim is to get the memory address of a particular function by setting breakpoint at that line. While compiling the c program using **gcc -g mpi-pow.c**, (And yes I tried without the -g option) I'm getting this error:<br><br><br><br>    <b>mpi-pow.c:28:10: fatal error: config.h: No such file or directory<br>       28 | #include <config.h><br>          |          ^~~~~~~~~~<br>    compilation terminated</b><br><br><br><br>These were the exact steps I did:--><br><br><ol><li> - Extracted the Gnupg source code using tar xjvf gnupg-1.4.13.tar.bz2</li><li> - cd gnupg-1.4.13/</li><li> - ./configure</li><li> - sudo make</li><li> - sudo make install</li></ol><br>The source code of Gnupg 1.4.13 is at <a href="http://www.ring.gr.jp/pub/net/gnupg/gnupg/" target="_blank">Link_to_code</a><br>The original paper is here <a href="https://eprint.iacr.org/2013/448.pdf" target="_blank">Link_to_paper</a><br><br>A quick google search told me that "In computing, configuration files (commonly known simply as config files) are files used to configure the parameters and initial settings for some computer programs". <font color="#c27ba0"><i>And as far as I understood, the config file is made when the "./configure" command is run and in this case, it simply means there is no config.h file in the current directory</i>.</font> There were no errors during the compilation of Gnupg.<br> <br>I'm using the Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz processor.  <br>I tried it on WSL and on Ubuntu 20.04 installed on dual boot.  <br><br> 1. What might be the reason ?<br> 2. How can I rectify this error ?<br><br>Any help would be highly appreciated.  </div></div></div>