Skip to content

Find sensitive data in core dump

Switch to your RHEL host terminal session

Switch to your terminal tab or window for your RHEL host session:

Take a core dump of your KVM guest:

sudo /usr/local/bin/gcoreMyGuest.sh
Sample output from dumping your KVM guest
my guest Pid is 3198082
[New LWP 3198127]
[New LWP 3198132]
[New LWP 3198133]
[New LWP 3198134]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".
0x000003ffae7f11f4 in ppoll () from target:/lib64/libc.so.6
Saved corefile core.3198082
[Inferior 1 (process 3198082) detached]

Optional: Display the contents of the script you just ran if you are curious as to how it worked:

cat /usr/local/bin/gcoreMyGuest.sh
Contents of the gcoreMyGuest.sh script
#!/bin/sh

myPid=$(ps aux | grep qemu | grep guest=${SUDO_USER} | awk '{print $2}')

echo my guest Pid is ${myPid}

/opt/rh/gcc-toolset-9/root/usr/bin/gcore ${myPid} 2>/dev/null

chown ${SUDO_USER}:hpvs_students /home/${SUDO_USER}/core.${myPid}

The script runs with root authority- it lists processes, grabs the process ID for your Ubuntu KVM guest, takes a core (memory) dump of the process, and then assigns your userid ownership of the dump file.

Set an environment variable for the process ID for your Ubuntu KVM guest. The script you ran did this as well but it was only set for the duration of the script execution, so you need to do it again:

myPid=$(ps aux | grep qemu | grep $(whoami) | awk '{print $2}')
echo My Ubuntu KVM Guest process id is ${myPid}

Pick out sensitive credit information from the core dump:

strings core.${myPid} | grep creditCard

You should recognize the sensitve information that you entered in the PayNow demo app. This demonstrates how a malicious system administrator on the KVM host can look at sensitive information from a standard KVM guest. An HPVS 2.1.x KVM guest, which is protected by Secure Execution, prevents this from occurring, as you will see from completing the remainder of this lab.

Please click Next below to continue


Last update: November 30, 2023
Created: April 25, 2023