Skip to content

taehunk/simpleFR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Simple Flush+Reload (Cache side-channel attack / Lab9)

This repository contains two proof-of-concept of cache side-channel attack (i.e., Flush+Reload). As all PoCs are only successfully mounted on Intel CPUs with Ubuntu, please checks your environment. We demonstrated the demos in Ubuntu 20.04 LTS and Intel core i7-8700 3.20 GHz.

The prerequisite of Flush+Reload is memory sharing between spy and victim. The PoC1 achieves this condition using mmap() and the PoC2 achieves this leveraging dynamic shared library.


PoC1

The PoC1 probes that the victim accesses the specific target file (i.e., target.txt), repeatedly. In this demo. the spy and victim achieve a memory sharing on a target file.

You can test this PoC1 codes in two ways.

How to execute the PoC1 (victim: shell command)


$ make

// spy
$ ./spy target.txt

// victim
$ cat target.txt

How to execute the PoC1 (victim: process)


$ make

// spy
$ ./spy target.txt

// victim
$ ./victim target.txt


PoC2

The PoC2 observes the access patterns of victim on dynamic shared libs (i.e., libvul.so, libvul2.so), where spy figures out whether victim access specific target functions (e.g., add()) or not. In this demo. the spy and victim achieve a memory sharing using dynamic shared libs.

How to execute the PoC2


$ make

// spy
$ ./spy

// victim
$ ./victim

Notice

In the PoC2, we exploit the user-defined dynamic shared library for simplicity. To successfully mount this demo, you must copy the shared libs (i.e., libvul.so, libvul2.so) on "/usr/lib/".

If you make your own dynamic shared lib, follow this steps.

How to make dynamic shared lib


$ gcc -fPIC -c vul.c
$ gcc -shared -o libvul.so. vul.o

$ sudo cp libvul.so /usr/lib/
$ sudo ldconfig


Reference

cacheutils.h is based on IAIK/flush_flush

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published