-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·29 lines (25 loc) · 798 Bytes
/
Copy pathinstall.sh
File metadata and controls
executable file
·29 lines (25 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# *****************************************
# CONFIDENTIAL SOURCE CODE, DO NOT DISTRIBUTE!
# IN SUBMISSION, ASPLOS 2024.
# *****************************************
# Project: PathFinder, PHR Attack Proof-of-Concept (PoC)
# Author: Hosein Yavarzadeh
# Email: hyavarzadeh@ucsd.edu
# Affiliation: University of California, San Diego (UCSD)
# *****************************************
#!/bin/bash
# install.sh -- (c) Copyright 2023 by Hosein Yavarzadeh.
# make all scripts executable
find . -type f -name "*.sh" -exec chmod a+x {} +
# Necessary installations
sudo apt-get install g++-multilib
sudo apt-get install nasm
# Driver installations
cd ./driver-linux
chmod a+x *.sh
make
sudo ./install.sh
# Initilaizations
cd ../source
chmod a+x *.sh
./init.sh