-
Notifications
You must be signed in to change notification settings - Fork 3
/
newindex.html
846 lines (785 loc) · 26.7 KB
/
newindex.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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>APF</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,100,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:100,400" rel="stylesheet" type="text/css">
<link rel="import" href="bower_components/paper-button/paper-button.html">
<link rel="import" href="bower_components/iron-icons/iron-icons.html">
<link rel="import" href="bower_components/iron-icons/communication-icons.html">
<link rel="import" href="bower_components/iron-icons/notification-icons.html">
<link rel="import" href="bower_components/iron-icons/social-icons.html">
<style is="custom-style">
/* General */
.anchor:before {
content: "";
display: block;
height: 150px;
margin: -150px 0 0;
}
.content-section {
border-top: 1px #ccc solid;
color: #414141;
text-align: center;
padding: 50px 10% 50px 10%;
}
.content-section-title {
color: gray;
font-size: 2em;
font-weight: 100;
padding-bottom: 20px;
text-align: center;
text-transform: uppercase;
}
.example-img {
width: 400px;
}
.example-img-with-caption {
font-size: 1em;
padding-bottom: 40px;
}
.example-img-with-caption.left {
float: left;
}
html, body {
font-family: 'Lato', sans-serif;
margin: 0;
padding: 0;
}
p {
font-size: 1.15em;
line-height: 1.3em;
text-align: left;
}
/* Header */
header {
height: 700px;
left: 0;
overflow: hidden;
position: fixed;
transition: height 0.6s;
/*-moz-transition: height 0.8s;
-ms-transition: height 0.8s;
-o-transition: height 0.8s;
-webkit-transition: height 0.8s;*/
top: 0;
width: 100%;
z-index: 999;
}
header .box {
border: 0;
display: flex;
float: left;
height: 200px;
justify-content: center;
text-align: center;
width: 33.299%;
}
header .box a {
color: white;
text-decoration: none;
}
header .box-container {
background-color: #1A83BB;
overflow: auto;
text-align: center;
width: 100%;
}
header .box-content {
align-self: center;
color: white;
font-family: 'Lato', sans-serif;
font-weight: 400;
font-size: 1.2em;
padding: 20px;
}
header .box-icons {
--iron-icon-height: 1.5em;
--iron-icon-width: 1.5em;
padding-bottom: 7px;
}
header .box-images {
height: 1.3em;
padding-bottom: 7px;
}
header .my-name {
background-color: white;
color: gray;
font-family: 'Lato', sans-serif;
font-size: 4.5em;
font-weight: 100;
height: 300px;
line-height: 300px;
text-align: center;
width: 100%;
}
header.smaller {
height: 100px;
}
header.smaller .box {
height: 100px;
width: 16.666%;
}
header.smaller .box-content {
font-size: 1em;
}
header.smaller .box-words {
display: none;
}
header.smaller .my-name {
display: none;
}
#first {
height: 700px;
}
#first.smaller {
height: 300px;
transition: height 0.6s;
}
/* About me */
#photo-circle {
width: 180px;
}
/* Publication list */
.paper {
display: none;
text-align: left;
padding-bottom: 10px;
}
.paper a {
color: rgb(26, 131, 187);
text-decoration: none;
}
.paper-authors {
display: none;
}
paper-button {
color: rgb(26, 131, 187);
font-size: .9em;
text-transform: uppercase;
margin-bottom: 20px;
}
paper-button[toggles] {
transition: background-color 0.3s;
}
paper-button[toggles][active] {
background-color: rgba(26, 131, 187, 0.25);
}
.paper-favorites {
display: block;
padding-bottom: 10px;
}
.paper-icons {
--iron-icon-height: 1.15em;
--iron-icon-width: 1.15em;
vertical-align: top;
}
.paper-title {
font-size: 1.15em;
}
/* Twitter */
#twitter-small-screen {
display: none;
}
#twitter-big-screen {
display: block;
}
</style>
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<script>
var kAllPubsVisible = false;
function $(elemId) {
return document.getElementById(elemId);
}
function knuthShuffle(arr) {
var end = arr.length;
for (var i = 0; i < end; i++) {
var randomIndex = Math.floor(Math.random() * (end - i)) + i;
var swapTemp = arr[i];
arr[i] = arr[randomIndex];
arr[randomIndex] = swapTemp;
}
return arr;
}
function togglePaperList() {
var papers = document.querySelectorAll('.paper');
kAllPubsVisible = !kAllPubsVisible;
for (var i = 0; i < papers.length; i++)
papers[i].style.display = kAllPubsVisible ? 'block' : 'none';
if (!kAllPubsVisible) {
var favoritePapers = document.querySelectorAll('.paper-favorites');
for (var j = 0; j < favoritePapers.length; j++)
favoritePapers[j].style.display = 'block';
}
}
function scrollHeader() {
var distanceY = window.pageYOffset || document.documentElement.scrollTop;
var shrinkThreshold = 100;
var header = document.querySelector('header');
if (distanceY > shrinkThreshold) {
header.classList.add('smaller');
$('first').classList.add('smaller');
} else if (header.classList.contains('smaller')) {
header.classList.remove('smaller');
$('first').classList.remove('smaller');
}
}
function setupPage() {
// Set up the box colors.
var colors =
['#005B97', '#1A83BB', '#0F6695', '#1370AE', '#327CAE', '#017ABC'];
colors = knuthShuffle(colors);
var boxes = document.getElementsByClassName('box');
for (var i = 0; i < boxes.length; i++) {
boxes[i].style.backgroundColor = colors[i % colors.length];
}
// Set up event listeners.
$("full-list-button").addEventListener('click', togglePaperList);
window.addEventListener('scroll', scrollHeader);
}
document.addEventListener('DOMContentLoaded', setupPage);
</script>
</head>
<body unresolved>
<header>
<!-- My name -->
<div class="my-name">
adrienne porter felt
</div>
<!-- Nav bar -->
<div class="box-container">
<div class="box">
<div class="box-content">
<a href="#about">
<iron-icon class="box-icons" icon="social:person"></iron-icon>
<div class="box-words">ABOUT ME</div>
</a>
</div>
</div>
<div class="box">
<div class="box-content">
<a href="#publications">
<iron-icon class="box-icons" icon="description"></iron-icon>
<div class="box-words">PUBLICATIONS</div>
</a>
</div>
</div>
<div class="box">
<div class="box-content">
<a href="#code">
<iron-icon class="box-icons" icon="code"></iron-icon>
<div class="box-words">CODE & DEMOS</div>
</a>
</div>
</div>
<div class="box">
<div class="box-content">
<a href="#talks">
<iron-icon class="box-icons" icon="notification:ondemand-video"></iron-icon>
<div class="box-words">TALKS</div>
</a>
</div>
</div>
<div class="box">
<div class="box-content">
<a href="#contact">
<iron-icon class="box-icons" icon="communication:email"></iron-icon>
<div class="box-words">CONTACT</div>
</a>
</div>
</div>
<div class="box">
<div class="box-content">
<a href="#twitter">
<img src="img/twitter.png" class="box-images"/>
<div class="box-words">ON TWITTER</div>
</a>
</div>
</div>
<div style="clear: all"></div>
</div>
</header>
<div id="first"> </div>
<!-- about me -->
<div class="content-section">
<a class="anchor" name="about"></a>
<div class="content-section-title">About Me</div>
<img src="img/felt-photo-border.png" id="photo-circle"/>
<p>
I'm a software engineer on the Google Chrome security team. My job is to
make security an intuitive, helpful experience for non-experts.
Currently, I'm focused on increasing the adoption, usage, and quality of
HTTPS. I'm also trying to create a web permission system that meshes with
Android and scales up to lots of new APIs.
</p>
<p>
I have a research background, and I try to blend research with
engineering. Before joining the Chrome team, I was a research scientist
on the Google security research team. I received a PhD in CS from UC
Berkeley, where I did my <a
href="http://www.eecs.berkeley.edu/Pubs/TechRpts/2012/EECS-2012-185.pdf">dissertation</a>
on permission models. As a graduate student, I received the Anita Borg
scholarship, Facebook Fellowship, and NSF graduate research fellowship.
</p>
</div>
<!-- publications -->
<div class="content-section">
<a class="anchor" name="publications"></a>
<div class="content-section-title">(Some) Publications</div>
<paper-button tabindex="0" toggles id="full-list-button">
Show Full List
</paper-button>
<div class="paper paper-favorites">
<div class="paper-title">
<a href="http://research.google.com/pubs/pub43265.html">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Improving SSL Warnings: Comprehension and Adherence
</div>
<div class="paper-venue">
ACM CHI Conference on Human Factors in Computing Systems (CHI) 2015
</div>
<div class="paper-authors">
Adrienne Porter Felt, Alex Ainslie, Robert W. Reeder, Sunny Consolvo,
Somas Thyagaraja, Alan Bettes, Helen Harris, and Jeff Grimes
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="http://www.adrienneporterfelt.com/chromemalwarewarning-soups.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Your Reputation Precedes You: History, Reputation, and the Chrome
Malware Warning
</div>
<div class="paper-venue">
Symposium on Usable Privacy and Security (SOUPS) 2014
</div>
<div class="paper-authors">
Hazim Almuhimedi, Adrienne Porter Felt, Robert W. Reeder, Sunny Consolvo
</div>
</div>
<div class="paper paper-favorites">
<div class="paper-title">
<a href="http://www.adrienneporterfelt.com/chi-ssl-experiment.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Experimenting At Scale With Google Chrome's SSL Warning
</div>
<div class="paper-venue">
ACM CHI Conference on Human Factors in Computing Systems (CHI) 2014
(<iron-icon class="paper-icons" icon="icons:star-border"></iron-icon>
Honorable mention)
</div>
<div class="paper-authors">
Adrienne Porter Felt, Robert W. Reeder, Hazim Almuhimedi, Sunny Consolvo
</div>
</div>
<div class="paper paper-favorites">
<div class="paper-title">
<a href="http://devd.me/papers/alice-in-warningland.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Alice in Warningland: A Large-Scale Field Study of Browser Security
Warning Effectiveness
</div>
<div class="paper-venue">
USENIX Security Symposium 2013
</div>
<div class="paper-authors">
Devdatta Akhawe, Adrienne Porter Felt
</div>
</div>
<div class="paper paper-favorites">
<div class="paper-title">
<a href="https://www.usenix.org/system/files/conference/usenixsecurity12/sec12-final177_0.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
An Evaluation of the Google Chrome Extension Security Architecture
</div>
<div class="paper-venue">
USENIX Security Symposium 2012
</div>
<div class="paper-authors">
Nicholas Carlini, Adrienne Porter Felt, David Wagner
</div>
</div>
<div class="paper paper-favorites">
<div class="paper-title">
<a href="https://www.eecs.berkeley.edu/~daw/papers/anduser-soups12.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Android Permissions: User Attention, Comprehension, and Behavior
</div>
<div class="paper-venue">
Symposium on Usable Privacy and Security (SOUPS) 2012
(<iron-icon class="paper-icons" icon="icons:star"></iron-icon>
Best paper award)
</div>
<div class="paper-authors">
Adrienne Porter Felt, Elizabeth Ha, Serge Egelman, Ariel Haney, Erika
Chin, David Wagner
</div>
</div>
<div class="paper paper-favorites">
<div class="paper-title">
<a href="https://www.usenix.org/system/files/conference/hotsec12/hotsec12-final19.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
How to Ask For Permission
</div>
<div class="paper-venue">
USENIX Workshop on Hot Topics in Security (HotSec) 2012
</div>
<div class="paper-authors">
Adrienne Porter Felt, Serge Egelman, Matthew Finifter, Devdatta Akhawe,
David Wagner
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="https://cups.cs.cmu.edu/soups/2012/proceedings/a1_Chin.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Measuring User Confidence in Smartphone Security and Privacy
</div>
<div class="paper-venue">
Symposium on Usable Privacy and Security (SOUPS) 2012
</div>
<div class="paper-authors">
Erika Chin, Adrienne Porter Felt, Vyas Sekar, David Wagner
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="http://www.guanotronic.com/~serge/papers/weis12.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Choice Architecture and Smartphone Privacy: There's a Price For That
</div>
<div class="paper-venue">
Workshop on the Economics of Information Security (WEIS) 2012
</div>
<div class="paper-authors">
Serge Egelman, Adrienne Porter Felt, David Wagner
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="http://www.guanotronic.com/~serge/papers/spsm12.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
I've Got 99 Problems, But Vibration Ain't One: A Survey of Smartphone
Users' Concerns
</div>
<div class="paper-venue">
ACM Workshop on Security and Privacy in Smartphones and Mobile Devices
(SPSM) 2012
</div>
<div class="paper-authors">
Adrienne Porter Felt, Serge Egelman, David Wagner
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="http://www.cs.berkeley.edu/~dawnsong/papers/2012%20mining%20permission%20request.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Mining Permission Request Patterns from Android and Facebook
Applications
</div>
<div class="paper-venue">
IEEE International Conference on Data Mining (ICDM) 2012
</div>
<div class="paper-authors">
Mario Frank, Ben Dong, Adrienne Porter Felt, Dawn Song
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="https://www.cs.berkeley.edu/~pearce/papers/addroid_asiaccs_2012.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
AdDroid: Privilege Separation for Applications and Advertisers in
Android
</div>
<div class="paper-venue">
ACM Symposium on Information, Computer, and Communications Security
(AsiaCCS) 2012
</div>
<div class="paper-authors">
Paul Pearce, Adrienne Porter Felt, Gabriel Nunez, David Wagner
</div>
</div>
<div class="paper paper-favorites">
<div class="paper-title">
<a href="http://www.cs.berkeley.edu/~emc/papers/android_permissions.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Android Permissions Demystified
</div>
<div class="paper-venue">
ACM Conference on Computer and Communications Security (CCS) 2011
</div>
<div class="paper-authors">
Adrienne Porter Felt, Erika Chin, Steve Hanna, Dawn Song, David Wagner
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="https://www.eecs.berkeley.edu/~daw/papers/intents-mobisys11.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Analyzing Inter-Application Communication in Android
</div>
<div class="paper-venue">
Conference on Mobile Systems, Applications, and Services (MobiSys) 2011
</div>
<div class="paper-authors">
Erika Chin, Adrienne Porter Felt, Kate Greenwood, David Wagner
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="http://www.cs.swarthmore.edu/~bylvisa1/cs97/f13/Papers/mobilemalware.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
A Survey of Mobile Malware in the Wild
</div>
<div class="paper-venue">
ACM Workshop on Security and Privacy in Smartphones and Mobile Devices
(SPSM) 2011
</div>
<div class="paper-authors">
Adrienne Porter Felt, Matthew Finifter, Erika Chin, Steve Hanna, David
Wagner
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="https://wkr.io/assets/refs/felt2011permission.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Permission Re-delegation: Attacks and Defenses
</div>
<div class="paper-venue">
USENIX Security Symposium 2011
</div>
<div class="paper-authors">
Adrienne Porter Felt, Helen Wang, Alexander Moshchuk, Steve Hanna,
Erika Chin
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="http://www.cs.berkeley.edu/~daw/papers/perms-webapps11.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
The Effectiveness of Application Permissions
</div>
<div class="paper-venue">
USENIX Conference on Web Application Development (WebApps) 2011
</div>
<div class="paper-authors">
Adrienne Porter Felt, Kate Greenwood, David Wagner
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="http://w2spconf.com/2011/papers/felt-mobilephishing.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Phishing on Mobile Devices
</div>
<div class="paper-venue">
Web 2.0 Security and Privacy (W2SP) 2011
</div>
<div class="paper-authors">
Adrienne Porter Felt, David Wagner
</div>
</div>
<div class="paper paper-favorites">
<div class="paper-title">
<a href="http://www.adambarth.com/papers/2010/barth-felt-saxena-boodman.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Protecting Browsers from Extension Vulnerabilities
</div>
<div class="paper-venue">
Network and Distributed System Security Symposium (NDSS) 2011
</div>
<div class="paper-authors">
Adam Barth, Adrienne Porter Felt, Prateek Saxena, Aaron Boodman
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="http://webblaze.cs.berkeley.edu/papers/diesel.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Diesel: Applying Privilege Separation to Database Access
</div>
<div class="paper-venue">
ACM Symposium on Information, Computer, and Communications Security
(AsiaCCS) 2011
</div>
<div class="paper-authors">
Adrienne Porter Felt, Matthew Finifter, Joel Weinberger, David Wagner
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/36273.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Object Views: Fine-Grained Sharing in Browsers
</div>
<div class="paper-venue">
International Conference on World Wide Web (WWW) 2010
</div>
<div class="paper-authors">
Leo Meyerovich, Adrienne Porter Felt, Mark S Miller
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="http://www.cs.virginia.edu/felt/privacybyproxy.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Privacy Protection for Social Networking APIs
</div>
<div class="paper-venue">
Web 2.0 Security and Privacy (W2SP) 2008
</div>
<div class="paper-authors">
Adrienne Porter Felt, David Evans
</div>
</div>
<div class="paper">
<div class="paper-title">
<a href="https://www.cs.virginia.edu/~weimer/p/weimer-socialnets2008-preprint.pdf">
<iron-icon class="paper-icons" icon="icons:link"></iron-icon>
</a>
Talking to Strangers Without Taking Their Candy: Isolating Proxied
Content
</div>
<div class="paper-venue">
Workshop on Social Network Systems (SNS) 2008
</div>
<div class="paper-authors">
Adrienne Porter Felt, Pieter Hooimeijer, David Evans, Westley Weimer
</div>
</div>
</div>
<!-- demos and code -->
<div class="content-section">
<a class="anchor" name="code"></a>
<div class="content-section-title">See my chrome code</div>
<!--
<div class="example-img-with-caption">
<a href="https://adrifelt.github.io/demos/bubble-demo.html">
<img class="example-img" src="img/bubble-on-load.png">
</a>
<br>
Permission requests on page load (Chrome)
</div>
-->
<!--<div class="example-img-with-caption">
<a href="https://adrifelt.github.io/demos/disabled-demo.js">
<img class="example-img" src="img/permissionstatus.png">
</a>
<br>
How to reflect notification permission status in UI
</div>-->
<!--<div class="example-img-with-caption">
<a href="http://phishing.safebrowsingtest.com/">
<img class="example-img" src="img/phishing.png">
</a>
<br>
Social engineering warning
</div>-->
<div class="example-img-with-caption left">
<a href="https://wrong.host.badssl.com/">
<img class="example-img" src="img/ssl.png"></a>
<br>
SSL warning
</div>
<div class="example-img-with-caption">
<a href="http://malware.testing.google.test/testing/malware/">
<img class="example-img" src="img/malware.png"></a>
<br>
Malware warning
</div>
<div class="example-img-with-caption left">
<a href="https://adrifelt.github.io/demos/all-permissions.html">
<img class="example-img" src="img/all-bubbles.png"></a>
<br>
Permission request bubbles (desktop)
</div>
<div class="example-img-with-caption">
<a href="https://chrome.google.com/webstore/detail/chrome-apps-extensions-de/ohmmkhmmmpcnpikjeljgnaoabkaalbgc?hl=en">
<img class="example-img" src="img/activitylog.png"></a>
<br>
Monitor extension behavior
</div>
</div>
<!-- talks -->
<div class="content-section">
<a class="anchor" name="talks"></a>
<div class="content-section-title">talks</div>
<div class="example-img-with-caption">
<iframe width="560" height="315" src="https://www.youtube.com/embed/_7XNJBc6ZVM" frameborder="0" allowfullscreen></iframe>
<br>
Building smart & sophisticated security warnings (Etsy Code as Craft)
</div>
<div class="example-img-with-caption">
<iframe width="560" height="315" src="https://www.youtube.com/embed/Lq1njPG-7_U" frameborder="0" allowfullscreen></iframe>
<br>
Making SSL warnings work (OWASP AppSec Cali)
</div>
<div class="example-img-with-caption">
<iframe width="560" height="315" src="https://www.youtube.com/embed/3dAwZVsS8wo" frameborder="0" allowfullscreen></iframe>
<br>
Asking for superpowers: Chrome's permission model (Chrome dev summit)
</div>
</div>
<!-- contact -->
<div class="content-section">
<a class="anchor" name="contact"></a>
<div class="content-section-title">Contact</div>
<p>
<b>"Can you send me a copy of Stowaway?"</b> Stowaway is extremely out of
date and will not produce accurate results for a corpus of modern Android
apps. You should use <a href="http://pscout.csl.toronto.edu/">PScout</a>
instead, which has been updated to handle modern apps. If you still want
to see Stowaway for historical reasons, e-mail me and I'll share a copy
with you.
</p>
<p>
<b>Filing bugs:</b> Use the <a
href="https://code.google.com/p/chromium/issues/entry?template=Security%20Bug">Chromium
bug tracker</a>. Here are <a
href="https://www.chromium.org/Home/chromium-security/reporting-security-bugs">instructions</a>
on how to file a good security bug report.
</p>
<p>
<b>E-mail:</b> felt <i>at</i> chromium <i>dot</i> org
</p>
</div>
<!-- social media -->
<div class="content-section">
<a class="anchor" name="twitter"></a>
<div class="content-section-title">On Twitter</div>
<p style="text-align:center"><a href="https://twitter.com/__apf__">__apf__</a></p>
<div id="twitter-small-screen">
<a href="https://twitter.com/__apf__" class="twitter-follow-button" data-show-count="false" data-size="large">Follow @__apf__</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
<div id="twitter-large-screen">
<a class="twitter-timeline" href="https://twitter.com/__apf__" data-widget-id="622446900965277696">Tweets by @__apf__</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
</body>
</html>