-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1049 lines (730 loc) · 39.3 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>
<!--[if lt IE 8 ]><html class="no-js ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="no-js ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 8)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Dott. Pietro Biondi, Ph.D. - Computer Science - CyberSecurity</title>
<meta name="description" content="Prof. Pietro Biondi- Master's degree in computer science (University of Catania).">
<meta name="keywords" content="pietro biondi, Ph.D.,computer science, cybersecurity, unict, DMI, Università di Catania, prof, dottor" />
<meta name="author" content="Pietro Biondi">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<!-- Indexing -->
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow" />
<link rel="canonical" href="https://pietrobiondi.github.io/"/>
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://pietrobiondi.github.io/">
<meta property="og:image" content="https://pietrobiondi.github.io/images/profile.jpeg">
<meta property="og:title" content="Dott. Pietro Biondi, Ph.D. | UNICT | Computer Science | Cybersecurity | website">
<meta property="og:description" content="Dott. Pietro Biondi, Ph.D. . Passionate about computer science and cybersecurity.">
<meta property="og:site_name" content="https://pietrobiondi.github.io/">
<meta property="og:locale" content="it_IT">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Dott. Pietro Biondi,Ph.D. | UNICT | Computer Science | Cybersecurity | website" />
<meta name="twitter:image" content="https://pietrobiondi.github.io/images/profile.jpeg">
<meta name="twitter:site" content="https://pietrobiondi.github.io/">
<meta name="twitter:description" content="Dott. Pietro Biondi,Ph.D. . Passionate about computer science and cybersecurity."/>
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/media-queries.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons/css/academicons.min.css" SameSite=None; Secure>
<!-- Script
================================================== -->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="images/favicon.ico" >
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R7RNM34MVX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R7RNM34MVX');
</script>
</head>
<!-- needed for FB Share button -->
<div id="fb-root"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.3"></script>
<style>
#more {display: none;}
#more_pub {display: none;}
#more_media {display: none;}
</style>
<body>
<!-- Header
================================================== -->
<header id="home">
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation">Show navigation</a>
<a class="mobile-btn" href="#" title="Hide navigation">Hide navigation</a>
<ul id="nav" class="nav">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#resume" title="resume">Resume</a></li>
<li><a class="smoothscroll" href="#footer" title="contact">Contact</a></li>
</ul> <!-- end #nav -->
</nav> <!-- end #nav-wrap -->
<div class="row banner">
<div class="banner-text">
<!-- class="responsive-headline" per h1-->
<h1>Pietro Biondi</h1>
<h3>I have a Ph.D. and a Master's Degree in<span> Network and Security Systems</span> obtained at <span>University of Catania (UNICT).</span>
Let's <a class="smoothscroll" href="#about" title="about">start scrolling</a>
and learn more <a class="smoothscroll" href="#about" title="about">about me.</a></h3>
<ul class="social">
<li><a href="https://twitter.com/Pietro_Biondi94" title="twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/pietro-biondi/" title="linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://github.com/pietrobiondi" title="github"><i class="fa fa-github"></i></a></li>
<li><a href="https://scholar.google.com/citations?hl=it&user=hzxroXwAAAAJ" title="google scholar"><i class="ai ai-google-scholar ai-1x" style="color: white;"></i></a></li>
<li><a href="https://dblp.uni-trier.de/pers/hd/b/Biondi:Pietro" title="dblp"><i class="ai ai-dblp ai-1x" style="color: white;"></i></a></li>
<li><a href="https://www.researchgate.net/profile/Pietro_Biondi" title="researchgate"><i class="ai ai-researchgate ai-1x" style="color: white;"></i></a></li>
<li><a href="https://orcid.org/0000-0003-1795-2836" title="orcid"><i class="ai ai-orcid ai-1x" style="color: white;"></i></a></li>
<li><a href="mailto:[email protected]" title="mail"><i class="fa fa-envelope"></i></a></li>
</ul>
</div>
</div>
<p class="scrolldown">
<a class="smoothscroll" href="#about" title="about"><i class="icon-down-circle"></i></a>
</p>
</header> <!-- Header End -->
<!-- About Section -->
<section id="about">
<div class="row">
<div class="three columns">
<img class="profile-pic" src="images/profile.jpeg" alt="PB_Profile" />
</div>
<div class="nine columns main-col">
<h2>About Me</h2>
<p>
Born in Catania (CT) in 1994. Passionate about computer science and cybersecurity.<br>
In 2014 I chose to enroll at the faculty of computer science at the University of Catania.<br>
In 2017 I graduated with a Bachelor's degree in Computer Science.<br>
In 2019 I graduated with a Master's Degree in Computer Science with Curriculum: "Network and Security Systems" 110/110 cum laude.<br>
In 2023, I obtained a PhD degree in computer science.<br>
I have good knowledge of languages: Python, C, C++, Ruby, PHP, JavaScript, SQL, Java and HTML.
</p>
<!--
<div class="row">
<div class="columns contact-details">
<h2>Contact Details</h2>
<p class="address">
<span>Jonathan Doe</span><br>
<span>1600 Amphitheatre Parkway<br>
Mountain View, CA 94043 US
</span><br>
<span>(123)456-7890</span><br>
<span>[email protected]</span>
</p>
</div>
<div class="columns download">
<p>
<a href="#" class="button"><i class="fa fa-download"></i>Download Resume</a>
</p>
</div>
</div>
-->
</div> <!-- end .main-col -->
</div>
</section> <!-- About Section End-->
<!-- Resume Section
================================================== -->
<section id="resume">
<!-- Education -->
<div class="row education">
<div class="three columns header-col">
<h2><span>Education</span></h2>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Università di Catania</h3>
<p class="info">Ph.D (XXXV Cycle) <span>•</span> Grant UNICT <span>•</span> <em class="date">31/10/2019-13/03/2023</em>
<br>
Thesis: Automotive 2.0: Security, privacy and safety in today’s automotive domain
<br>
Supervisor: Prof. Giampaolo Bella
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Università di Catania</h3>
<p class="info">Master's degree. Network and Security Systems - 110/110 cum laude <span>•</span> <em class="date">2018-26/07/2019</em></p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>International Summer School on Forensics (IFOSS2022)</h3>
<p class="info"><a href="http://www.ifoss.it/" title="IFOSS2022">(IFOSS 2022)</a>
<span>•</span> <em class="date">July 2022</em>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>CISPA Helmholtz Center for Information Security</h3>
<p class="info">"Security Convention for Young Researchers (SeCon)", <a href="https://cispa.de/en/news-and-events/events-archive/2020/digital-cispa-summer-school-2020" title="SECON2020">(SECON 2020)</a>
<span>•</span> <em class="date">August 2020</em>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>University Residential Center of Bertinoro</h3>
<p class="info">19th International School on Foundations of Security Analysis and Design <a href="http://www.sti.uniurb.it/events/fosad19/" title="FOSAD 2019">(FOSAD 2019)</a>
<span>•</span> <em class="date">August 2019</em>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Sheffield Hallam University</h3>
<p class="info">Erasmus+
<span>•</span> <em class="date">2018-2019</em>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>University of Graz</h3>
<p class="info">European Summer School on Information Science <a href="https://informationswissenschaft-wirtschaftsinformatik.uni-graz.at/de/essis-2018/" title="ESSIS 2018">(ESSIS 2018)</a>
<span>•</span> <em class="date">July 2018</em>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Università di Catania</h3>
<p class="info">Bachelor's degree. Computer science <span>•</span> <em class="date">2014 - 29/09/2017</em></p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Education -->
<!-- Work -->
<div class="row work">
<div class="three columns header-col">
<h2><span>Work</span></h2>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Ministero della Salute.</h3>
<p class="info">MdS<span>•</span> <em class="date">February 2023 - </em></p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>High school Professor.</h3>
<p class="info">MIUR <span>•</span> <em class="date">September 2022 - June 2023</em></p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>PON project external expert.</h3>
<p class="info">IISS "Ven. Ignazio Capizzi" Bronte <span>•</span> <em class="date">May 2022 - June 2022</em></p>
<p>
Course on: "Internet and safe surfing on the net". <br> Project: "Apprendimento e socialità" Module "Sperimentando" - 10.2.2A-FSEPON-SI-2021-403 Protagonisti..." CUP H93D21000720006<br>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Internship Functional Safety.</h3>
<p class="info">Huawei - Evidence <span>•</span> <em class="date">April 2021 - October 2021 - Smart working</em></p>
<p>
Research and development: "Functional Safety".<br>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Researcher Cybersecurity & Privacy.</h3>
<p class="info">National Research Council (IIT - CNR)<span>•</span> <em class="date">February 2018 - November 2019 - Pisa, Italia</em></p>
<p>
Research and development: "Automotive Security".<br>
Project managers: <a href="https://www.iit.cnr.it/gianpiero.costantino/" title="Gianpiero Costantino">Dr. Gianpiero Costantino</a> (IIT - CNR) , <a href="http://www.iit.cnr.it/ilaria.matteucci" title="Ilaria Matteucci">Dott.ssa Ilaria Matteucci</a> (IIT - CNR)
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Cloud computing technician, cloud security</h3>
<p class="info">National Institute of Nuclear Physics (INFN)<span>•</span> <em class="date">June 2017 - July 2017 - Catania, Italia</em></p>
<p>Internship: cloud computing (OpenStack), networking and security</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Organizational secretariat</h3>
<p class="info">Google Developer Group Catania<span>•</span> <em class="date">December 2016 - July 2017 - Catania, Italia</em></p>
<p>Mailing, contacts, and relationship with event service providers.</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Work -->
<!-- PUBLICATIONS -->
<div class="row work">
<div class="three columns header-col">
<h2><span>Publications</span></h2>
</div>
<div class="nine columns main-col">
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>PETIoT: PEnetration Testing the Internet of Things</h3>
<p class="info">Giampaolo Bella, Pietro Biondi, Stefano Bognanni, Sergio Esposito
<br>
<em class="date">Elsevier Journal Internet of Things</em>
</p>
<a href="https://doi.org/10.1016/j.iot.2023.100707" title="DOI">(doi:10.1016/j.iot.2023.100707)</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>Designing and implementing an AUTOSAR-based Basic Software Module for enhanced security</h3>
<p class="info">Giampaolo Bella, Pietro Biondi, Gianpiero Costantino, Ilaria Matteucci
<br>
<em class="date">Elsevier Journal Computer Networks</em>
</p>
<a href="https://doi.org/10.1016/j.comnet.2022.109377" title="DOI">(doi:10.1016/j.comnet.2022.109377)</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>A double assessment of privacy risks aboard top-selling cars</h3>
<p class="info">Giampaolo Bella, Pietro Biondi, Giuseppe Tudisco
<br>
<em class="date">Springer Journal Automotive Innovation</em>
</p>
<a href="#" title="DOI">(doi:10.1007/s42154-022-00203-2)</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>Multi-service threats: Attacking and protecting network printers and VoIP phones alike</h3>
<p class="info">Giampaolo Bella, Pietro Biondi, Stefano Bognanni
<br>
<em class="date">Elsevier Journal Internet of Things</em>
</p>
<a href="https://doi.org/10.1016/j.iot.2022.100507" title="DOI">(doi:10.1016/j.iot.2022.100507)</a> --- <a href="./bibtex/journalElsevierIoTbibtex.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>Papyrus-Based Safety Analysis Automatization</h3>
<p class="info">Pietro Biondi, Fabrizio Tronci, Giampaolo Bella
<br>
<em class="date">In International Conference on System Reliability and Science (ICSRS 2022)</em>
</p>
<a href="https://doi.org/10.1109/ICSRS56243.2022.10067259" title="DOI">(doi:10.1109/ICSRS56243.2022.10067259)</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>Vulnerability Assessment and Penetration Testing on IP camera</h3>
<p class="info">Pietro Biondi, Stefano Bognanni, Giampaolo Bella
<br>
<em class="date">In International Conference on Internet of Things: Systems, Management and Security (IOTSMS 2021)</em>
</p>
Pages 136-143 -- <a href="https://doi.org/10.1109/IOTSMS53705.2021.9704890" title="DOI">(doi:10.1109/IOTSMS53705.2021.9704890)</a> --- <a href="./bibtex/IOTSMS21bibtex.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>Privacy and modern cars through a dual lens</h3>
<p class="info">Giampaolo Bella, Pietro Biondi, Marco De Vincenzi and Giuseppe Tudisco
<br>
<em class="date">In International Workshop on Safety, securiTy, and pRivacy In automotiVe systEms(STRIVE21)</em>
</p>
Pages 136-143 -- <a href="https://doi.ieeecomputersociety.org/10.1109/EuroSPW54576.2021.00022" title="DOI">(doi:10.1109/EuroSPW54576.2021.00022)</a> --- <a href="./bibtex/STRIVE21bibtex.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>Car drivers’ privacy concerns and trust perceptions</h3>
<p class="info">Giampaolo Bella, Pietro Biondi and Giuseppe Tudisco
<br>
<em class="date">In International Conference on Trust, Privacy and Security in Digital Business (TrustBUS 2021)</em>
</p>
Pages 143-154 -- <a href="https://doi.org/10.1007/978-3-030-86586-3_10" title="DOI">(doi:10.1007/978-3-030-86586-3_10)</a> --- <a href="./bibtex/TRUSTBUS21bibtex.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>Towards the COSCA framework for "COnseptualing Secure CArs"</h3>
<p class="info">Giampaolo Bella, Pietro Biondi, Gianpiero Costantino, Ilaria Matteucci and Mirco Marchetti
<br>
<em class="date">In Open Identity Summit 2021 (OID2021)</em>
</p>
Pages 37-46 -- <a href="https://dl.gi.de/handle/20.500.12116/36500" title="DOI">(doi:20.500.12116/36500)</a> --- <a href="./bibtex/OID21bibtex.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>CINNAMON: A Module for AUTOSAR Secure Onboard Communication</h3>
<p class="info">Giampaolo Bella, Pietro Biondi, Gianpiero Costantino, Ilaria Matteucci
<br>
<em class="date">In 16th European Dependable Computing Conference (EDCC2020)</em>
</p>
Pages 103-110 -- <a href="https://ieeexplore.ieee.org/document/9237003" title="DOI">(doi:10.1109/EDCC51268.2020.00026)</a> --- <a href="./bibtex/edcc2020bibtex.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>VoIP Can Still Be Exploited-Badly</h3>
<p class="info">Pietro Biondi, Stefano Bognanni, Giampaolo Bella
<br>
<em class="date">In Fifth International Conference on Fog and Mobile Edge Computing (FMEC 2020)</em>
</p>
Pages 237-243 -- <a href="https://doi.org/10.1109/FMEC49853.2020.9144875" title="DOI">(doi:10.1109/FMEC49853.2020.9144875)</a> --- <a href="./bibtex/10.1109FMEC49853.20209144875.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>You overtrust your printer</h3>
<p class="info">Giampaolo Bella, Pietro Biondi
<br>
<em class="date">In 38th International Conference on Computer Safety, Reliability, and Security (SAFECOMP 2019)</em>
</p>
Lecture Notes in Computer Science book series (LNCS, volume 11699). Pages 264-274 -- <a href="https://doi.org/10.1007/978-3-030-26250-1_21" title="DOI">(doi:10.1007/978-3-030-26250-1_21)</a> --- <a href="./bibtex/10.1007_978-3-030-26250-1_21.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>TOUCAN A proTocol tO secUre Controller Area Network</h3>
<p class="info">Giampaolo Bella, Pietro Biondi, Gianpiero Costantino, Ilaria Matteucci
<br>
<em class="date">In ACM Workshop on Automotive Cybersecurity (AutoSec 2019)</em>
</p>
Pages 3-8 -- <a href="https://doi.org/10.1145/3309171.3309175" title="DOI">(doi:10.1145/3309171.3309175)</a> --- <a href="./bibtex/Bella-2019-TPS-3309171-3309175.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div style="text-align: center;">
<span id="dots_pub">...</span>
</div>
<span id="more_pub"> <!-- SHOW HIDE ELEMENTS -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>Implementing CAN bus security by TOUCAN</h3>
<p class="info">Pietro Biondi, Giampaolo Bella, Gianpiero Costantino, Ilaria Matteucci
<br>
<em class="date">In ACM Conference on Mobile Ad Hoc Networking and Computing (MobiHoc 2019)</em>
</p>
Pages 399-400 -- <a href="https://doi.org/10.1145/3323679.3326614" title="DOI">(doi:10.1145/3323679.3326614)</a> --- <a href="./bibtex/Biondi-2019-IBS-3323679-3326614.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>Poster: Are you secure in your car?</h3>
<p class="info">Giampaolo Bella, Pietro Biondi, Gianpiero Costantino, Ilaria Matteucci
<br>
<em class="date">In ACM Conference on Security and Privacy in Wireless and Mobile Networks (WiSec 2019)</em>
</p>
Pages 308-309 -- <a href="https://doi.org/10.1145/3317549.3326305" title="DOI">(doi:10.1145/3317549.3326305)</a> --- <a href="./bibtex/Bella-2019-YSY-3317549-3326305.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>A MapReduce based tool for the analysis and discovery of novel therapeutic targets</h3>
<p class="info">Giuseppe Parasiliti, Marzio Pennisi, Pietro Biondi, Giuseppe Sgroi, Giulia Russo, Christian Napoli, Francesco Pappalardo
<br>
<em class="date">In 27th Euromicro International Conference on Parallel, Distributed and Network-Based Processing (PDP 2019)</em>
</p>
Pages 323-328 -- <a href="http://dx.doi.org/10.1109/EMPDP.2019.8671609" title="DOI">(doi:10.1109/EMPDP.2019.8671609)</a>
--- <a href="./bibtex/pdpmapreduce.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
<div class="row item"> <!-- item start -->
<div class="twelve columns">
<h3>Towards an Integrated Penetration Testing Environment for the CAN Protocol</h3>
<p class="info">Giampaolo Bella, Pietro Biondi
<br>
<em class="date">In 37th International Conference on Computer Safety, Reliability, and Security (SAFECOMP 2018)</em>
</p>
Lecture Notes in Computer Science, volume 11094 LNCS, pages 344-352 -- <a href="https://doi.org/10.1007/978-3-319-99229-7_29" title="DOI">(doi:10.1007/978-3-319-99229-7_29)</a> --- <a href="./bibtex/10.1007_978-3-319-99229-7_29.bib" title="BibTeX">BibTeX</a>
<p></p>
</div>
</div> <!-- item end -->
</span>
<br>
<div style="text-align: center;">
<button onclick="showhidelist_pub()" id="myBtn_pub">Read more</button>
</div>
<br>
</div> <!-- main-col end -->
</div> <!-- End Work -->
<!-- Projects -->
<div class="row skill">
<div class="three columns header-col">
<h2><span>Projects</span></h2>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h4>COnceptualising Secure CArs <a href="https://cosca-project.dmi.unict.it/" title="COSCA">(COSCA)</a></h4>
<p>
H2020 N 825618 – NGI_TRUST 2nd Open Call – 2019002.
European project relating to security, safety, privacy and trust in the automotive field.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h4>CyberChallenge.IT 2020 & 2021 & 2022 <a href="https://cyberchallenge.it/" title="cyberchallenge">(CCIT2020/21/22)</a></h4>
<p>
Organizer of CCIT2020/2021/2022, a cybersecurity training project for high school and university students.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h4>Thesis: "Study, design and implementation of a security protocol on CAN bus"</h4>
<b>Supervisor: </b><a href="https://www.dmi.unict.it/giamp/" title="Giampaolo Bella">Prof. Giampaolo Bella</a> (UNICT)<br>
<b>Advisors: </b><a href="https://www.iit.cnr.it/gianpiero.costantino/" title="Gianpiero Costantino">Dr. Gianpiero Costantino</a> (IIT - CNR) , <a href="http://www.iit.cnr.it/ilaria.matteucci" title="Ilaria Matteucci">Dott.ssa Ilaria Matteucci</a> (IIT - CNR)
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h4>Thesis: "HTTP Strict Transport Security attacks on modern browsers: a comparative analysis"</h4>
<p>Study of HTTP Strict Transport Security (HSTS), a policy designed to counter attacks called SSLStrip. <br>
<b>Supervisor: </b><a href="https://www.dmi.unict.it/giamp/" title="Giampaolo Bella">Prof. Giampaolo Bella</a> (UNICT)
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h4>CAN Flood post exploitation for CAN on Metasploit-Framework</h4>
<p>
CAN Flood is a post-exploitation module that floods a CAN interface for a number of rounds. Both the interface and the number of rounds are to be provided as inputs. An example list of frames also is part of the inputs, and sources the flooding at each round. The module therefore is general as it is parametric in the frame list.<br>
<a href="https://github.com/rapid7/metasploit-framework/pull/11595" title="Crazy Tachymeter">Github-Metasploit</a>
</p>
</div>
</div> <!-- item end -->
<div style="text-align: center;">
<span id="dots">...</span>
</div>
<span id="more"> <!-- SHOW HIDE ELEMENTS -->
<div class="row item">
<div class="twelve columns">
<h4>Crazy Tachymeter</h4>
<p>
Crazy-Tachymeter is an exploit that allows you to flood the CAN-Bus with frames of the ECU mapping file.<br>
<a href="https://github.com/pietrobiondi/Crazy-Tachymeter" title="Crazy Tachymeter">Github</a>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h4>Distributed dictionary attack</h4>
<p>
Java program that implements a vulnerable server with an incremental ban system. Within the project there are clients which communicate through the RabbitMQ middleware.<br>
<a href="https://github.com/pietrobiondi/Distributed-dictionary-attack" title="Distributed dictionary attack">Github</a>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h4>Capture The Flag - UNICT 2017</h4>
<p>
Capture The Flag is a computer security competition (UNICT) where teams must attack enemy machines with exploits and defend their own by inserting patches.<br>
<a href="https://www.dmi.unict.it/giamp/ctf/17edition" title="CTF - Website 2017 UNICT">Website</a> -
<a href="https://github.com/pietrobiondi/CTF-Website" title="CTF - Project 2017 UNICT">Github</a>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h4>Food-Classification</h4>
<p>
This Social Media Management project (UNICT) allow to classificate picture between food and non-food.
<a href="https://github.com/Tkd-Alex/Food-Classification" title="Food-Classification">Github</a>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h4>Linear Regression Tool</h4>
<p>
Linear regression tool with some statistics parameters.
<a href="https://github.com/pietrobiondi/Linear-Regression-Tool" title="Linear Regression Tool">Github</a>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h4>Zeppelin-Slim-GDGCatania</h4>
<p>The Slim Version of Project Zeppelin is a single page edited for GDGCatania. The website contains all information that we need in a small version.
<a href="https://www.gdgcatania.org" title="GDG-Website">Website</a> -
<a href="https://github.com/GDGCatania/Zeppelin-Slim-GDGCatania" title="GDG-Project">Github</a>
</p>
</div>
</div> <!-- item end -->
</span>
<br>
<div style="text-align: center;">
<button onclick="showhidelist()" id="myBtn">Read more</button>
</div>
<br>
</div> <!-- main-col end -->
</div> <!-- End Projects -->
<!-- Talk - Speaker -->
<div class="row skill">
<div class="three columns header-col">
<h2><span>Talks</span></h2>
</div>
<div class="nine columns main-col">
<div class="row item"> <!-- start row -->
<div class="four columns">
<h3>Hardening Six "The AvA event"</h3>
<p>"Printjack and Phonejack attacks". (25 May 2022)
<a href="https://www.dmi.unict.it/giamp/hardening/?link=2022%20Edition" title="Hardening22">Hardening</a>
</p>
</div>
<div class="four columns">
<h3>NGIoT e-workshop on ETSI IoT Standard</h3>
<p>Security of modern vehicles in the IoT world. (24 May 2019)
<a href="https://www.ngiot.eu/event/ngiot-e-workshop-on-etsi-iot-standard/" title="NGIoT">NGIoT</a>
</p>
</div>
<div class="four columns">
<h3>GNU/Linux Day 2019</h3>
<p>An overview at Metasploit and its application: Automotive Crazy-Tachymeter. (23 Nov 2019)
<a href="https://linuxdaycatania.info/" title="linuxday19">Linux Day</a>
</p>
</div>
</div> <!-- end row -->
<div class="row item"> <!-- start row -->
<div class="four columns">
<h3>WSF19 - The 2019 Workshop on Security Frameworks</h3>
<p>Metasploiting 4U. (4 Dec 2019)
<a href="https://www.dmi.unict.it/giamp/wsf/19edition.php" title="WSF19">WSF19</a>
</p>
</div>
</div><!-- end row -->
</div><!-- main-col end -->
</div> <!-- End Talk - Speaker -->
<!-- Media - Speaker -->
<div class="row skill">
<div class="three columns header-col">
<h2><span>Media</span></h2>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="four columns">
<a href="https://www.rainews.it/tgr/sicilia/video/2022/06/sic-hacker-alexa-2d456ce2-89d8-4579-b1da-1cda210751b9.html" title="rai-ava">
<h3>Hacker all'attacco di Alexa, la scoperta a Catania</h3></a>
</div>
<div class="four columns">
<a href="https://www.rainews.it/tgr/sicilia/video/2022/03/sic-hacker-catania-universita-cyber-sicurezza-5c1af35a-06d9-4cb1-8175-ca66bd069d01.html" title="rai-printjack">
<h3>Catania, il team che studia gli attacchi hacker e come difendersi</h3></a>
</div>
<div class="four columns">
<a href="https://www.techradar.com/news/mischievous-hackers-could-use-a-simple-trick-to-send-printers-berserk" title="printjack-1">
<h3>Mischievous hackers could use a simple trick to send printers berserk</h3></a>
</div>
</div> <!-- item end -->
<br>
<div style="text-align: center;">
<span id="dots_media">...</span>
</div>
<span id="more_media"> <!-- SHOW HIDE ELEMENTS -->
<div class="row item">
<div class="four columns">
<a href="https://www.bleepingcomputer.com/news/security/researchers-warn-of-severe-risks-from-printjack-printer-attacks/" title="printjack-2">
<h3>Researchers warn of severe risks from "Printjack" printer attacks</h3></a>
</div>
<div class="four columns">
<a href="https://heimdalsecurity.com/blog/printjack-printer-attacks-pose-a-serious-threat-researchers-warn/" title="printjack-3">
<h3>"Printjack" Printer Attacks Pose a Serious Threat, Researchers Warn</h3></a>
</div>
<div class="four columns">
<a href="http://www.bollettino.unict.it/articoli/cybersecurity-rischio-la-sicurezza-dei-dati-veicolati-tramite-le-stampanti" title="printjack-4">
<h3>Cybersecurity, a rischio la sicurezza dei dati veicolati tramite le stampanti</h3></a>
</div>
</div> <!-- item end -->
<br>
<div class="row item">
<div class="six columns">
<a href="http://www.bollettino.unict.it/comunicati_stampa/cyberchallenge-l%E2%80%998-giugno-la-finale-locale-la-scelta-del-team-unict-che-affronter%C3%A0" title="ccit-2020">
<h3>Cyberchallenge, l'8 giugno la finale locale per la scelta del team Unict che affronterà la fase finale della gara di sicurezza</h3></a>
</div>
<div class="six columns">
<a href="http://www.bollettino.unict.it/articoli/eyad-issa-e-simone-benedetto-conquistano-l%E2%80%99edizione-etnea-della-cyberchallenge" title="ccit-2021">
<h3>Eyad Issa e Simone Benedetto conquistano l'edizione etnea della Cyberchallenge</h3></a>
</div>
</div> <!-- item end -->
</span>
<br>
<div style="text-align: center;">
<button onclick="showhidelist_media()" id="myBtn_media">Read more</button>
</div>
<br>
</div><!-- main-col end -->
</div> <!-- End MEDIA - Speaker -->
</section> <!-- Resume Section End-->