forked from kpatsakis/kpatsakis.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2775 lines (2600 loc) · 118 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>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1">
<title>Constantinos Patsakis homepage</title>
<link rel="icon" href="favicon.png" type="image/png">
<link rel="shortcut icon" href="favicon.ico" type="img/x-icon">
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.3/css/bootstrap.min.css" integrity="sha512-oc9+XSs1H243/FRN9Rw62Fn8EtxjEYWHXRvjS43YtueEewbS6ObfXcJNyohjHqVKFPoXXUxwc+q1K7Dee6vv9g==" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/responsive.css" rel="stylesheet" type="text/css">
<link href="css/animate.css" rel="stylesheet" type="text/css">
<link href="css/bib-publication-list.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.9.1/css/academicons.min.css" integrity="sha512-b1ASx0WHgVFL5ZQhTgiPWX+68KjS38Jk87jg7pe+qC7q9YkEtFq0z7xCglv7qGIs/68d3mAp+StfC8WKC5SSAg==" crossorigin="anonymous" />
<!--[if IE]><style type="text/css">.pie {behavior:url(PIE.htc);}</style><![endif]-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.3/js/bootstrap.min.js" integrity="sha512-8qmis31OQi6hIRgvkht0s6mCOittjMa9GMqtK9hes5iEQBQE/Ca6yGE5FsW36vyipGoWQswBj/QBm2JR086Rkw==" crossorigin="anonymous"></script>
<!-- https://cdnjs.com/libraries/ScrollToFixed -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollToFixed/1.0.8/jquery-scrolltofixed-min.js" integrity="sha512-ohXbv1eFvjIHMXG/jY057oHdBZ/jhthP1U3jES/nYyFdc9g6xBpjDjKIacGoPG6hY//xVQeqpWx8tNjexXWdqA==" crossorigin="anonymous"></script>
<!-- https://www.jsdelivr.com/package/npm/jquery.easing -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/jquery.easing.min.js" integrity="sha256-H3cjtrm/ztDeuhCN9I4yh4iN2Ybx/y1RM7rMmAesA0k=" crossorigin="anonymous"></script>
<!-- https://cdnjs.com/libraries/jquery.isotope -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/3.0.6/isotope.pkgd.js" integrity="sha512-E/yP5UiPXb6VelX+dFLuUD+1IZw/Kz7tMncFTYbtoNSCdRZPFoGN3jZ2p27VUxHEkhbPiLuZhZpVEXxk9wAHCQ==" crossorigin="anonymous"></script>
<!-- https://cdnjs.com/libraries/wow -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js" integrity="sha512-Eak/29OTpb36LLo2r47IpVzPBLXnAMPAVypbSZiZ4Qkf8p/7S/XRG5xp7OKWPPYfJT6metI+IORkR5G8F900+g==" crossorigin="anonymous"></script>
<!-- https://cdnjs.com/libraries/classie -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/classie/1.0.1/classie.min.js" integrity="sha512-sOMf7h9Uvkeku+gv6cIDNhpgvcunE9pAf3A/ezNcRG7//ZZv7nDm6ut69qAXTIU5J9JTbZ+PfrwqstYrq2ZnQQ==" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/bib-list-min.js"></script>
<!-- =======================================================
Theme Name: Knight
Theme URL: https://bootstrapmade.com/knight-free-bootstrap-theme/
Author: BootstrapMade
Author URL: https://bootstrapmade.com
======================================================= -->
</head>
<body>
<header class="header" id="header">
<!--header-start-->
<div class="container">
<figure class="logo animated fadeInDown delay-07s">
<a href="#"><img src="img/logo.png" alt=""></a>
</figure>
<h1 class="animated fadeInDown delay-07s">Constantinos Patsakis</h1>
<ul class="we-create animated fadeInUp delay-1s">
<li>Associate Professor, Department of Informatics, University of Piraeus</li>
</ul>
<a class="link animated fadeInUp delay-1s servicelink" href="#about">Read more</a>
</div>
</header>
<!--header-end-->
<nav class="main-nav-outer" id="test">
<!--main-nav-start-->
<div class="container">
<ul class="main-nav">
<li><a href="#header">Home</a></li>
<li><a href="#about">About me</a></li>
<li><a href="#Portfolio">R&D projects</a></li>
<li class="small-logo"><a href="#header"><img src="img/small-logo.png" alt=""></a></li>
<li><a href="#publications">publications</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#contact"> </a></li>
<li><a href="#contact"> </a></li>
</ul>
<a class="res-nav_click" href="#"><i class="fa-bars"></i></a>
</div>
</nav>
<!--main-nav-end-->
<section class="main-section" id="about">
<!--main-section-start-->
<div class="container">
<h2>About</h2>
<!-- <h6>We offer exceptional service with complimentary hugs.</h6> -->
<div class="row betteronmobs">
<div class="col-lg-6 col-sm-6 wow fadeInRight delay-05s bordright">
<p>My name is Constantinos Patsakis and currently I'm associate professor at the Department of Informatics, University of Piraeus and adjunct researcher at the Institute for the Management of Information Systems (IMIS) of Athena Research
and
Innovation Centre.
<br> My first degree is in Mathematics from the University of Athens, Greece and then I continued with a M.Sc. in Information Security from Royal Holloway, University of London. I obtained my PhD in Security from the Department of
Informatics
of
University of Piraeus. My main areas of research include cryptography, security, privacy and data anonymization.<br> In the past I worked as Researcher at the UNESCO Chair in Data Privacy at the <a href="http://www.urv.cat/en/">Rovira i
Virgili University</a> (URV) of Tarragona, Catalonia, Spain, as a Research Fellow at <a href="http://www.tcd.ie/">Trinity College</a>, Dublin Ireland, and Senior Researcher at the Luxembourg Institute of Science and Technology (<a
href="https://www.list.lu/">LIST</a>).
</p>
</div>
<hr class="style-two2">
<div class="col-lg-6 col-sm-6 wow fadeInLeft delay-05s">
<p> In this academic year I will be teaching the following courses:</p>
<h4 class="text-center">Undergraduates</h4>
<ul>
<li>Information & Code theory</li>
<li>Management of Security Systems</li>
<li>Introduction to Computer Science</li>
<li>Computational Number Theory</li>
</ul>
<h4 class="text-center">Postgraduates</h4>
<ul>
<li>Digital Forensics & Malware Analysis</li>
<li>Cryptographic protocols</li>
<li>Cryptography</li>
<li>Introduction to Computer Science</li>
</ul>
</p>
For more info about the courses, students may refer to our <a href="https://gunet2.cs.unipi.gr/">GUNet</a>. Dissertation topics can be found <a href="files/ptyxiakes.pdf">here</a>.
<!-- <img src="img/macbook-pro.png" alt=""> -->
</div>
</div>
</div>
</section>
<!--main-section-end-->
<section class="main-section alabaster">
<!--main-section alabaster-start-->
<div class="container">
<div class="row">
<figure class="col-lg-5 col-sm-4 wow fadeInLeft">
<img src="img/papers.jpg" alt="">
</figure>
<div class="col-lg-7 col-sm-8 featured-work">
<h2>Latest news</h2>
<P class="padding-b">Some recent news regarding publications, projects, events, etc.</P>
<div class="featured-box">
<div class="featured-box-col1 wow fadeInRight delay-04s">
<i class="fa-bullseye"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-04s">
<h3>IPStorm Tracker</h3>
<p>IPFS is currently plagued by IPStorm malware, a botnet which is exploits IPFS for communication of the nodes and sending commands to the infected devices. <a href="ipstorm/ipstorm_tracker.html">This webpage</a> offers a daily
tracker of the botnet with data collected directly collected from IPFS.</p>
</div>
<div class="featured-box">
<div class="featured-box-col1 wow fadeInRight delay-04s">
<i class="fa-book"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-04s">
<h3>Journal of Information Security and Applications</h3>
<p>The following work has been accepted for publication:
<br>Constantinos Patsakis and Fran Casino: "Exploiting Statistical and Structural Features for the Detection of Domain Generation Algorithms".
</p>
</div>
</div>
<div class="featured-box">
<div class="featured-box-col1 wow fadeInRight delay-02s">
<i class="fa-book"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-02s">
<h3>Computers and Security, Elsevier</h3>
<p> The following work has been accepted for publication:
<br>Theodoros Apostolopoulos, Vasilios Katos, Kim-Kwang Raymond Choo, Constantinos Patsakis: Resurrecting anti-virtualization and anti-debugging: Unhooking your hooks. Future Generation Computer Systems
</p>
</div>
</div>
<div class="featured-box">
<div class="featured-box-col1 wow fadeInRight delay-04s">
<i class="fa-book"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-04s">
<h3>Analysing the fall 2020 Emotet campaign</h3>
<p>University of Piraeus, Athena Research Center, and Neurosoft through its cybersecurity solution Neutrify, released a white paper on the latest campaign of Emotet, which had a significant impact in several countries worldwide.
Follow
this <a href="files/emotet_analysis.pdf">link</a> to read it. The corrsponding IoCs are also provided for <a href="files/emotet_ioc_docs.txt">documents</a> and <a href="files/emotet_ioc_c2.txt">C2 servers</a>.</p>
</div>
</div>
</div>
</div>
</div>
<!--main-section alabaster-end-->
<!-- second row with news-->
<!--main-section alabaster-start-->
<div class="container">
<div class="row">
<div class="col-lg-7 col-sm-8 featured-work">
<div class="featured-box">
<div class="featured-box-col1 wow fadeInRight delay-04s">
<i class="fa-book"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-04s">
<h3>IEEE Transactions on Information Forensics and Security </h3>
<p>The following work has been accepted for publication:
<br>Darren Hurley-Smith, Constantinos Patsakis, and Julio Hernandez-Castro, "On the unbearable lightness of FIPS 140-2 randomness tests".
</p>
</div>
</div>
<div class="featured-box">
<div class="featured-box-col1 wow fadeInRight delay-02s">
<i class="fa-book"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-02s">
<h3>Computers and Security, Elsevier</h3>
<p>Our joined work with Fran Casino and Vasilios Katos on DNS and covert communications is accepted for publication.</p>
</div>
</div>
<div class="featured-box">
<div class="featured-box-col1 wow fadeInRight delay-02s">
<i class="fa-book"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-02s">
<h3>IEEE Access</h3>
<p>"A Survey on Privacy Properties for Data Publishing of Relational Data" with A. Zigomitros, F. Casino, and A. Solanas has been accepted for publication. </p>
</div>
</div>
<div class="featured-box">
<div class="featured-box-col1 wow fadeInRight delay-04s">
<i class="fa-book"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-04s">
<h3>IEEE ACCESS</h3>
<p> Fran Casino, Eugenia A. Politou, Efthimios Alepis, Constantinos Patsakis: "Immutability and Decentralized Storage: An Analysis of Emerging Threats"</p>
</div>
</div>
</div>
<figure class="col-lg-5 col-sm-4 wow fadeInLeft">
<img src="img/papers.jpg" alt="">
</figure>
</div>
</div>
</section>
<!--main-section alabaster-end-->
<section class="main-section paddind" id="Portfolio">
<!--main-section-start-->
<div class="container">
<h2>R&D projects</h2>
<h6>A consolidated list of recent R&D projects I have been participating in the past few years.</h6>
<div class="portfolioFilter">
<ul class="Portfolio-nav wow fadeIn delay-02s">
<li><a href="#" data-filter="*" class="current">All</a></li>
<li><a href="#" data-filter=".ongoing">Ongoing</a></li>
<li><a href="#" data-filter=".previous">Previous</a></li>
</ul>
</div>
</div>
<div class="portfolioContainer wow fadeInUp delay-04s">
<div class=" Portfolio-box ongoing">
<div class="verticalalign">
<a href="#"><img src="img/glass.png" alt=""></a>
<h3>GLASS</h3>
<p>H2020-DT-GOVERNANCE-05-2020</p>
</div>
</div>
<div class=" Portfolio-box ongoing">
<div class="verticalalign">
<a href="http://locard.eu/"><img src="img/locard.png" alt=""></a>
<h3>LOCARD</h3>
<p>FCT-02-2018-2019</p>
</div>
</div>
<div class=" Portfolio-box ongoing">
<div class="verticalalign">
<a href="https://cybersec4europe.eu/"><img src="img/CybcerSec4Europe_logo.png" alt=""></a>
<h3>CyberSec4Europe</h3>
<p>SU-ICT-03-2018</p>
</div>
</div>
<div class=" Portfolio-box ongoing">
<div class="verticalalign">
<a href="https://melity.cs.unipi.gr/"><img src="img/melity.png" alt=""></a>
<h3>ΜΕΛΙΤΥ</h3>
<p>ΕΠΑνΕΚ T1ΕΔΚ-01958</p>
</div>
</div>
<div class=" Portfolio-box ongoing">
<div class="verticalalign">
<a href="http://inteltriage.web.auth.gr/"><img src="img/inteltriage.png" alt=""></a>
<h3>IntelTriage</h3>
<p>ΕΠΑνΕΚ</p>
</div>
</div>
<div class="Portfolio-box ongoing">
<div class="verticalalign">
<a href="http://digforasp.uca.es/home/"><img src="img/cost.png" alt=""></a>
<h3>Digital forensics: evidence analysis via intelligent systems and practices (DigForASP)</h3>
<p>COST Action CA17124</p>
</div>
</div>
<div class=" Portfolio-box ongoing">
<div class="verticalalign">
<a href="https://project-yaksha.eu/"><img src="img/yaksha.png" alt=""></a>
<h3>YAKSHA</h3>
<p>ICT-39-2016-2017</p>
</div>
</div>
<div class="Portfolio-box previous">
<div class="verticalalign">
<a href="https://sauronproject.eu/"><img src="img/sauron.png" alt=""></a>
<h3>SAURON</h3>
<p>CIP-01-2016-2017</p>
</div>
</div>
<div class="Portfolio-box previous">
<div class="verticalalign">
<a href="#"><img src="img/practicies.png" alt=""></a>
<h3>PRACTICIES</h3>
<p>SEC-06-FCT-2016</p>
</div>
</div>
<div class="Portfolio-box previous">
<div class="verticalalign">
<a href="https://cordis.europa.eu/project/id/653704"><img src="img/operando.png" alt=""></a>
<h3>OPERANDO</h3>
<p>DS-01-2014</p>
</div>
</div>
<div class="Portfolio-box previous">
<div class="verticalalign">
<a href="https://cordis.europa.eu/project/id/653212"><img src="img/mitigate.png" alt=""></a>
<h3>MITIGATE</h3>
<p>DS-6-2014</p>
</div>
</div>
<div class="Portfolio-box previous">
<div class="verticalalign">
<a href="https://www.cryptacus.eu/"><img src="img/cryptacus.jpg" alt=""></a>
<h3>CRYPTACUS</h3>
<p>COST Action</p>
</div>
</div>
<div class="Portfolio-box previous">
<div class="verticalalign">
<a href="http://smarthealthresearch.com/projectes/simpatic/"><img src="img/simpatic.png" style="padding-top:40px;" alt=""></a>
<h3>SIMPATIC</h3>
<p>ICT RECERCAIXA'12</p>
</div>
</div>
<div class="Portfolio-box previous">
<div class="verticalalign">
<a href="http://idea-c.weebly.com/"><img src="img/ideac.png" alt=""></a>
<h3>Inter-cultural Dimension for European Active Citizenship (IDEA-C)</h3>
<p>Citizens Strand2</p>
</div>
</div>
<div class="Portfolio-box previous">
<div class="verticalalign">
<a href="https://cordis.europa.eu/project/id/285533/it"><img src="img/tno-tactics-logo.png" alt=""></a>
<h3>TACTICS</h3>
<p>FP7</p>
</div>
</div>
<div class="container">
<h2>Datasets</h2>
<h6>A list of publicly available datasets from my research.</h6>
<div class="featured-box">
<div class="featured-box-col1 wow fadeInRight delay-04s">
<i class="fa-database"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-04s">
<h3>Social Live Streaming Service Grooming dataset</h3>
<p>A large-scale dataset of the messages exchanged publicly by the streamers and viewers during the live broadcasts of users identified as adult content producers from the LiveMe platform, a major Social Live Streaming Service (SLSS). The
dataset comprises 39,382,838 chat messages exchanged by 1,428,284 users, in the context of 293,271 live broadcasts during a period of approximately two years, from July 2016 to June 2018. The analysis of this dataset can be found in our
paper "Large-scale analysis of grooming in modern social networks" <a href="https://arxiv.org/abs/2004.08205">(arXiv:2004.08205 [cs.SI])</a>. Available <a href="https://zenodo.org/record/3560365">here</a>.</p>
</div>
<div class="featured-box-col1 wow fadeInRight delay-04s">
<i class="fa-database"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-04s">
<h3>Dictionary-based DGAs dataset</h3>
<p>This repository contains a dataset for the research of domain generation algorithms (DGAs) and machine learning. More precisely, it targets dictionary-based DGAs. The associated paper is the following:<br>
Constantinos Patsakis, Fran Casino: "Exploiting Statistical and Structural Features for the Detection of Domain Generation Algorithms", Journal of Information Security and Applications, 2021.
<br>Available <a href="https://zenodo.org/record/4010620">here</a>.
</p>
</div>
<div class="featured-box-col1 wow fadeInRight delay-04s">
<i class="fa-database"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-04s">
<h3>The HYDRA dataset</h3>
<p>This repository contains a large dataset for the research of domain generation algorithms (DGAs) and machine learning. At the time of writing the dataset contains more than 90m of domains and more than 100 families. The associated paper is the <a href="https://arxiv.org/abs/2008.02507">following</a>:<br>
Fran Casino, Nikolaos Lykousas, Ivan Homoliak, Constantinos Patsakis, Julio Hernandez-Castro: "Intercepting Hail Hydra: Real-Time Detection of Algorithmically Generated Domains"
<br>Available <a href="https://zenodo.org/record/3965397">here</a>.
</p>
</div>
</div>
</div>
</section>
<!--main-section-end-->
<section class="main-section client-part" id="publications">
<!--main-section client-part-start-->
<div class="container">
<div class="row">
<div class="col-lg-12">
<p class="client-part-haead wow fadeInDown delay-05">Recent publications</p>
</div>
</div>
</div>
</section>
<!--main-section client-part-end-->
<section class="main-section" id="publications">
<!--main-section-start-->
<div class="container">
<!-- <h6>We offer exceptional service with complimentary hugs.</h6> -->
<div class="row">
<table id="pubTable" class="display"></table>
<pre id="bibtex" style="display:none;">
<!-- bib include -->
@article{DBLP:journals/fgcs/ApostolopoulosK21,
author = {Theodoros Apostolopoulos and
Vasilios Katos and
Kim{-}Kwang Raymond Choo and
Constantinos Patsakis},
title = {Resurrecting anti-virtualization and anti-debugging: Unhooking your
hooks},
journal = {Future Gener. Comput. Syst.},
volume = {116},
pages = {393--405},
year = {2021},
url = {https://doi.org/10.1016/j.future.2020.11.004},
doi = {10.1016/j.future.2020.11.004},
timestamp = {Fri, 18 Dec 2020 10:25:24 +0100},
biburl = {https://dblp.org/rec/journals/fgcs/ApostolopoulosK21.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/access/CasinoPAP20,
author = {Fran Casino and
Eugenia A. Politou and
Efthimios Alepis and
Constantinos Patsakis},
title = {Immutability and Decentralized Storage: An Analysis of Emerging Threats},
journal = {{IEEE} Access},
volume = {8},
pages = {4737--4744},
year = {2020},
url = {https://doi.org/10.1109/ACCESS.2019.2962017},
doi = {10.1109/ACCESS.2019.2962017},
timestamp = {Thu, 06 Feb 2020 18:12:51 +0100},
biburl = {https://dblp.org/rec/journals/access/CasinoPAP20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/fgcs/PolitouAPCA20,
author = {Eugenia A. Politou and
Efthimios Alepis and
Constantinos Patsakis and
Fran Casino and
Mamoun Alazab},
title = {Delegated content erasure in {IPFS}},
journal = {Future Gener. Comput. Syst.},
volume = {112},
pages = {956--964},
year = {2020},
url = {https://doi.org/10.1016/j.future.2020.06.037},
doi = {10.1016/j.future.2020.06.037},
timestamp = {Tue, 18 Aug 2020 16:09:34 +0200},
biburl = {https://dblp.org/rec/journals/fgcs/PolitouAPCA20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/access/CasinoPAP20,
author = {Fran Casino and
Eugenia A. Politou and
Efthimios Alepis and
Constantinos Patsakis},
title = {Immutability and Decentralized Storage: An Analysis of Emerging Threats},
journal = {{IEEE} Access},
volume = {8},
pages = {4737--4744},
year = {2020},
url = {https://doi.org/10.1109/ACCESS.2019.2962017},
doi = {10.1109/ACCESS.2019.2962017},
timestamp = {Thu, 06 Feb 2020 00:00:00 +0100},
biburl = {https://dblp.org/rec/journals/access/CasinoPAP20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/access/ZigomitrosCSP20,
author = {Athanasios Zigomitros and
Fran Casino and
Agusti Solanas and
Constantinos Patsakis},
title = {A Survey on Privacy Properties for Data Publishing of Relational Data},
journal = {{IEEE} Access},
volume = {8},
pages = {51071--51099},
year = {2020},
url = {https://doi.org/10.1109/ACCESS.2020.2980235},
doi = {10.1109/ACCESS.2020.2980235},
timestamp = {Thu, 09 Apr 2020 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/access/ZigomitrosCSP20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/compsec/PatsakisCK20,
author = {Constantinos Patsakis and
Fran Casino and
Vasilios Katos},
title = {Encrypted and covert {DNS} queries for botnets: Challenges and countermeasures},
journal = {Comput. Secur.},
volume = {88},
year = {2020},
url = {https://doi.org/10.1016/j.cose.2019.101614},
doi = {10.1016/j.cose.2019.101614},
timestamp = {Thu, 20 Feb 2020 00:00:00 +0100},
biburl = {https://dblp.org/rec/journals/compsec/PatsakisCK20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ifip12/KostopoulosCPAG20,
author = {Alexandros Kostopoulos and
Ioannis P. Chochliouros and
Constantinos Patsakis and
Miltos Anastasiadis and
Alessandro Guarino},
editor = {Ilias Maglogiannis and
Lazaros Iliadis and
Elias Pimenidis},
title = {Protocol Deployment for Employing Honeypot-as-a-Service},
booktitle = {Artificial Intelligence Applications and Innovations. {AIAI} 2020
{IFIP} {WG} 12.5 International Workshops - {MHDW} 2020 and 5G-PINE
2020, Neos Marmaras, Greece, June 5-7, 2020, Proceedings},
series = {{IFIP} Advances in Information and Communication Technology},
volume = {585},
pages = {105--115},
publisher = {Springer},
year = {2020},
url = {https://doi.org/10.1007/978-3-030-49190-1\_10},
doi = {10.1007/978-3-030-49190-1\_10},
timestamp = {Wed, 03 Jun 2020 14:38:40 +0200},
biburl = {https://dblp.org/rec/conf/ifip12/KostopoulosCPAG20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@techreport{DBLP:journals/corr/abs-2004-08205,
author = {Nikolaos Lykousas and
Constantinos Patsakis},
title = {Large-scale analysis of grooming in modern social networks},
journal = {CoRR},
volume = {abs/2004.08205},
year = {2020},
url = {https://arxiv.org/abs/2004.08205},
archivePrefix = {arXiv},
eprint = {2004.08205},
timestamp = {Tue, 21 Apr 2020 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-2004-08205.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@techreport{DBLP:journals/corr/abs-2005-11556,
author = {Thomas K. Dasaklis and
Fran Casino and
Constantinos Patsakis},
title = {A traceability and auditing framework for electronic equipment reverse
logistics based on blockchain: the case of mobile phones},
journal = {CoRR},
volume = {abs/2005.11556},
year = {2020},
url = {https://arxiv.org/abs/2005.11556},
archivePrefix = {arXiv},
eprint = {2005.11556},
timestamp = {Thu, 28 May 2020 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-2005-11556.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@techreport{DBLP:journals/corr/abs-2005-12640,
author = {Thomas K. Dasaklis and
Fran Casino and
Constantinos Patsakis},
title = {SoK: Blockchain Solutions for Forensics},
journal = {CoRR},
volume = {abs/2005.12640},
year = {2020},
url = {https://arxiv.org/abs/2005.12640},
archivePrefix = {arXiv},
eprint = {2005.12640},
timestamp = {Thu, 28 May 2020 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-2005-12640.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/access/DeirmentzoglouP19,
author = {Evangelos Deirmentzoglou and
Georgios Papakyriakopoulos and
Constantinos Patsakis},
title = {A Survey on Long-Range Attacks for Proof of Stake Protocols},
journal = {{IEEE} Access},
volume = {7},
pages = {28712--28725},
year = {2019},
url = {https://doi.org/10.1109/ACCESS.2019.2901858},
doi = {10.1109/ACCESS.2019.2901858},
timestamp = {Fri, 12 Apr 2019 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/access/DeirmentzoglouP19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/ecra/CasinoPS19,
author = {Fran Casino and
Constantinos Patsakis and
Agusti Solanas},
title = {Privacy-preserving collaborative filtering: {A} new approach based
on variable-group-size microaggregation},
journal = {Electron. Commer. Res. Appl.},
volume = {38},
year = {2019},
url = {https://doi.org/10.1016/j.elerap.2019.100895},
doi = {10.1016/j.elerap.2019.100895},
timestamp = {Sat, 22 Feb 2020 00:00:00 +0100},
biburl = {https://dblp.org/rec/journals/ecra/CasinoPS19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/ijisec/PatsakisC19,
author = {Constantinos Patsakis and
Fran Casino},
title = {Hydras and {IPFS:} a decentralised playground for malware},
journal = {Int. J. Inf. Sec.},
volume = {18},
number = {6},
pages = {787--799},
year = {2019},
url = {https://doi.org/10.1007/s10207-019-00443-0},
doi = {10.1007/s10207-019-00443-0},
timestamp = {Wed, 25 Sep 2019 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/ijisec/PatsakisC19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/jhss/AlepisP19,
author = {Efthimios Alepis and
Constantinos Patsakis},
title = {Unravelling Security Issues of Runtime Permissions in Android},
journal = {J. Hardware and Systems Security},
volume = {3},
number = {1},
pages = {45--63},
year = {2019},
url = {https://doi.org/10.1007/s41635-018-0053-2},
doi = {10.1007/s41635-018-0053-2},
timestamp = {Mon, 16 Sep 2019 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/jhss/AlepisP19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/jhss/PatsakisDFCS19,
author = {Constantinos Patsakis and
Kleanthis Dellios and
Jos{\'{e}} Mar{\'{\i}}a de Fuentes and
Fran Casino and
Agusti Solanas},
title = {External Monitoring Changes in Vehicle Hardware Profiles: Enhancing
Automotive Cyber-Security},
journal = {J. Hardware and Systems Security},
volume = {3},
number = {3},
pages = {289--303},
year = {2019},
url = {https://doi.org/10.1007/s41635-019-00076-8},
doi = {10.1007/s41635-019-00076-8},
timestamp = {Sat, 19 Oct 2019 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/jhss/PatsakisDFCS19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/tele/CasinoDP19,
author = {Fran Casino and
Thomas K. Dasaklis and
Constantinos Patsakis},
title = {A systematic literature review of blockchain-based applications: Current
status, classification and open issues},
journal = {Telematics Informatics},
volume = {36},
pages = {55--81},
year = {2019},
url = {https://doi.org/10.1016/j.tele.2018.11.006},
doi = {10.1016/j.tele.2018.11.006},
timestamp = {Mon, 24 Feb 2020 00:00:00 +0100},
biburl = {https://dblp.org/rec/journals/tele/CasinoDP19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/tifs/CasinoCP19,
author = {Fran Casino and
Kim{-}Kwang Raymond Choo and
Constantinos Patsakis},
title = {{HEDGE:} Efficient Traffic Classification of Encrypted and Compressed
Packets},
journal = {{IEEE} Trans. Information Forensics and Security},
volume = {14},
number = {11},
pages = {2916--2926},
year = {2019},
url = {https://doi.org/10.1109/TIFS.2019.2911156},
doi = {10.1109/TIFS.2019.2911156},
timestamp = {Thu, 08 Aug 2019 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/tifs/CasinoCP19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/bpm/DasaklisCPD19,
author = {Thomas K. Dasaklis and
Fran Casino and
Costas Patsakis and
Christos Douligeris},
editor = {Chiara Di Francescomarino and
Remco M. Dijkman and
Uwe Zdun},
title = {A Framework for Supply Chain Traceability Based on Blockchain Tokens},
booktitle = {Business Process Management Workshops - {BPM} 2019 International Workshops,
Vienna, Austria, September 1-6, 2019, Revised Selected Papers},
series = {Lecture Notes in Business Information Processing},
volume = {362},
pages = {704--716},
publisher = {Springer},
year = {2019},
url = {https://doi.org/10.1007/978-3-030-37453-2\_56},
doi = {10.1007/978-3-030-37453-2\_56},
timestamp = {Tue, 07 Jan 2020 14:41:26 +0100},
biburl = {https://dblp.org/rec/conf/bpm/DasaklisCPD19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/coins/DasaklisCP19,
author = {Thomas K. Dasaklis and
Fran Casino and
Constantinos Patsakis},
editor = {Farshad Firouzi and
Krishnendu Chakrabarty and
Bahar Farahani and
Fangming Ye and
Vasilis F. Pavlidis},
title = {Defining granularity levels for supply chain traceability based on
IoT and blockchain},
booktitle = {Proceedings of the International Conference on Omni-Layer Intelligent
Systems, {COINS} 2019, Crete, Greece, May 5-7, 2019},
pages = {184--190},
publisher = {{ACM}},
year = {2019},
url = {https://doi.org/10.1145/3312614.3312652},
doi = {10.1145/3312614.3312652},
timestamp = {Mon, 08 Apr 2019 08:25:51 +0200},
biburl = {https://dblp.org/rec/conf/coins/DasaklisCP19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/icissp/TorresSAP19,
author = {Jos{\'{e}} Torres and
Sergio de los Santos and
Efthimios Alepis and
Constantinos Patsakis},
editor = {Paolo Mori and
Steven Furnell and
Olivier Camp},
title = {Behavioral Biometric Authentication in Android Unlock Patterns through
Machine Learning},
booktitle = {Proceedings of the 5th International Conference on Information Systems
Security and Privacy, {ICISSP} 2019, Prague, Czech Republic, February
23-25, 2019},
pages = {146--154},
publisher = {SciTePress},
year = {2019},
url = {https://doi.org/10.5220/0007394201460154},
doi = {10.5220/0007394201460154},
timestamp = {Wed, 05 Jun 2019 13:01:15 +0200},
biburl = {https://dblp.org/rec/conf/icissp/TorresSAP19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/icwsm/LykousasPKG19,
author = {Nikolaos Lykousas and
Constantinos Patsakis and
Andreas Kaltenbrunner and
Vicen{\c{c}} G{\'{o}}mez},
editor = {J{\"{u}}rgen Pfeffer and
Ceren Budak and
Yu{-}Ru Lin and
Fred Morstatter},
title = {Sharing Emotions at Scale: The Vent Dataset},
booktitle = {Proceedings of the Thirteenth International Conference on Web and
Social Media, {ICWSM} 2019, Munich, Germany, June 11-14, 2019},
pages = {611--619},
publisher = {{AAAI} Press},
year = {2019},
url = {https://aaai.org/ojs/index.php/ICWSM/article/view/3361},
timestamp = {Fri, 14 Jun 2019 11:27:33 +0200},
biburl = {https://dblp.org/rec/conf/icwsm/LykousasPKG19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/iisa/HoulisPA19,
author = {Charalampos Houlis and
Constantinos Patsakis and
Efthimios Alepis},
title = {Smart Android Application using Self-Destructive Identities against
Cyber Harassment},
booktitle = {10th International Conference on Information, Intelligence, Systems
and Applications, {IISA} 2019, Patras, Greece, July 15-17, 2019},
pages = {1--7},
publisher = {{IEEE}},
year = {2019},
url = {https://doi.org/10.1109/IISA.2019.8900667},
doi = {10.1109/IISA.2019.8900667},
timestamp = {Tue, 19 Nov 2019 19:24:41 +0100},
biburl = {https://dblp.org/rec/conf/iisa/HoulisPA19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/iwsec/MantasP19,
author = {Evangelos Mantas and
Constantinos Patsakis},
editor = {Nuttapong Attrapadung and
Takeshi Yagi},
title = {{GRYPHON:} Drone Forensics in Dataflash and Telemetry Logs},
booktitle = {Advances in Information and Computer Security - 14th International
Workshop on Security, {IWSEC} 2019, Tokyo, Japan, August 28-30, 2019,
Proceedings},
series = {Lecture Notes in Computer Science},
volume = {11689},
pages = {377--390},
publisher = {Springer},
year = {2019},
url = {https://doi.org/10.1007/978-3-030-26834-3\_22},
doi = {10.1007/978-3-030-26834-3\_22},
timestamp = {Wed, 07 Aug 2019 14:48:42 +0200},
biburl = {https://dblp.org/rec/conf/iwsec/MantasP19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/seeda/CasinoDP19,
author = {Fran Casino and
Thomas K. Dasaklis and
Constantinos Patsakis},
title = {Enhanced Vendor-managed Inventory through Blockchain},
booktitle = {4th South-East Europe Design Automation, Computer Engineering, Computer
Networks and Social Media Conference, {SEEDA-CECNSM} 2019, Piraeus,
Greece, September 20-22, 2019},
pages = {1--8},
publisher = {{IEEE}},
year = {2019},
url = {https://doi.org/10.1109/SEEDA-CECNSM.2019.8908481},
doi = {10.1109/SEEDA-CECNSM.2019.8908481},
timestamp = {Thu, 28 Nov 2019 14:43:34 +0100},
biburl = {https://dblp.org/rec/conf/seeda/CasinoDP19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@techreport{DBLP:journals/corr/abs-1901-04856,
author = {Nikolaos Lykousas and
Constantinos Patsakis and
Andreas Kaltenbrunner and
Vicen{\c{c}} G{\'{o}}mez},
title = {Sharing emotions at scale: The Vent dataset},
journal = {CoRR},
volume = {abs/1901.04856},
year = {2019},
url = {http://arxiv.org/abs/1901.04856},
archivePrefix = {arXiv},
eprint = {1901.04856},
timestamp = {Fri, 01 Feb 2019 00:00:00 +0100},
biburl = {https://dblp.org/rec/journals/corr/abs-1901-04856.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@techreport{DBLP:journals/corr/abs-1905-11873,
author = {Fran Casino and
Kim{-}Kwang Raymond Choo and
Constantinos Patsakis},
title = {{HEDGE:} Efficient Traffic Classification of Encrypted and Compressed
Packets},
journal = {CoRR},
volume = {abs/1905.11873},
year = {2019},
url = {http://arxiv.org/abs/1905.11873},
archivePrefix = {arXiv},
eprint = {1905.11873},
timestamp = {Mon, 03 Jun 2019 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1905-11873.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@techreport{DBLP:journals/corr/abs-1905-11880,
author = {Constantinos Patsakis and
Fran Casino},
title = {Hydras and {IPFS:} {A} Decentralised Playground for Malware},
journal = {CoRR},
volume = {abs/1905.11880},
year = {2019},
url = {http://arxiv.org/abs/1905.11880},
archivePrefix = {arXiv},
eprint = {1905.11880},
timestamp = {Mon, 03 Jun 2019 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1905-11880.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@techreport{DBLP:journals/corr/abs-1907-07099,
author = {Eugenia A. Politou and
Fran Casino and
Efthimios Alepis and
Constantinos Patsakis},
title = {Blockchain Mutability: Challenges and Proposed Solutions},
journal = {CoRR},
volume = {abs/1907.07099},
year = {2019},
url = {http://arxiv.org/abs/1907.07099},
archivePrefix = {arXiv},
eprint = {1907.07099},
timestamp = {Tue, 23 Jul 2019 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1907-07099.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@techreport{DBLP:journals/corr/abs-1909-07099,
author = {Constantinos Patsakis and
Fran Casino and
Vasilios Katos},
title = {Encrypted and Covert {DNS} Queries for Botnets: Challenges and Countermeasures},
journal = {CoRR},
volume = {abs/1909.07099},
year = {2019},
url = {http://arxiv.org/abs/1909.07099},
archivePrefix = {arXiv},
eprint = {1909.07099},
timestamp = {Mon, 23 Sep 2019 01:00:00 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1909-07099.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@techreport{DBLP:journals/corr/abs-1912-03552,
author = {Constantinos Patsakis and
Fran Casino and
Nikolaos Lykousas and
Vasilios Katos},
title = {Unravelling Ariadne's Thread: Exploring the Threats of Decentralised
{DNS}},
journal = {CoRR},
volume = {abs/1912.03552},
year = {2019},
url = {http://arxiv.org/abs/1912.03552},
archivePrefix = {arXiv},
eprint = {1912.03552},
timestamp = {Thu, 02 Jan 2020 00:00:00 +0100},
biburl = {https://dblp.org/rec/journals/corr/abs-1912-03552.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@techreport{DBLP:journals/corr/abs-1912-05849,
author = {Constantinos Patsakis and
Fran Casino},
title = {Exploiting Statistical and Structural Features for the Detection of
Domain Generation Algorithms},
journal = {CoRR},
volume = {abs/1912.05849},
year = {2019},
url = {http://arxiv.org/abs/1912.05849},
archivePrefix = {arXiv},
eprint = {1912.05849},
timestamp = {Thu, 02 Jan 2020 00:00:00 +0100},
biburl = {https://dblp.org/rec/journals/corr/abs-1912-05849.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/access/PapageorgiouSPA18,
author = {Achilleas Papageorgiou and
Michael Strigkos and
Eugenia A. Politou and
Efthimios Alepis and
Agusti Solanas and
Constantinos Patsakis},
title = {Security and Privacy Analysis of Mobile Health Applications: The Alarming
State of Practice},
journal = {{IEEE} Access},
volume = {6},
pages = {9390--9403},
year = {2018},
url = {https://doi.org/10.1109/ACCESS.2018.2799522},
doi = {10.1109/ACCESS.2018.2799522},
timestamp = {Fri, 27 Mar 2020 00:00:00 +0100},
biburl = {https://dblp.org/rec/journals/access/PapageorgiouSPA18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}