[www-pubs] r346229 - Added security papers to LLVM Publications page.

John Criswell via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 6 06:34:24 PST 2018


Author: criswell
Date: Tue Nov  6 06:34:23 2018
New Revision: 346229

URL: http://llvm.org/viewvc/llvm-project?rev=346229&view=rev
Log:
Added security papers to LLVM Publications page.

Added three security papers that use LLVM to the LLVM Publications page.
They are:

Shielding Software from Privileged Side-Channel Attacks in Usenix Security 2018.

Detecting Privileged Side-Channel Attacks in Shielded Execution with Deja Vu in AsiaCCS 2018.

Data-Oriented Programming: On the Expressiveness of Non-Control Data Attacks in IEEE Security and Privacy 2016.

Modified:
    www-pubs/trunk/pubs.js

Modified: www-pubs/trunk/pubs.js
URL: http://llvm.org/viewvc/llvm-project/www-pubs/trunk/pubs.js?rev=346229&r1=346228&r2=346229&view=diff
==============================================================================
--- www-pubs/trunk/pubs.js (original)
+++ www-pubs/trunk/pubs.js Tue Nov  6 06:34:23 2018
@@ -13,6 +13,14 @@
 
 var PUBS =
 [
+  { url: "https://www.usenix.org/system/files/conference/usenixsecurity18/sec18-dong.pdf",
+    author: "Xiaowan Dong, Zhuojia Shen, John Criswell, Alan L. Cox, and Sandhya Dwarkadas",
+    title: "Shielding Software from Privileged Side-Channel Attacks",
+    published: "Proceedings of the Twenty Seventh Usenix Security Symposium",
+    month: 8,
+    year: 2018
+  },
+
   { url: "https://dl.acm.org/citation.cfm?id=3214297",
     author: "Xiaowan Dong, Zhuojia Shen, John Criswell, Alan Cox, and Sandhya Dwarkadas",
     title: "Spectres, Virtual Ghosts, and Hardware Support",
@@ -20,6 +28,7 @@ var PUBS =
     month: 6,
     year: 2018
   },
+
   { url: "https://ieeexplore.ieee.org/document/8411727/",
     author: "Alex Denisov, Stanislav Pankevich",
     title: "Mull It Over: Mutation Testing Based on LLVM",
@@ -100,6 +109,14 @@ var PUBS =
     year: 2017
   },
 
+  { url: "https://dl.acm.org/citation.cfm?id=3053007",
+    author: "	Sanchuan Chen, Xiaokuan Zhang, Michael K. Reiter, and Yinqian Zhang",
+    title: "Detecting Privileged Side-Channel Attacks in Shielded Execution with D&eacutej&agrave Vu",
+    published: "Proceedings of the 2017 ACM Asia Conference on Computer and Communications Security (AsiaCCS)",
+    month: 4,
+    year: 2017
+  },
+
   { url: "http://formalverification.cs.utah.edu/new/Publications.html#vcsharma_hipc16",
     author: "Vishal Chandra Sharma, Ganesh Gopalakrishnan, Sriram Krishnamoorthy",
     title: "PRESAGE: Protecting Structured Address Generation against Soft Errors",
@@ -140,6 +157,14 @@ var PUBS =
     year: 2016
   },
 
+  { url: "https://ieeexplore.ieee.org/document/7546545",
+    author: "Hong Hu, Shweta Shinde, Sendroiu Adrian, Zheng Leong Chua, Prateek Saxena, and Zhenkai Liang",
+    title: "Data-Oriented Programming: On the Expressiveness of Non-Control Data Attacks",
+    published: "Proceedings of the 2016 IEEE Symposium on Security and Privacy (SP 2016)",
+    month: 05,
+    year: 2016
+  },
+
   { url: "http://www.cs.rutgers.edu/~santosh.nagarakatte/papers/icse2016-alive-loops.pdf",
     author: "David Menendez and Santosh Nagarakatte",
     title: "Termination-Checking for LLVM Peephole Optimizations",




More information about the llvm-commits mailing list