-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathold.html
1004 lines (867 loc) · 30.6 KB
/
old.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>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Ehsan Toreini @ Surrey University</title>
<!-- Bootstrap core CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!--<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<link href="dist/css/bootstrap-responsive.min.css" rel="stylesheet">-->
<link href="dist/css/starter-template.css" rel="stylesheet">
<script type='text/javascript' src='https://d1bxh8uas1mnw7.cloudfront.net/assets/embed.js'></script>
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="../../assets/js/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!--<header class="p-3 text-bg-dark">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
<li><a href="#" class="nav-link px-2 text-secondary">Ehsan Toreini</a></li>
<li><a href="#about" class="nav-link px-2 text-white">About</a></li>
<li><a href="#research" class="nav-link px-2 text-white">IoE Lab</a></li>
<li><a href="#teaching" class="nav-link px-2 text-white">Teaching</a></li>
<li><a href="#papers" class="nav-link px-2 text-white">Papers</a></li>
<li><a href="#misc" class="nav-link px-2 text-white">Misc.</a></li>
</ul>
<span class="col-12 col-lg-auto mb-3 mb-lg-0">
<p><a href="https://scholar.google.co.uk/citations?user=qN0jFWwAAAAJ&hl=en"><i
class="fab icon brands fa-google"></i></a>
| <a href="https://twitter.com/toreini1957"><i class="fab icon brands fa-twitter"></i></a>
| <a href="https://github.com/toreini"><i class="fab icon brands fa-github"></i></a>
| <a href="https://www.linkedin.com/in/toreini/">
<i class="fab icon brands fa-linkedin"></i></a>
|<a href="https://linktr.ee/toreini"><i class="fab icon brands fa-pagelines"></i>
</a>
</p>
</span>
</div>
</div>
</header>
<header class="py-3 mb-4 border-bottom">
<div class="container d-flex flex-wrap justify-content-center">
<a href="/" class="d-flex align-items-center mb-3 mb-lg-0 me-lg-auto text-dark text-decoration-none">
<svg class="bi me-2" width="40" height="32">
<use xlink:href="#bootstrap"></use>
</svg>
<span class="fs-4">Ehsan Toreini - Lecturer in Software Security: e.toreini AT surrey DOT ac DOT
uk</span>
</a>
</div>
</header>-->
<nav class="navbar navbar-expand-lg bg-body-tertiary bg-dark" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link active" aria-current="page" href="#">Home</a>
<a class="nav-link" href="#teaching">Teaching</a>
<a class="nav-link" href="#papers">Papers</a>
<a class="nav-link" href="#misc">Misc.></a>
</div>
</div>
<span class="navbar-text">
Navbar text with an inline element
</span>
</div>
</nav>
<!--<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./index.html">Ehsan Toreini</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="nav-item"><a href="#about">About</a></li>
<li class="nav-item"><a href="#teaching">Teaching</a></li>
<li class="nav-item"><a href="#papers">Papers</a></li>
<li class="nav-item"><a href="#misc">Misc</a></li>
</ul>
</div>
</div>
</nav>-->
<div class="container">
<div class="col-md-12">
<div class="image-wrapper float-start pe-4 ">
<img id="picture" src="msr/main-1.jpg"
style="height: auto; width: auto; max-width: 250px; max-height: 250px;"
onmouseover="swapPictures1()" onmouseout="swapPictures2()" />
</div>
<script>
function swapPictures1() {
document.getElementById("picture").src = "msr/clicked-1.jpg";
}
function swapPictures2() {
document.getElementById("picture").src = "msr/main-1.jpg";
}
</script>
<div class="content-wrapper p-3">
<p>
I am a lecturer in software security at department of computer science in Surrey University. I am
also visiting academic in the department of computer science at Durham University.</p>
<p>
My primary research interests are focused on protecting the identity of everything (physical
objects, microchips, humans, browsers, etc.). I am also interested in trustworthy machine learning
(meaning robust, resilient, fair), socio-technical impacts of web tracking, and side-channel attacks
on sensors and other electric components.
I am curiously following the development of new trends in hardware security (mainly related to
device attestation) and secure identification of smart devices in various Internet of Things (IoT)
infrastructures. If you want to know more detail about my current (and past) projects and grants,
follow my <a href="./research.html"> research page.</a>
</p>
<p>
In my research, I am particularly proud of a few highlights. First, my innovations in
anti-counterfeiting technologies were featured in many reputable news outlets such as <a
href="https://www.economist.com/science-and-technology/2017/05/27/using-light-to-fingerprint-paper">the
Economist</a> and <a
href="https://www.wsj.com/articles/how-papers-unique-textures-can-foil-counterfeiters-1497030119">Wall
Street Journal</a> and
two US patents (<a href="https://patents.google.com/patent/US20190342102A1/en">I</a> and <a
href="https://patents.google.com/patent/US10841098B2/en">II</a>).
Also, my white hacker sidekick projects lead to two significant improvements in the security of the
web ecosystem: JavaScript-based side-channel attacks to motion and orientation sensors caused major
security patches in all mainstream browsers (<a
href="https://www.mozilla.org/en-US/security/advisories/mfsa2016-43/">Mozilla Firefox</a>,
Google Chrome
and <a href="https://support.apple.com/en-gb/HT206166">Apple Safari, and iOS</a>), making W3C
dedicate
a section on privacy and security of deviceorientation API in <a
href="https://w3c.github.io/deviceorientation/spec-source-orientation.html#security-and-privacy">the
documentation (now deprecated)</a>
. Also,
the privacy leakages of private browsing caused major updates in Apple Safari and Google Chrome.
These impacts led me to be invited to be an expert in the <a
href="https://www.w3.org/groups/wg/das/participants?sortaff=1">"Device and
Sensor (DAS)" working group</a> of the World Wide Web Consortium (W3C).
</p>
<p>
While I am not in the office, I enjoy watching good movies (particularly exploring classics of
Italian neorealism, French new wave and Japanese golden era), cooking (my goal is to master
umami-fused grills and pizza bread fermentation), and I am mediocre at chess.
</p>
</div>
</div>
</div>
</article>
<section id="team">
<h3>Research Team</h3>
<p>I am lucky to be exposed to a talented pool of students and researchers so far. I am expanding my
team for now so keep an eye on any upcoming hiring notifications in this section!</p>
<h5>Current members:</h5>
<ul>
<li><b><a href="...">James Clarke</a></b>(PhD candidate)</li>
</ul>
<h5>Alumni (few that I am proud to work with):</h5>
<ul>
<li><b><a href="https://www.dwresearch.online/">Patrick Wake</a></b> (PhD candidate, Global Head
of Information Security, FDM Group), co-supervised with Prof. Sue Black.</li>
<li><b><a href="https://www.durham.ac.uk/staff/amira-a-saleem/">Amira Alrewetae</a></b> (PhD
candidate), co-supervised with Dr. Gaganjeet Aujla</li>
<li><b><a href="https://joshua-harrison.com/">Josh Harrison</a></b> (Research Project,
2022) --> Software Development Engineer @ Amazon uk</li>
<li><b><a href="https://www.linkedin.com/in/jack-reeves-518669144/">Jack Reeves</a></b>
(Research Project,
2022) --> Digital Consultant @ Newton Europe </li>
<li><b><a href="https://www.linkedin.com/in/jia-xiu-sai-a80825169/">Jia Xiu Sai</a></b>
(Research Project, 2022)
--> Graduate Software Engineer @ THG</li>
<li><b><a href="https://kjtian.github.io/">Max Dormon</a></b> (Research Project, 2022) -->
Software Engineer @ JPMorgn Chase
</li>
</ul>
<h5>Future opportunities::</h5>
<ul>
<li><i class="fas fa-bullhorn"></i> Student project? If you're a Surrey University student
looking for a final year projects or research positions, please refer to <a href="??">this page.</a>
</li>
<li> Work with me? If you are looking for a PhD or Postdoc,
please send an email to me with your proposal and CV. </li>
</ul>
</section>
<section id="teaching">
<h3>Teaching</h3>
<p>I have many teaching experiences in different roles such as module leader, module coordinator and module
designer for security related (and
unrelated) courses. I will keep everyone posted on my teaching responsibilities in Surrey University in
near future.
</p>
<h4>Year 2022 - 2023 (@Surrey University and @Durham University)</h4>
<ul>
<li>
<h5>To be Confirmed!</h5>
</li>
</ul>
<h4>Year 2021 - 2022 (@Durham University)</h4>
<ul>
<li>
<a href="./security.html">Security Engineering: </a>
This module is proposed in Durham University Curriculum for the first time.
Teaching Goal: available <a
href="https://www.durham.ac.uk/study/modules/undergraduate/comp3657.php">here</a>.
</li>
<li>
<a href="./bias.html">Bias in AI: </a>continuation of the module taught in previous year
with minor modifications.
</li>
</ul>
<h4>Year 2020 - 2021 (@Durham University)</h4>
<ul>
<li>
<a href="./bias.html">Bias in AI: </a>
This module is proposed in Durham University Curriculum for the first time.
Teaching Goal: available <a
href="https://www.durham.ac.uk/study/modules/undergraduate/comp2261.php">here</a>.
</li>
<li>
<a href="./probability.html">Probability: </a>
This module is proposed in Durham University Curriculum for the first time.
Teaching Goal: available <a
href="https://www.durham.ac.uk/study/modules/undergraduate/comp2251.php">here</a>.
</li>
</ul>
</div>
</section>
<section id="papers">
<h3>Papers</h3>
Authors are ordered alphabetically unless they're not 🤔🤔🤔 <br>
<p>List of all citations: <a href="https://scholar.google.co.uk/citations?user=qN0jFWwAAAAJ&hl=en">Google
Scholar</a></p>
<p>Bibtex Representation: <a
href="https://bibbase.org/show?bib=http%3A%2F%2Ftoreini.github.io%2Fextra%2Fmybib.bib&msg=embed">Bibtex</a>
</p>
<h4>
2022
</h4>
<ul>
<li>
<strong>"I feel invaded, annoyed, anxious and I may protect myself": Individuals' Feelings
about Online Tracking and their Protective Behaviour across Gender and
Country"</strong>.
Kovila Coopamootoo, Maryam Mehrnezhad, Ehsan Toreini. 31st USENIX Security Symposium 2022
<br />
<a href="https://www.usenix.org/conference/usenixsecurity22/presentation/coopamootoo">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</li>
<li>
<strong>"How Can and Would People Protect From Online Tracking?."</strong>.
Maryam Mehrnezhad, Kovila Coopamootoo, Ehsan Toreini. Proceedings on Privacy Enhancing
Technologies (PETS) 2022
<br />
<a href="https://sciendo.com/pdf/10.2478/popets-2022-0006">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</li>
<li>
<strong>"Bodies Like Yours: Enquiring Data Privacy in FemTech"</strong>.
Teresa Almeida, Laura Shipp, Maryam Mehrnezhad, Ehsan Toreini. Nordic Human-Computer Interaction
Conference 2022
<br />
<a
href="https://www.researchgate.net/profile/Teresa-Almeida-6/publication/361925277_Bodies_Like_Yours_Enquiring_Data_Privacy_in_FemTech/links/62dfa3fb3c0ea878875b596b/Bodies-Like-Yours-Enquiring-Data-Privacy-in-FemTech.pdf">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</li>
<li>
<strong>"Vision: Too Little too Late? Do the Risks of FemTech already Outweigh the Benefits?"</strong>.
Maryam Mehrnezhad, Laura Shipp, Teresa Almeida, Ehsan Toreini. European Symposium on Usable Security
2022
<br />
<a href="https://dl.acm.org/doi/pdf/10.1145/3549015.3554204">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</li>
<li>
<strong>"In Private, Secure, Conversational FinBots We Trust"</strong>.
Magdalene Ng, Kovila PL Coopamootoo, Tasos Spiliotopoulos, Dave Horsfall, Mhairi Aitken, Ehsan Toreini,
Karen Elliott, Aad van Moorsel. Arxiv
<br />
<a href="https://arxiv.org/pdf/2204.10344">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</li>
</ul>
<h4>
2021
</h4>
<ul>
<li>
<strong>"Anti-Counterfeiting for Polymer Banknotes Based on Polymer Substrate
Fingerprinting"</strong>.
Shen Wang, Ehsan Toreini, Feng Hao. IEEE Transactions on Information Forensics and Security
(TIFS)
<br />
<a href="https://arxiv.org/pdf/2103.06184">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</li>
<li><strong>"On Secure E-Voting over Blockchain"</strong>.
Patrick Mccorry, Maryam Mehrnezhad, Ehsan Toreini, Siamak F Shahandashti, Feng Hao.
ACM journal of Digital Threats: Research and Practice (DTRAP)
<br />
<a href="https://www.dcs.warwick.ac.uk/~fenghao/files/main-DTRAP-final.pdf">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</li>
</ul>
<h4>
2020
</h4>
<ul class="alt">
<li>
<p class="info">
<strong>"Keeping it Human: A Focus Group Study of Public Attitudes Towards AI in
Banking"</strong>.
Mhairi Aitken, Magdalene Ng, Ehsan Toreini, Aad van Moorsel, Kovila Coopamootoo,
Karen
Elliott.
European Symposium on Research in Computer Security
<br />
<a href="https://arxiv.org/pdf/2007.08911">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</li>
<li>
<p class="info">
<strong>
"Technologies for Trustworthy Machine Learning: A Survey in a Socio-Technical
Context"
</strong>. Ehsan Toreini, Mhairi Aitken, Kovila PL Coopamootoo, Karen Elliott, Vladimiro
Gonzalez
Zelaya, Paolo Missier, Magdalene Ng, Aad van Moorsel.
<br />
<a href="https://arxiv.org/pdf/2007.08911">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"Simulating the Effects of Social Presence on Trust, Privacy Concerns & Usage
Intentions
in Automated Bots for Finance"
</strong>. Magdalene Ng, Kovila PL Coopamootoo, Ehsan Toreini, Mhairi Aitken, Karen
Elliot, Aad
van
Moorsel.
EuroUSEC 2020, The 5th European Workshop on Usable Security.
<br />
<a href="https://eusec20.cs.uchicago.edu/eusec20-Ng.pdf">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"End-to-End Verifiable E-Voting Trial for Polling Station Voting at Gateshead"
</strong> .Feng Hao, Shen Wang, Samiran Bag, Rob Procter, Siamak F Shahandashti, Maryam
Mehrnezhad,
Ehsan Toreini, Roberto Metere, Lana Liu.
IEEE Security & Privacy Journal, 2020
<br>
<a href="https://www.computer.org/csdl/magazine/sp/5555/01/09152966/1lSWhUZlI3K">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
</ul>
<h4>
2019
</h4>
<ul class="alt">
<li>
<p class="info">
<strong>
"The relationship between trust in AI and trustworthy machine learning
technologies"
</strong> .Ehsan Toreini, Mhari Aitken, Aad van Moorsel, Karen Elliot, Kovila
Koopamootoo.
ACM conference on Fairness, Accountability and Transparency in Machine
Learning
(ACM
FAT*), Spain, 2020.
<br>
<a href="https://arxiv.org/pdf/1912.00782">
<i class="fa fa-file-pdf">
</i>
ePrint
</a> |
<a href="extra/presentation.pdf">
<i class="fas fa-file-powerpoint"></i>
</i>
Presentation
</a> |
<a href="https://www.youtube.com/watch?v=ylK3OR-Vr-w">
<i class="fab fa-youtube"></i>
</i>
Video
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"DOMtegrity: Ensuring Web Page Integrity against Malicious Browser Extensions"
</strong>. Ehsan Toreini, Siamak F. Shahandashti, Maryam Mehrnezhad, Feng Hao.
International Journal of Information Security.
<br>
<a href="https://arxiv.org/abs/1905.12951">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>|
<a href="https://github.com/toreini/DOMtegrity">
<i class="fa fa-code">
</i>
Source Code
</a>|
<a href="projects/domtegrity.html">
<i class="fas fa-info-circle"></i>
More
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"What Is This Sensor and Does This App Need Access to It?"
</strong>. Maryam Mehrnezhad, Ehsan Toreini.
Informatics Journal.
</p>
</li>
</ul>
<h4>
2018
</h4>
<ul class="alt">
<li>
<p class="info">
<strong>
"Making sense of sensors: mobile sensor security awareness and education"
</strong>. Maryam Mehrnezhad, Ehsan Toreini, Sami Alajrami.
7th Workshop on Socio-Technical Aspects in Security and Trust.
</p>
</li>
<li>
<p class="info">
<strong>
"Stealing PINs via Mobile Sensors: Actual Risk versus User Perception"
</strong>. Maryam Mehrnezhad, Ehsan Toreini, Siamak F. Shahandashti, Feng Hao.
International Journal of Information Security.
<br>
<a href="https://arxiv.org/pdf/1605.05549">
<i class="fa fa-file-pdf">
</i>
ePrint
</a> |
<a href="https://github.com/maryammjd/Reading-sensor-data-for-fifty-4digit-PINs">
<i class="fa fa-code">
</i>
Source Code
</a> |
<a data-badge-popover="right" data-badge-type="1" data-doi="10.1007/s10207-017-0369-x"
data-hide-no-mentions="true" class="altmetric-embed"></a> (Listed as top 5% of all
research outputs scored by Altmetric)
</p>
</li>
</ul>
<h4>
2017
</h4>
<!--<p class="info">
Ehsan Toreini, Siamak F. Shahandashti, Maryam Mehrnezhad, Dylan Clarke, Feng Hao.
<strong>"DOMtegrity: Ensuring Web Page Integrity against Browser Extension Modifications"</strong>.
Submitted to The ACM Conference on Computer and Communications Security 2017(CCS'17).
<br>
<a href="https://arxiv.org/abs/1705.02510"><i class="fa fa-file-pdf"></i> ePrint</a>
|
<a href="https://github.com/stonecoldpat/anonymousvoting"><i class="fa fa-info-circle"></i> more info inc. abstract, media coverage, and BibTeX</a>
</p>-->
<ul class="alt">
<li>
<p class="info">
<strong>
"Texture to the Rescue: Practical Paper Fingerprinting based on Texture
Patterns"
</strong>. Ehsan Toreini, Siamak F. Shahandashti, Feng Hao.
ACM Transactions on Privacy and Security (TOPS), ACM, 2017.
<br>
<a href="https://arxiv.org/abs/1705.02510">
<i class="fa fa-file-pdf">
</i>
ePrint
</a> |
<a href="projects/fingerprinting.html">
<i class="fa fa-info-circle">
</i>
more info inc. abstract, media coverage, and BibTeX
</a>
</p>
</li>
</ul>
<h4>
2016
</h4>
<ul class="alt">
<li>
<p class="info">
<strong>
"Touchsignatures: identification of user touch actions and pins based on mobile
sensor
data via javascript"
</strong>. Maryam Mehrnezhad, Ehsan Toreini, Siamak F. Shahandashti, Feng Hao.
Journal of Information Security and Applications 26, 23-38.
<br>
<a href="http://www.sciencedirect.com/science/article/pii/S2214212615000678">
<i class="fa fa-file-pdf">
</i>
Publication
</a> |
<a href="https://github.com/maryammjd/Reading-sensor-data-for-fifty-4digit-PINs">
<i class="fa fa-code">
</i>
Source Code
</a> |
<a data-badge-popover="right" data-badge-type="1" data-doi="10.1016/j.jisa.2015.11.007"
data-hide-no-mentions="true" class="altmetric-embed"></a>
</p>
</li>
<li>
<p class="info">
<strong>
"PiSHi: click the images and I tell if you are a human"
</strong> . Maryam Mehrnezhad, Abbas Ghaemi Bafghi, Ahad Harati, Ehsan Toreini.
International Journal of Information Security, 1-17.
<br>
<a href="https://link.springer.com/article/10.1007/s10207-015-0311-z">
<i class="fa fa-file-pdf">
</i>
Publication
</a> |
<a data-badge-popover="right" data-badge-type="1" data-doi="10.1007/s10207-015-0311-z"
data-hide-no-mentions="true" class="altmetric-embed"></a>
</p>
</li>
<li>
<p class="info">
<strong>
"Removing Trusted Tallying Authorities"
</strong> . Patrick McCorry, Ehsan Toreini, Maryam Mehrnezhad.
Newcastle University.
<br>
<a href="https://internal.ncl.ac.uk/computing/annex/research/techreports/pdfs/1502.pdf">
<i class="fa fa-file-pdf">
</i>
Technical Report
</a>
</p>
</li>
</ul>
<h4>
2015
</h4>
<!--
<p class="info">
Maryam Mehrnezhad, Ehsan Toreini, Siamak F. Shahandashti, Feng Hao.
<strong>
"Touchsignatures: identification of user touch actions based on mobile sensors via javascript"
</strong> . Poster Presentation in the 10th ACM Asia Conference on Information, Computer and Communications Security.
<br>
<a href="http://homepages.cs.ncl.ac.uk/m.mehrnezhad/TouchSignaturesPoster.pdf">
<i class="fa fa-slideshare">
</i>
Poster
</a> |
<a href="https://github.com/maryammjd/Reading-sensor-data-for-fifty-4digit-PINs">
<i class="fa fa-info-circle">
</i>
Source Code
</a>
</p>
-->
<ul class="alt">
<li>
<p class="info">
<strong>
"Determining User Passwords From Partial Information"
</strong>. Dylan Clarke, Ehsan Toreini, Feng Hao.
Newcastle University.
<br>
<a
href="http://eprint.ncl.ac.uk/file_store/production/212181/6AB0D3F3-DF95-4624-94E6-DC16F2D713FC.pdf">
<i class="fa fa-file-pdf">
</i>
Technical Report
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"An acoustic side channel attack on enigma"
</strong>. Ehsan Toreini, Brian Randell, Feng Hao.
Newcastle University.
<br>
<a
href="http://eprint.ncl.ac.uk/file_store/production/211469/2196D5C7-7CC2-494C-A004-E2E5B9288B74.pdf">
<i class="fa fa-file-pdf">
</i>
Technical Report
</a>
</p>
</li>
</ul>
<h4>
2014
</h4>
<ul class="alt">
<li>
<p class="info">
<strong>
"Analysis Of The Usage Of Chaotic Theory In Data Clustering Using Particle Swarm
Optimization"
</strong>. Saman Poursiah Navi, Ehsan Toreini, Maryam Mehrnejad, Seyyed Kazem
Shekofteh.
Indian Journal of Scientific Research 4 (3), 335-353.
<br>
<a href="http://www.ijsr.in/upload/15115718324.pdf">
<i class="fa fa-file-pdf">
</i>
Publication
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"On the privacy of private browsing–a forensic approach"
</strong>. Kiavash Satvat, Matthew Forshaw, Feng Hao, Ehsan Toreini.
Data Privacy Management and Autonomous Spontaneous Security, 380-389.
<br>
<a
href="http://eprint.ncl.ac.uk/file_store/production/197264/D8ACC693-D092-41D2-8682-1521007F31A6.pdf">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
</ul>
<h4>
2012
</h4>
<ul class="alt">
<li>
<p class="info">
Maryam Mehrnejad, Abbas Ghaemi Bafghi, Ahad Harati, Ehsan Toreini.
<strong>
"SEIMCHA: a new semantic image CAPTCHA using geometric transformations"
</strong> . The ISC International Journal of Information Security 4 (1), 63-76.
<br>
<a href="http://www.isecure-journal.com/article_39198_0b0277ffa00b92ab290f3131c71781ec.pdf">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
</ul>
<h4>
2011
</h4>
<ul class="alt">
<li>
<p class="info">
<strong>
"Multiple seimcha: multiple semantic image captcha"
</strong>. Maryam Mehrnejad, Abbas Ghaemi Bafghi, Ahad Harati, Ehsan Toreini
International Conference for Internet Technology and Secured Transactions
(ICITST),
2011.
<br>
<a href="https://arxiv.org/abs/1705.02510">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"A novel method in fuzzy data clustering based on chaotic PSO"
</strong>. Ehsan Toreini, Maryam Mehrnejad.
International Conference for Internet Technology and Secured Transactions
(ICITST),
2011.
<br>
<a href="https://arxiv.org/abs/1705.02510">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"Security analyzing and designing GUI with the resources model"
</strong>. Maryam Mehrnejad, Ehsan Toreini, Abbas Ghaemi Bafghi.
International Conference for Internet Technology and Secured Transactions
(ICITST),
2011.
<br>
<a href="https://arxiv.org/abs/1705.02510">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"Clustering Data with Particle Swarm Optimization using a new fitness"
</strong>. Ehsan Toreini, Maryam Mehrnejad.
Data Mining and Optimization (DMO), 2011 3rd Conference on, 266-270.
<br>
<a href="https://arxiv.org/abs/1705.02510">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"A novel fuzzy metric to evaluate clusters for prolonging lifetime in wireless
sensor
networks"
</strong>. Peyman Neamatollahi, Hoda Taheri, Ehsan Toreini, Mahmoud Naghibzadeh,
Mohhamad
Hossein
Yaghmaee.
Artificial Intelligence and Signal Processing (AISP), 2011 International.
<br>
<a href="https://arxiv.org/abs/1705.02510">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
<li>
<p class="info">
<strong>
"A new image based CAPTCHA based on geometric transformations"
</strong>. Maryam Mehrnejad, Abbas Ghaemi Bafghi, Ahad Harati, Ehsan Toreini.
8thInternational ISC Conference on Information Security and Cryptology, FUM.
<br>
<a href="https://arxiv.org/abs/1705.02510">
<i class="fa fa-file-pdf">
</i>
ePrint
</a>
</p>
</li>
</ul>
</section>
<section id="misc">
<h3>Misc.</h3>
<p>
Other bits and pieces that I am proud of include nominations, public outreach presentations and
impacts. Some are:
<p>
<ul>
<li>Nominated by Dep. of Computer Science at DU for “Blavatnik award for young scientists in the
UK”, 2022
</li>
<li>Shortlisted in EPSRC Connected Nation Pioneers Competition, 2018</li>
<li>
Winner ($3k) of The Kaspersky Lab Cyber Security Case Study Competition Hosted by The Economist
on
blockchain for e-voting, 2016.</li>
<li>
Invited Talk, Sutton Trust Summer School 2021, A Discussion on Trust, and Security</li>
<li>Invited Panel Member, Dynamo 20, FinTrust: A discussion of tech, social & ethical approaches
to establish
trust in FinTech</li>
<li>What Your Sensors Say about You, Thinking Digital, Newcastle, 2016 and 2018.</li>
</ul>
</section>
</div>
<footer class="py-3 my-4">
<p class="text-center text-muted">© Ehsan Toreini</p>
</footer>
</div><!-- /.container -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-78178749-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<!--<script src="./dist/js/bootstrap.min.js"></script>-->
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->