As of August 2020 the site you are on (wiki.newae.com) is deprecated, and content is now at rtfm.newae.com.

Difference between revisions of "Tutorial B5 Breaking AES (Straightforward)"

From ChipWhisperer Wiki
Jump to: navigation, search
(Capturing the Traces)
Line 62: Line 62:
 
=== Capturing the Traces ===
 
=== Capturing the Traces ===
  
<ol style="list-style-type: decimal;">
+
[[File:cwsetup_scriptselection.png|889x889px]]
<li>Close &amp; reopen the capture software (to clear out any previous connection which may be invalid).</li>
+
 
<li><p>From the ''Project'' menu elect the ''Example Scripts'' and then ''ChipWhisperer-Lite: AES SimpleSerial on XMEGA'' (make sure you don't select the &quot;SPA&quot; example):</p>
+
# Switch to the ''Python Console'' tab.
<p>[[File:runscript_cw1173xmega.png|image]]</p></li>
+
# The script selection window (2) lists available example scripts. Scroll down to "connect_cwlite_simpleserial.py" and click on it.
<li><p>The script will automatically connect to the capture hardware and run 2 example traces. You should see something that looks like the following screen:</p>
+
# You will see the script contents appear in the "Script Preview" window (3). You can either hit the "Run" button or double-click the filename of the script to execute it. Do either of those now.
<p>[[File:capture_cw1173xmega.png|image]]</p>
+
 
 +
The window should change to indicate the connect succeeded:
 +
 
 +
[[File:cwsetup_scriptselection_cwliterun.png|889x889px]]
 +
 
 +
 
 +
<ol start="4">
 +
# The console lists the exact script that is executed. Note you could have manually executed the script commands line-by-line in this console.
 +
# The "Scope" and "Target" buttons will show as connected.
 +
# The Status Bar will show a connection.
 +
</ol>
 +
 
 +
Note in previous software versions, this tutorial took you through manual setup. This can still be done (using the GUI), but instead now the API has been made more powerful, so the example configuration script will be used instead.
 +
 
 +
To do so, simply scroll down and select the "setup_cwlite_xmega_aes.py" file:
 +
 
 +
[[File:cwsetup_scriptselection_xmegaconfig_cwliterun.png]]
 +
 
 
<p>To complete the tutorial, follow these steps:</p>
 
<p>To complete the tutorial, follow these steps:</p>
 
<blockquote><ol style="list-style-type: decimal;">
 
<blockquote><ol style="list-style-type: decimal;">

Revision as of 10:54, 23 September 2017

This tutorial has been updated for ChipWhisperer 4.0.0 release. If you are using 3.x.x see the "V3" link in the sidebar.

B5: Breaking AES (Straightforward)
Target Architecture XMEGA
Hardware Crypto No
Software Release V3 / V4 / V5

This tutorial will take you through a complete attack on a software AES implementation. The specific implementation being attacked is a well-known AES implementation written in C, which is likely to be similar to other implementations used by proprietary systems.

Capturing

This tutorial runs on four different hardware targets. You only need to follow the steps for your given hardware.

Capturing with ChipWhisperer-Lite/Pro with default XMEGA Target (CW303)

NOTE: You can see a Quick-Start Guide and Video for this target on the CW1173_ChipWhisperer-Lite page:

Cwlite demo video.png

Hardware Setup

  1. Connect the CW1173/CW1200 by USB cable to computer.

    image

  2. The software AES implementation that will run on the target is located in chipwhisperer\hardware\victims\firmware\simpleserial-aes. In a terminal window, navigate here and run the command make to build the firmware. As in previous tutorials, ensure that the firmware has been built for the correct board. Here, the output of make should end like
    AVR Memory Usage
    ----------------
    Device: atxmega128d3
    
    Program:    3078 bytes (2.2% Full)
    (.text + .data + .bootloader)
    
    Data:        352 bytes (4.3% Full)
    (.data + .bss + .noinit)
    
    
    Built for platform CW-Lite XMEGA
    
    -------- end --------
    

    Make sure that the platform is correct.

  3. Upload the firmware to the target chip. The process to do this is the same as the previous tutorials:
    • Open the ChipWhisperer Capture software.
    • Connect to the ChipWhisperer. (You can do this using a script or by filling out the generic settings and connecting to the board yourself.)
    • Open the XMEGA Programmer (**Tools > ChipWhisperer-Lite XMEGA Programmer**).
    • Find the hex file you compiled and program it onto the target.

Capturing the Traces

Cwsetup scriptselection.png

  1. Switch to the Python Console tab.
  2. The script selection window (2) lists available example scripts. Scroll down to "connect_cwlite_simpleserial.py" and click on it.
  3. You will see the script contents appear in the "Script Preview" window (3). You can either hit the "Run" button or double-click the filename of the script to execute it. Do either of those now.

The window should change to indicate the connect succeeded:

Cwsetup scriptselection cwliterun.png


    1. The console lists the exact script that is executed. Note you could have manually executed the script commands line-by-line in this console.
    2. The "Scope" and "Target" buttons will show as connected.
    3. The Status Bar will show a connection.

Note in previous software versions, this tutorial took you through manual setup. This can still be done (using the GUI), but instead now the API has been made more powerful, so the example configuration script will be used instead.

To do so, simply scroll down and select the "setup_cwlite_xmega_aes.py" file:

Cwsetup scriptselection xmegaconfig cwliterun.png

To complete the tutorial, follow these steps:

  1. Switch to the General Settings tab
  2. If you wish to change the number of traces, do so here. The default of 50 should be sufficient to break AES though!
  3. Hit the Capture Many button (M in a green triangle) to start the capture process.
  4. You will see each new trace plotted in the waveform display.
  5. You'll see the trace count in the status bar. Once it says Trace 50 done (assuming you requested 50 traces) the capture process is complete.
</li>
  • Finally save this project using the File --> Save Project option, give it any name you want.
  • Skip ahead to #Analyzing_the_Traces.
  • </ol>

    Capturing with ChipWhisperer-Lite/Pro with NOTDuino (CW304)

    Hardware Setup

    1. Set jumpers on NOTDuino to default position (see silkscreen on bottom of NOTDuino for default positions).
    2. Connect the NOTDuino using the SMA cable on the "measure" port, and the 20-pin IDC cable:
    3. Connect the CW1173/CW1200 by USB cable to computer.

      image

    Capturing the Traces

    1. Close & reopen the capture software (to clear out any previous connection which may be invalid).
    2. From the Project menu elect the Example Scripts and then ChipWhisperer-Lite: AES SimpleSerial on ATMega328P

      image

    3. The script will automatically connect to the capture hardware and run 2 example traces. You should see something that looks like the following screen:

      image

      To complete the tutorial, follow these steps:

      1. Switch to the General Settings tab
      2. If you wish to change the number of traces, do so here. The default of 50 should be sufficient to break AES though!
      3. Hit the Capture Many button (M in a green triangle) to start the capture process.
      4. You will see each new trace plotted in the waveform display.
      5. You'll see the trace count in the status bar. Once it says Trace 50 done (assuming you requested 50 traces) the capture process is complete.
    4. Finally save this project using the File --> Save Project option, give it any name you want.
    5. Skip ahead to #Analyzing_the_Traces.


    Capturing with Capture Rev2 + Multi-Target (CW1002 + CW301)

    Hardware Setup

    This tutorial uses the CW1002_ChipWhisperer_Capture_Rev2 hardware along with the CW301_Multi-Target board. Note that you don't need hardware to complete the tutorial. Instead you can download example traces from the ChipWhisperer Site.

    This example uses the Atmel AVR in 28-pin DIP programmed with a simpleserial communications protocol. This is the default firmware programmed into the devices, so you shouldn't need to do anything. If you've erased the device, you can see programming instructions in the Installing_ChipWhisperer section.

    The Multi-Target board should be plugged into the ChipWhisperer Capture Rev2 via the 20-pin target cable. The VOUT SMA connector is wired to the LNA input on the ChipWhisperer-Capture Rev2 front panel. The general hardware setup is as follows:

    image
    1. 20-Pin Header connects Multi-Target to Capture Hardware
    2. VOUT Connects to SMA Cable
    3. SMA Cable connects to 'LNA' on CHA input
    4. USB-Mini connects to side (NB: Confirm jumper settings in next section first)

    Jumpers on the Multi-Target Victim board are as follows:

    image
    1. NO jumpers mounted in XMEGA Portion or SmartCard Portion (JP10-JP15, JP19, JP7-JP8, JP17)
    2. 3.3V IO Level (JP20 set to INT.)
    3. The 7.37 MHz oscillator is selected as the CLKOSC source (JP18)
    4. The CLKOSC is connected to the AVR CLock Network, along with connected to the FPGAIN pin (JP4)
    5. The TXD & RXD jumpers are set (JP5, JP6)
    6. Power measurement taken from VCC shunt (JP1)
    7. The TRIG jumper is set (JP28) (NOTE: Early revisions of the multi-target board do not have the TRIG jumper and you can ingore this).

    For more information on these jumper settings see CW301_Multi-Target .

    Setting up the Software

    It is assumed that you've already followed the guide in Installing_ChipWhisperer. Thus it is assumed you are able to communicate with the ChipWhisperer Capture Rev2 hardware. Note in particular you must have configured the FPGA bitstream in the ChipWhisperer-Capture software, all part of the description in the Installing_ChipWhisperer guide.

    Capturing the Traces

    This tutorial uses a simple script that ships with the ChipWhisperer Capture software. The easiest method of accomplishing the trace capture is as follows:

    1. Close & reopen the capture software (to clear out any previous connection which may be invalid).
    2. From the Project menu elect the Example Scripts and then ChipWhisperer-Rev2: SimpleSerial Target

      image

    3. The script will automatically connect to the capture hardware and run 2 example traces. You should see something that looks like the following screen:

      image

      To complete the tutorial, follow these steps:

      1. Switch to the General Settings tab
      2. If you wish to change the number of traces, do so here. The default of 50 should be sufficient to break AES though!
      3. Hit the Capture Many button (M in a green triangle) to start the capture process.
      4. You will see each new trace plotted in the waveform display.
      5. You'll see the trace count in the status bar. Once it says Trace 50 done (assuming you requested 50 traces) the capture process is complete.
    4. Finally save this project using the File --> Save Project option, give it any name you want.
    5. Skip ahead to #Analyzing_the_Traces.


    Capturing with PicoScope + Multi-Target (CW301)

    <TODO>

    Analyzing the Traces

    1. Open the Analyzer software
    2. From the File --> Open Project option, navigate to the .cwp file you save previously. Open this file.
    3. Select the Project --> Manage Traces option to open the dialog, enable the captured traces by adding a check-mark in the box. Close the dialog with `ESC`:

      image

    4. If you wish to view the trace data, follow these steps:

      1. Switch to the Waveform Display tab
      2. Switch to the General parameter setting tab
      3. You can choose to plot a specific range of traces
      4. Hit the Redraw button when you change the trace plot range
      5. You can right-click on the waveform to change options, or left-click and drag to zoom
      6. (oops there is no 6)
      7. Use the toolbar to quickly reset the zoom back to original

      image

    5. You can view or change the attack options on the Attack parameter settings tab:

      1. The Hardware Model settings are correct for the software AES by default
      2. The Point Setup makes the attack faster by looking over a more narrow range of points. Often you might have to characterize your device to determine the location of specific attack points of interest.
      3. Traces per Attack allows you to use only a subset of capture traces on each attack. Or if you have for example 1000 traces, you could average the results of attacking 50 traces over 200 attack runs.
      4. Reporting Interval is how often data is generated. A smaller interval generates more useful output data, but greatly increases computational complexity (e.g. slows down attack). If you only care about attacking the system, the reporting interval can be set to the number of traces. In which case the attack runs completely, and you get the results. For this tutorial you can set to a smaller number (such as 5).

      image

    6. Finally run the attack by switching to the Results Table tab and then hitting the Attack button:

      image

    7. If you adjusted the Reporting Interval to a smaller number such as 5, you'll see the progression of attack results as more traces are used. If not you should simply see the final results, which should have the correct key highlighted in red. In the following case the correct key was recovered:

      image

    8. You can also switch to the Output vs Point Plot window to see where exactly the data was recovered:

      1. Switch to the Output vs Point Plot tab
      2. Turn on one of the bytes to see results.
      3. The known correct guess for the key is highlighted in red. The wrong guesses are plotted in green. You can see that the attacked operation appeared to occur around sample 40 for key 0. Remember you can click-drag to zoom in, then right-click and select View All to zoom back out.
      4. Turn on another byte to see results for it.
      5. This byte occured much later - sample 1240. By exploring where the maximum correlation was found for the correct key-guess of each byte, you can determine where exactly the attacked operation occured.

      image

    Next Steps

    This has only briefly outlined how to perform a CPA attack. You can move onto more advanced tutorials, especially showing you how the actual attack works when performed manually.