-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2383 lines (1074 loc) · 56.6 KB
/
index.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;
charset=windows-1252">
<script src="https://www.cs.umd.edu/%7Emwh/email.js" type="text/javascript"></script>
<script>var key = 42</script>
<link href="style.css" rel="stylesheet" type="text/css">
<title>Michael Hicks</title>
</head>
<body>
<table border="0">
<tbody>
<tr>
<td width="15%" height="1"><br>
</td>
<td width="700" height="1">
<table>
<tbody>
<tr>
<td rowspan="7" width="250" align="left"> <a
href="IMG_4301.jpg"><img alt="Hicks photo"
src="Mike-2019.jpg" width="180" height="270"></a><br>
</td>
<td colspan="2" align="left">
<h1>Michael Hicks</h1>
</td>
</tr>
<tr>
<td width="100" align="left"><b>E-mail:</b></td>
<td> <a id="mailto" href="default.html" class="email">
<span id="cutme"> [point here]</span></a>
<script type="text/javascript"><!--
showEmail("mailto", "cutme", "G]B", "cs.umd.edu",
key, "Michael Hicks");
// --> </script></td>
</tr>
<tr>
<td width="100" align="left"><b>Social:</b></td>
<td><a
href="https://www.linkedin.com/in/mike-hicks-a053311/"><b>LinkedIn</b></a>,
<a
href="https://www.threads.net/@mwhicks1">Threads</a> and
<a href="https://twitter.com/michael_w_hicks">Twitter/X</a>
(defunct) </td>
</tr>
<tr>
<td width="100" align="left"><b>Mastodon:</b></td>
<td><a rel="me"
href="https://mastodon.social/@michael_w_hicks">mastodon.social/@michael_w_hicks</a></td>
</tr>
<tr>
<td width="100" align="left"><b>MOOC:</b></td>
<td><a moz-do-not-send="true"
href="software_security_course/index.html">Software
Security</a> (now <b>free</b>)<br>
</td>
</tr>
<tr>
<td width="100" align="left"><b>Blogs:</b></td>
<td><a href="http://www.pl-enthusiast.net/"><b>PL
Enthusiast</b></a>, <a
href="https://blog.sigplan.org"><b>PL Perspectives</b></a></td>
</tr>
<tr>
<td width="100" align="left"><a href="papers/mwh.html"><b>Publications</b></a></td>
<td><br>
</td>
</tr>
</tbody>
</table>
</td>
<td width="15%" height="1"><br>
</td>
</tr>
<tr>
<td width="15%" height="610"><br>
</td>
<td width="600" valign="top" height="610">
<p>I am a Senior Principal Scientist at <a
moz-do-not-send="true" href="https://aws.amazon.com/">Amazon
Web Services</a> where I work on topics of automated
reasoning and automated test generation. Previously, I co-led (with <a
href="https://homes.cs.washington.edu/~emina/">Emina
Torlak</a>) development on the <a
href="https://www.cedarpolicy.com/"><b>Cedar
authorization policy language</b></a>, which is part
of <a href="https://aws.amazon.com/verified-permissions/">Amazon
Verified Permissions</a>.<br>
</p>
<p> I am also a Professor Emeritus (retired 2022) in the <a
href="http://www.cs.umd.edu/">Computer Science
Department</a> and <a href="http://www.umiacs.umd.edu">UMIACS</a>
at the <a href="http://www.umd.edu/">University of
Maryland, College Park</a>. With <a
href="http://www.cs.tufts.edu/~jfoster/">Jeff Foster</a>
I founded <a href="https://plum-umd.github.io/"><b>PLUM</b>,
the lab for <i>Programming Languages research at the
University of Maryland</i></a>; <a
href="http://www.cs.umd.edu/%7Edvanhorn/">David Van Horn</a>
and <a href="https://lemonidas.github.io/">Leo
Lampropoulos</a> are its current directors. (You may
find it interesting to read about <a
href="https://mwhicks1.github.io/papers/score-short.pdf">how
PLUM is managed</a>.) I am also affiliated with <a
href="https://quics.umd.edu/">QuiCS</a> and the <a
href="http://www.cyber.umd.edu/">Maryland Cybersecurity
Center</a> (MC2), and was formerly MC2's Director
(2011-2013, <a href="http://vimeo.com/97443313">see our
video</a>!). I was Chair (2015-2018) and Past Chair
(2018-2021) of <a href="http://www.sigplan.org">ACM
SIGPLAN</a>, the Founder (2019) and Editor (until
mid-2021) of <a href="https://blog.sigplan.org/">PL
Perspectives, the SIGPLAN blog</a>, and was the CTO of
Correct Computation, Inc (2018-2021). I am currently the
Editor in Chief of <a
href="https://dl.acm.org/journal/pacmpl">Proceedings of
the ACM on Programming Languages (PACMPL)</a>.</p>
<p> Here is my current <a href="cv.pdf">vita</a> and a list
of my <a href="papers/mwh.html">publications</a>,
organized <a href="papers/mwh.html">by year</a> and <a
href="papers/mwh-cat.html">by category</a>.</p>
<p>I received my Ph.D. in <a
href="http://www.cis.upenn.edu/">Computer and
Information Science</a> from the <a
href="http://www.upenn.edu/">University of Pennsylvania</a>
in August 2001, and I spent one year as a post-doctoral
associate affiliated with the Information Assurance
Institute of the <a href="http://www.cs.cornell.edu/">Computer
Science Department at Cornell University</a>. During
academic 2008 - 2009, I was on sabbatical in Cambridge,
England. From September to November I was at <a
href="http://research.microsoft.com/cambridge/">Microsoft
Research</a> and from December to August 2009 I was at
the <a href="http://www.cl.cam.ac.uk/">University of
Cambridge Computer Laboratory</a>. During the Summer of
2015 I visited Microsoft Research in Redmond.<br>
</p>
<p><i>News</i>: My <b><a moz-do-not-send="true"
href="software_security_course/index.html">Software
Security on-line class</a></b>, created in 2015, is
now freely available (originally hosted on Coursera).<br>
</p>
<p><a href="http://speedtest.10-fast-fingers.com/">How fast
can you type?</a> (My best ever is 108 wpm.)<br>
</p>
<h3>Research</h3>
<p> My primary research interest is to develop and evaluate
techniques to improve software availability, reliability,
and security. Here is a list of recent projects.
<table>
<tbody>
<tr>
<td><b>Secure programming</b> - <i>How do we build
software that is secure?</i> We have been
developing a contest, called <a
href="https://builditbreakit.org"><b><i>build-it,
break-it, fix-it</i></b></a> whose aim to
test how well students can build software
securely. We have now offered the contest several
times (including many times in classes at UMD and
elsewhere) and have some <a
href="http://arxiv.org/abs/1606.01881">interesting
data analysis of what strategies work</a> and
don't work for building and breaking. We are
working on a <a
href="https://mwhicks1.github.io/papers/votipka19bibifiqual.html">more
in-depth analysis of contest data</a>. One clear
outcome, previously known but confirmed by the
contest, is that programming in C and C++ is
risky. We have been working on <a
href="https://github.com/secure-sw-dev/checkedc"
moz-do-not-send="true"><b>Checked C</b>, an
extension to C aimed to provide safety</a>. <a
href="https://mwhicks1.github.io/papers/ruef18checkedc-incr.html">Checked
C is specifically designed to ease the porting
of legacy code</a>. We have also been looking at
how to make the safe <a moz-do-not-send="true"
href="https://mhicks.me/papers/coblenz21bronze.html"><b>Rust</b>
programming language easier to use by
incorporating a garbage collector</a>.<br>
</td>
</tr>
<tr>
<td valign="top"><b>Fuzz testing</b> - <i>How to
automatically test software to find bugs and
security vulnerabilities?</i> We have looked at
<a moz-do-not-send="true"
href="http://www.pl-enthusiast.net/2018/08/23/evaluating-empirical-evaluations-for-fuzz-testing/">methodologies
for evaluating randomized/fuzz testers</a> (blog
post), and means to <a moz-do-not-send="true"
href="https://mhicks.me/papers/lampropoulos19fuzzchick.html">combine
coverage-guided fuzzing with property based
testing</a>. We are working on automated
benchmark generation techniques and new algorithms
and frameworks. <br>
</td>
</tr>
<tr>
<td><b>Quantum computation programming languages</b>
- <i>means to develop reliable and efficient
quantum programs on near-term devices</i>.<i> </i>We
have been applying formal methods toward the goal
of developing a verified compiler stack for
quantum programs, starting with <a
moz-do-not-send="true"
href="https://github.com/inQWIRE/pyvoqc"><b>VOQC</b>,
the verified optimizer for quantum circuits</a>
(code link). We also looked at the challenge of
developing high-quality <a
href="https://mwhicks1.github.io/papers/hung19qrobust.html">quantum
programs despite limited, noisy resources</a> on
quantum computers available in the near
term. <br>
</td>
</tr>
<tr>
<td valign="top"><b>Blending programming languages
and cryptography</b> - <i>means of implementing
privacy-preserving or integrity-assuring
computation through the combination of
programming languages and cryptographic
techniques</i>. We have looked at languages and
analyses for <b>secure multiparty computation</b>,
most notably a new programming language called <a
href="https://bitbucket.org/aseemr/wysteria/wiki/Home"><b><i>Wysteria</i></b></a>,
and a follow-on language <i><a
moz-do-not-send="true"
href="https://mhicks.me/papers/darais21symphony.html"><b>Symphony</b></a></i>.
We have also developed novel mechanisms for
cloud-based computations involving general-purpose
<a
href="http://www.pl-enthusiast.net/2014/06/11/authenticated-data-structures-generically/"
moz-do-not-send="true"><b>authenticated data
structures</b></a> (blog post) and <a
href="https://mwhicks1.github.io/papers/liu15ghostrider.html">compiler-optimized
<b>oblivious RAM</b></a>. </td>
</tr>
</tbody>
</table>
</p>
<p>Further in the past, I was involved in the following projects:<br>
</p>
<ul>
<li><a href="http://kitsune-dsu.com/"><b><i>Kitsune</i></b></a>
and <a
href="http://www.luispina.me/projects/rubah.html"><b><i>Rubah</i></b></a>
frameworks for allowing safe, efficient, and flexible
updates to running C and Java code. Also worked on <a
moz-do-not-send="true"
href="http://www.pl-enthusiast.net/2021/06/30/bullfrog-online-schema-migration-on-demand/">Bullfrog</a>
(blog post), a system supporting online schema evolution
in Postgres. Earlier work and papers on <i>dynamic
updating </i>are described <a
href="http://www.cs.umd.edu/projects/dsu/">here</a>. </li>
<li><a
href="https://mwhicks1.github.io/papers/parker19lweb.html">LWeb</a>,
a novel Haskell-based framework for preventing leaks in
web applications. <br>
</li>
<li>Prob, a tool employing <a
href="https://mwhicks1.github.io/papers/mardziel13belieflong.html">probabilistic
abstract interpretation</a> for enforcing quantitative
<i>knowledge-based policies</i> that protect static and
<a
href="https://mwhicks1.github.io/papers/mardziel14time.html">time-varying
secrets</a>, incorporating <a
href="https://mwhicks1.github.io/papers/sweet18prob.html">uses
of sampling to improve precision</a>.</li>
<li><a
href="https://mwhicks1.github.io/papers/hammer13adapton.html">Adapton</a>,
a library for incremental computation --- the idea is to
write an algorithm largely as usual, but then to derive
a version that can incrementally update the output
following a small changes to its input.</li>
<li><a href="https://bitbucket.org/khooyp/expositor">Expositor</a>,
a library for writing dynamic analyses to assist in
debugging, taking advantage of record/replay support. </li>
<li><a href="http://www.cs.umd.edu/projects/PL/druby/">Diamondback
Ruby</a>, static and hybrid static/dynamic type system
for the Ruby scripting language. </li>
<li><a href="https://bitbucket.org/khooyp/otter">Otter</a>,
a symbolic executor for C programs. </li>
<li><a href="http://www.cs.umd.edu/projects/PL/locksmith/">LockSmith</a>,
a static analysis tool for proving the absence of race
conditions in C programs.</li>
<li><a href="http://www.cs.umd.edu/projects/PL/PP">Path
Projection</a>, a browser-based UI toolkit for
presenting, navigating, and querying <i>paths</i>
emitted as static analysis results; we applied it to
Locksmith. </li>
<li><i><b><a href="http://cyclone.thelanguage.org/">Cyclone</a></b></i>,
a safe dialect of C. Cyclone's system for manual memory
management was <a
href="https://pling.jondgoodwin.com/post/cyclone/">influential</a>
in the development of <a
href="https://www.rust-lang.org/en-US/">Rust</a>.<br>
</li>
<li>I have also looked at means for customized,
language-enforced security policies, implemented in a
web programming language, <a
href="http://www.cs.umd.edu/projects/PL/selinks">SELinks</a>,
and automatically inserted by a compiler called <a
href="http://research.microsoft.com/en-us/projects/coco/">Coco</a>.
</li>
<li><a href="http://www.cs.umd.edu/projects/MGRP/">MGRP,
for measurement-aware data transport</a> and
kernel-based rootkit detection. </li>
</ul>
<p> Links to all past projects may be found on the <a
href="http://www.cs.umd.edu/projects/PL">PLUM</a> home
page. </p>
<h3>Research Group</h3>
<p><b>Previous students and postdocs (PhD, unless otherwise
annotated):</b>
<table>
<tbody>
<tr>
<td valign="top"><a
href="https://quics.umd.edu/people/liyi-li">Liyi
Li</a> (postdoc)</td>
<td><small>Assistant Professor, Iowa State, since
July 2023</small></td>
</tr>
<tr>
<td valign="top"><a href="https://cecchetti.sites.cs.wisc.edu/">Ethan
Cecchetti</a> (postdoc)</td>
<td><small>Assistant Professor, Wisconsin, since
July 2023</small></td>
</tr>
<tr>
<td valign="top"> <a
href="http://www.cs.umd.edu/~mcoblenz/">Michael
Coblenz</a> (postdoc)</td>
<td><small>Assistant Professor, UCSD, since
September 2022</small></td>
</tr>
<tr>
<td valign="top"> <a
href="https://khieta.github.io/">Kesha
Hietala</a></td>
<td><small>Researcher, Sandia
National Labs, since October 2024; previously Applied Scientist, Amazon Web Services,
July 2022-October 2024</small></td>
</tr>
<tr>
<td valign="top"><a
href="https://www.linkedin.com/in/iannsweet/">Ian Sweet</a></td>
<td><small>Research Engineer, Galois, since
July 2022</small></td>
</tr>
<tr>
<td valign="top"><a
href="https://www.linkedin.com/in/yiyun-liu-a21a5017a/">Yiyun
Liu</a> (MS, undergrad)</td>
<td><small>PhD student, University of Pennsylvania,
since September 2021</small></td>
</tr>
<tr>
<td valign="top"><a
href="https://lemonidas.github.io/">Leonidas
Lampropoulos</a> (postdoc)<br>
</td>
<td><small>Assistant Professor, University of
Maryland, since July 2020</small><br>
</td>
</tr>
<tr>
<td valign="top"><a
href="http://rand.cs.uchicago.edu/">Robert Rand</a>
(postdoc)<br>
</td>
<td><small>Assistant Professor, University of
Chicago, since July 2020</small><br>
</td>
</tr>
<tr>
<td><a href="http://jamesparker.me">James Parker</a>
</td>
<td><small><i><a href="papers/dissertation-jp.pdf">
Advanced Language-based Techniques for
Correct, Secure Networked Systems </a><br>
</i>Software research engineer, <a
href="https://galois.com/">Galois</a>, since
June 2020 (part-time 2019)</small><br>
</td>
</tr>
<tr>
<td valign="top"><a
href="https://dblp.uni-trier.de/pers/hd/r/Ruef:Andrew">Andrew
Ruef</a></td>
<td valign="top"><small><i><a
href="https://mwhicks1.github.io/papers/ruef-dissertation.pdf">Tools
and Experiments for Software Security </a><br>
</i>Quantitative Researcher at <a
href="https://www.ida.org/IDAFFRDCs/CenterforCommunications/Computing">IDA/CCS</a>
February 2019-2021</small> </td>
</tr>
<tr>
<td><a
href="https://www.linkedin.com/in/liu-chang-4682b119/">Chang
Liu</a>****</td>
<td valign="top"><small><i><a
href="https://mwhicks1.github.io/papers/liu-thesis.pdf">Trace
Oblivious Program Execution </a><br>
</i>Post-doc at UC Berkeley, 2016-2018;
researcher at Citadel Securities since 2019<br>
</small></td>
</tr>
<tr>
<td valign="top"><a
href="https://personal.utdallas.edu/~swei/">Shiyi
Wei</a> (postdoc)</td>
<td valign="top"><small>Associate Professor, <a
href="http://cs.utdallas.edu/">University of
Texas at Dallas</a>, since August 2017</small></td>
</tr>
<tr>
<td valign="top"><a
href="https://www.microsoft.com/en-us/research/people/aseemr/">Aseem
Rastogi</a></td>
<td valign="top"><small><i><a
href="https://mwhicks1.github.io/papers/aseem-thesis.pdf">Language-based
Techniques for Practical and Trustworthy
Secure Multi-Party Computations</a><br>
</i>Principal Researcher at <a
href="http://research.microsoft.com/en-us/labs/india/">Microsoft
Research India</a> since June 2016<br>
</small></td>
</tr>
<tr>
<td valign="top"><a href="http://matthewhammer.org/">Matthew
Hammer</a> (postdoc)</td>
<td valign="top"><small>Research scientist at <a
href="http://dfinity.org/">DFinity</a> 2019-2023;
previously Assistant Professor, <a
href="http://www.colorado.edu/cs/">University
of Colorado, Boulder</a>, August 2015-January
2019<br>
</small></td>
</tr>
<tr>
<td><a href="http://luispina.me">Luis Pina</a>***</td>
<td><small><i><a
href="http://www.luispina.me/pdfs/pina16phd.pdf">Practical
Dynamic Software Updating (for Java)</a></i><br>
Assistant Professor at University of Illinois,
Chicago, starting Fall'19; previously post-doc
at George Mason (Aug 2017-19) and <a
href="https://www.imperial.ac.uk/">Imperial
College, London</a> (Mar 2015-Aug 2017)</small><br>
</td>
</tr>
<tr>
<td><a href="https://ksaur.github.io/">Karla Saur</a>*</td>
<td><small><a
href="https://mwhicks1.github.io/papers/ksaur-thesis.pdf"><i>Dynamic
Upgrades for High Availability Systems</i></a><br>
</small><small>Distributed Systems Engineer, Nvidia DGX Cloud since October 2024; previously a researcher at Microsoft (2018-2024) and <a
href="http://www.intel.com/content/www/us/en/research/intel-research.html">Intel
Labs</a> (2015-2018)</small><br>
</td>
</tr>
<tr>
<td><a href="https://piotr.mardziel.com/">Piotr
Mardziel</a></td>
<td><small><a
href="https://mwhicks1.github.io/papers/mardziel15thesis.paper.pdf"><i>Modeling,
Measuring, and Limiting Adversary Knowledge</i></a><br>
</small><small>Systems Scientist at CMU
(previously, post-doc) since June 2016; post-doc
at UMD Jan'15 - Jun'16</small><br>
</td>
</tr>
<tr>
<td valign="top"><a
href="https://www.linkedin.com/in/nate-space-parsons/">Nate
Parsons</a> (MS)<br>
</td>
<td valign="top"><small><i>Implementing and Typing a
Core Calculus for Mixed-mode Secure
Multi-party Computations (scholarly paper)<br>
</i>Missions software engineer at Planet since
2013; previously, engineer at JHUAPL<br>
</small></td>
</tr>
<tr>
<td><a href="https://www.linkedin.com/in/khooyp/"><u>Khoo</u>
Yit Phang</a>*</td>
<td><small><a
href="https://mwhicks1.github.io/papers/khooyp-dissertation.pdf"><i>User-centered
Program Analysis Tools</i></a><br>
</small><small>Senior Team Lead at <a
href="http://www.mathworks.com/">MathWorks</a>
since August 2013</small><br>
</td>
</tr>
<tr>
<td valign="top"><a
href="http://www.ortsa.com/nataliya.guts/">Nataliya
Guts</a> (postdoc) </td>
<td valign="top"><small>Security Solutions Engineer, <a href = "https://www.futurae.com/fr/team/">Futurae</a></small><br>
</td>
</tr>
<tr>
<td><a href="http://www.chrishayden.com/">Chris
Hayden</a>*</td>
<td><small><a
href="papers/hayden-dissertation-2012.pdf"><i>Clear,
Correct, and Efficient Dynamic Software
Updates</i></a><br>
Senior Software Engineer at Amazon Web Services
since Mar. 2020; previously at <a
href="http://socialcode.com/">SocialCode</a>
2015-2019; WaPo Labs/<a
href="http://www.trove.com/">Trove</a>
2012-2015<br>
</small></td>
</tr>
<tr>
<td valign="top"><a
href="https://www.linkedin.com/in/tedks/">Ted
Smith</a> (undergrad)*</td>
<td valign="top"><small>Senior Product Manager, Mysten Labs, since June 2023;
previously at Hudson River Trading (2022-2023), Bloomberg LP (2019-2023); and Google (2016-2018); grad student at UMass Amherst
2013-2016</small><br>
</td>
</tr>
<tr>
<td valign="top"><a
href="https://www.linkedin.com/in/stephen-magill-2070a096/">Stephen
Magill</a> (postdoc) </td>
<td valign="top"><small>VP, Product Innovation at
Sonatype, since 2021; formerly CEO of <a
href="https://muse.dev/">MuseDev</a>,
Principal scientist, <a
href="http://www.galois.com">Galois</a>,
2014-2020; reearcher at IDA/CCS, 2012-2014</small></td>
</tr>
<tr>
<td><a
href="https://www.linkedin.com/in/justin-mccann-79906a5a/">Justin
McCann</a></td>
<td><small><a
href="papers/mccann-dissertation-2012.pdf"><i>Automating
Performance Diagnosis in Networked Systems</i></a><br>
</small><small><a
href="http://www.averesystems.com/">Avere
Systems</a> since July 2012</small><br>
</td>
</tr>
<tr>
<td><a
href="https://www.linkedin.com/in/kinkeungma/">Martin
Ma</a>*</td>
<td><small><a href="papers/kkma-dissertation.pdf"><i>
Improving Program Testing and Understanding
via Symbolic Execution</i></a><br>
</small><small>Software Engineer at Google since
2013 (previously at Amazon)</small><br>
</td>
</tr>
<tr>
<td width="30%"><a
href="https://www.linkedin.com/in/saurabh-sriv/">Saurabh
Srivastava</a>*</td>
<td><small><a
href="http://www.cs.umd.edu/%7Esaurabhs/pubs/saurabh-srivastava-thesis-9pt.pdf"><i>Satisfiability-based
Program Reasoning and Program Synthesis</i></a><br>
</small><small>Founder, <a
href="https://synthetic-minds.com/">Synthetic
Minds</a>, since 2017; founder, <a
href="http://20n.com/">20n</a>, 2013-2017;
post-doc at Berkeley 2012-2014</small><br>
</td>
</tr>
<tr>
<td><a
href="https://ai.google/research/people/105022">Pavlos
Papageorgiou</a></td>
<td><small><a
href="papers/papageorgiou-dissertation-2008.pdf"><i>The