-
Notifications
You must be signed in to change notification settings - Fork 0
/
materials.html
96 lines (93 loc) · 4.46 KB
/
materials.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html>
<head>
<title>Argus</title>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<link href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" media="screen" rel="stylesheet" type="text/css" />
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/base/jquery-ui.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/frame.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/controls.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/widgets.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/custom.css" media="screen" rel="stylesheet" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="js/menu.js"></script>
<script src="js/widgets.js"></script>
<script src="js/custom.js"></script>
<style>
.menu-materials {
color: rgb(255, 255, 255) !important;
opacity: 1 !important;
font-weight: 700 !important;
}
</style>
</head>
<body>
<div class="menu-container"></div>
<div class="content-container">
<div class="content">
<div class="content-table flex-column">
<!-------------------------------------------------------------------------------------------->
<div class="flex-row">
<div class="flex-item flex-column">
<h2 class="add-top-margin">Materials</h2>
<hr>
<p style="font-size:14pt;">
<strong>Usenix Security'23 Paper:</strong> "ARGUS: A Framework for Staged Static Taint Analysis of GitHub Workflows and Actions".
</p>
<div class="control-group">
<a class="custom-button-flat" href="file/usenixsecurity23-muralee.pdf" target="_blank">
<img src="img/download.png"><span>Paper Download</span>
</a>
<a class="custom-button-flat" href="#" target="_blank">
<img src="img/download.png"><span>Slides Download (Coming soon) </span>
</a>
<a class="custom-button-flat" href="file/muralee2023Argus.bib" target="_blank">
<img src="img/book.png"><span>BibTeX Citation</span>
</a>
</div>
<p style="font-size:14pt;">
<strong>Video:</strong>
</p>
<!-- <div class="flex-row">
<div class="flex-item flex-item-stretch-2 flex-column">
<video preload controls autoplay loop muted playsinline class="image">
<source src="vid/DSN21_regular_176_wang.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="flex-item flex-item-stretch flex-column">
</div>
</div> -->
</div>
</div>
<br />
<!-------------------------------------------------------------------------------------------->
<!-- <div class="flex-row">
<div class="flex-item flex-column">
<h2 class="add-top-margin">Other Related Projects</h2>
<hr>
<p style="font-size:14pt;">
1. <strong><a href="https://shuwang127.github.io/PatchRNN-demo/" target="_blank">PatchRNN</a></strong>: A Deep Learning-Based System for Security Patch Identification.
<br />
2. <strong><a href="https://sunlab-gmu.github.io/GraphSPD/" target="_blank">GraphSPD</a></strong>: Graph-Based Security Patch Detection with Enriched Code Semantics.
</p>
</div>
</div> -->
<!-------------------------------------------------------------------------------------------->
<div class="flex-row">
<div class="flex-item flex-item-stretch flex-column">
<br /><br />
<p class="text text-small text-italic">
ARGUS | <span class="highlight-text">PurS3 Lab</span> at <span class="highlight-text">Purdue University</span> | <span class="highlight-text">PurSec Lab</span> at <span class="highlight-text">Purdue University</span> | <span class="highlight-text">WSPR Lab</span> at <span class="highlight-text">North Carolina State University</span>
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>