-
Notifications
You must be signed in to change notification settings - Fork 0
/
pbs.bck
920 lines (916 loc) · 38.8 KB
/
pbs.bck
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Publicações</title>
<link href="css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* Container on the bottom of topbar. */
}
</style>
<link href="css/bootstrap-responsive.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h2>Periódicos</h2>
<h3>2015</h3>
<p>
<TABLE cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=7106364&url=http%3A%2F%2Fieeexplore.ieee.org%2Fxpls%2Fabs_all.jsp%3Farnumber%3D7106364"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Augusto Fernando, Menezes Gustavo, Marcondes Pablo, Fernando Pereira, Chi Hao, Marcos Jose, and Barbosa Leonardo. <b>Defending Internet of Things against Exploits.</b> <em>Revista IEEE América Latina</em>, vol. 13, issue 4, pages 1112-1119, 2015. ISSN 15480992.
<a href="#" type="button" class="btn-toggle" data-element="#pt1">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt1" style="display: none;">
@article{Teixeira15,<br>
author = {Fernando Teixeira and Gustavo Vieira and Pablo Fonseca and Fernando Pereira and Hao Wong and Marcos José Nogueira and Leonardo Oliveira},<br>
journal = {IEEE Latin America Transactions},<br>
title = {Defending Internet of Things against Exploits},<br>
year = {2015},<br>
pages = {1112-1119},<br>
publisher = {IEEE}
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.revistaieeela.pea.usp.br/issues/vol13issue3March2015/13TLA3_46LemosMaiaNeto.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Neto Antonio, Melo Leandro, Neto Omar, Pereira Fernando, and Barbosa Leonardo. <b>Protecting Programs Against Memory Violation In Hardware.</b> <em>Revista IEEE América Latina</em>, vol. 13, issue 3, pages 885-891, 2015. ISSN 15480992.
<a href="#" type="button" class="btn-toggle" data-element="#pt2">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt2" style="display: none;">
@article{Lemos15,<br>
author = {Antonio Neto and Leandro Melo and Omar Neto and Fernando Pereira and Leonardo Barbosa},<br>
journal = {IEEE Latin America Transactions},<br>
title = {Protecting Programs Against Memory Violation In Hardware},<br>
year = {2015},<br>
pages = {885-891},<br>
publisher = {IEEE}
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.ewh.ieee.org/reg/9/etrans/ieee/issues/vol13/vol13issue04April2015/13TLA4_28ZafraSaggioro.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Saggioro Felipe, Paisante Vitor, Rodrigues Raphel, Barbosa Leonardo, and Pereira Fernando. <b>Crosschecking Distributed Data to Detect Integer Overflow.</b> <em>Revista IEEE América Latina</em>, vol. 13, issue 4, pages 1083-1089, 2015. ISSN 15480992.
<a href="#" type="button" class="btn-toggle" data-element="#pt3">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt3" style="display: none;">
@article{Lemos15,<br>
author = {Felipe Saggioro and Vitor Paisante and Raphel Rodrigues and Leonardo Barbosa and Fernando Pereira},<br>
journal = {IEEE Latin America Transactions},<br>
title = {Crosschecking Distributed Data to Detect Integer Overflow},<br>
year = {2015},<br>
pages = {1083-1089},<br>
publisher = {IEEE}
}
</div>
</TD>
</tr>
</table>
<h3>2004</h3>
<p>
<TABLE cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://compilers.cs.ucla.edu/fernando/publications/journals/Inatel2004.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Fernando Pereira, Marco Valente, Roberto Bigonha, and Mariza Bigonha. <b>Chamada Remota de Métodos na Plataforma J2ME/CLDC.</b> <em>Telecomunicações (Santa Rita do Sapucaí)</em>, vol. 7, pages 21-31, 2004. ISSN 15162338.
<a href="#" type="button" class="btn-toggle" data-element="#pt4">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt4" style="display: none;">
@InProceedings{Pereira03b,<br>
author = "Fernando Pereira and
Marco Valente and
Roberto Bigonha and
Mariza Bigonha",<br>
title = "Chamada Remota de M\'{e}todos na Plataforma {J2ME/CLDC}",<br>
booktitle = "{WCSF} - 5th Brazilian Workshop on Wireless Communication and
Mobile Computation",<br>
publisher = "SBC",<br>
pages = "157 - 168",<br>
year = "2003"<br>
}
</div>
</TD>
</tr>
</table>
<h2>Conferências</h1>
<h3>2015</h3>
<p>
<TABLE cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://dl.acm.org/citation.cfm?doid=2737095.2737097"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Teixeira Fernando, Machado Gustavo, Pereira Fernando, Wong Hao, Nogueira José and Oliveira Leonardo. <b>SIoT: securing the internet of things through distributed system analysis</b> <em>IPSN '15 Proceedings of the 14th International Conference on Information Processing in Sensor Networks</em>, pages 310-321, Seattle, Brasil, 2015. ISBN 9781450334754.
<a href="#" type="button" class="btn-toggle" data-element="#pt5">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt5" style="display: none;">
@inproceedings{TeixeiraMPWNO15,<br>
author = {Fernando Teixeira and
Gustavo Machado and
Fernando Pereira and
Hao Chi Wong and
Jos{\'{e}} Marcos Nogueira and
Leonardo Oliveira},<br>
title = {SIoT: securing the internet of things through distributed system analysis},<br>
booktitle = {Proceedings of the 14th International Conference on Information Processing
in Sensor Networks, {IPSN} 2015, Seattle, WA, USA, April 14-16, 2015},<br>
pages = {310--321},<br>
year = {2015},<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="#"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Campos Victor, Alves Péricles, and Pereira Fernando. <b>Restritificação.</b> <em>Simpósio Brasileiro de Linguagens de Programação</em>, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt6">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt6" style="display: none;">
@inproceedings{Campos15,<br>
author = {Victor Campos and Péricles Alves and Fernando Pereira},<br>
title = {Restritificação},<br>
year = {2015},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="#"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Douglas Couto, Kezia Andrade, Gleison Souza, and Fernando Pereira. <b>Etino: Colocação Automática de Computação em Hardware Heterogêneo.</b> <em>Simpósio Brasileiro de Linguagens de Programação</em>, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt7">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt7" style="display: none;">
@inproceedings{Couto15,<br>
author = {Douglas Couto and Kezia Andrade and Gleison Souza and Fernando Pereira},<br>
title = {Etino: Colocação Automática de Computação em Hardware Heterogêneo},<br>
year = {2015},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://cbsoft.org/articles/0000/0529/Ferramentas.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Rubens Emílio, Mateus Tymburibá, and Fernando Pereira. <b>RipRop: A Dynamic Detector of ROP Attacks.</b> <em>CBSoft Tools</em>, pages 9-16, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt8">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt8" style="display: none;">
@inproceedings{Emílio15,<br>
author = {Rubens Emílio and Mateus Tymburibá and Fernando Pereira},<br>
title = {RipRop: A Dynamic Detector of ROP Attacks},<br>
booktitle = "CBSoft Tools",<br>
year = {2015},<br>
pages = {9-16},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://cbsoft.org/articles/0000/0529/Ferramentas.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Bruno Silva, Leonardo Ribeiro, and Fernando Pereira. <b>FlowTracker - Detecção de Código Não Isócrono via Análise Estática de Fluxo.</b> <em>CBSoft Tools</em>, pages 97-104, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt9">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt9" style="display: none;">
@inproceedings{Silva15,<br>
author = {Bruno Silva and Leonardo Ribeiro and Fernando Pereira},<br>
title = {FlowTracker - Detecção de Código Não Isócrono via Análise Estática de Fluxo},<br>
booktitle = "CBSoft Tools",<br>
year = {2015},<br>
pages = {97-104},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://cbsoft.org/articles/0000/0529/Ferramentas.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Douglas Couto, Kezia Andrade, Gleison Souza, and Fernando Pereira. <b>Etino: Colocação Automática de Computação em Hardware Heterogêneo.</b> <em>CBSoft Tools</em>, pages 65-72, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt10">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt10" style="display: none;">
@inproceedings{Couto15b,<br>
author = {Douglas Couto and Kezia Andrade and Gleison Souza, and Fernando Pereira},<br>
title = {Etino: Colocação Automática de Computação em Hardware Heterogêneo},<br>
booktitle = "CBSoft Tools",<br>
year = {2015},<br>
pages = {65-72},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://cbsoft.org/articles/0000/0529/Ferramentas.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Junio Cezar, Francisco Demontie, Mariza Bigonha, and Fernando Pereira. <b>Asymptus - A Tool for Automatic Inference of Loop Complexity.</b> <em>CBSoft Tools</em>, pages 89-96, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt11">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt11" style="display: none;">
@inproceedings{Cezar15,<br>
author = {Junio Cezar and Francisco Demontie and Mariza Bigonha and Fernando Pereira},<br>
title = {Asymptus - A Tool for Automatic Inference of Loop Complexity},<br>
booktitle = "CBSoft Tools",<br>
year = {2015},<br>
pages = {89-96},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=7444872&url=http%3A%2F%2Fieeexplore.ieee.org%2Fxpls%2Fabs_all.jsp%3Farnumber%3D7444872"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Antônio Maia, Leandro Melo, Fernando Pereira, Paranaiba Omar, and Leonardo Barbosa. <b>SMOV: Array Bound-Check and Access in a Single Instruction.</b> <em>Consumer Communications & Networking Conference (CCNC)</em>, pages 1745--751, Las Vegas, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt12">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt12" style="display: none;">
@inproceedings{Maia16,<br>
author = {Antonio Maia and
Leandro T. C. Melo and
Fernando Magno Quint{\~{a}}o Pereira and
Omar P. Vilela Neto and
Leonardo B. Oliveira},<br>
title = {{SMOV:} Array Bound-Check and access in a single instruction},<br>
booktitle = {13th {IEEE} Annual Consumer Communications & Networking Conference,
{CCNC} 2016, Las Vegas, NV, USA, January 9-12, 2016},<br>
pages = {745--751},<br>
year = {2016},<br>
publisher = {IEEE}<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://sbseg2015.univali.br/anais/SBSegCompletos/artigoCompleto02.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Bruno Silva, Diego Aranha, and Fernando Pereira. <b>Uma Técnica de Análise Estática para Detecção de Canais Laterais Baseados em Tempo.</b> <em>XV Simpósio Brasileiro de Segurança da Informação e Sistemas Computacionais</em>, vol. 1, issue 1, pages 16-29, Florianópolis, Brasil, 2015.</li>
<a href="#" type="button" class="btn-toggle" data-element="#pt13">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt13" style="display: none;">
@inproceedings{Silva15,<br>
author = {Bruno Silva and Diego Aranha and Fernando Pereira},<br>
title = {Uma Técnica de Análise Estática para Detecção de Canais Laterais Baseados em Tempo},<br>
booktitle = {XV Simpósio Brasileiro em Segurança da Informação e de Sistemas Computacionais — SBSeg 2015},<br>
pages = {16-29},<br>
year = {2015},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</tr>
</table>
<h3>2014</h3>
<p>
<TABLE cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://sbrc2014.ufsc.br/anais/files/trilha/ST14-1.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Fernando Teixeira, Fernando Pereira, Gustavo Vieira, Pablo Marcondes, Hao Wong, José Nogueira, and Leonardo Oliveira. <b>Siot: Defendendo a Internet das Coisas contra Exploits.</b> <em>Simpósio Brasileiro de Redes de Computadores</em>, Floritanópolis, Brasil, 2014.
<a href="#" type="button" class="btn-toggle" data-element="#pt14">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt14" style="display: none;">
@inproceedings{Teixeira14,<br>
author = {Fernando Teixeira and Fernando Pereira and Gustavo Vieira and Pablo Marcondes and Hao Wong and José Nogueira and Leonardo Oliveira},<br>
title = {Siot: Defendendo a Internet das Coisas contra Exploits},<br>
booktitle = {Simpósio Brasileiro de Redes de Computadores e Sistemas Distribuídos – SBRC 2014},<br>
year = {2014},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</tr>
</table>
<h3>2013</h3>
<p>
<TABLE cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://wiki.inf.ufpr.br/maziero/lib/exe/fetch.php?media=ceseg:2013-sbseg-mc3.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Vitor Paisante, Zafra Felipe, Rodrigues E., Leonardo Oliveira, and Fernando Pereira. <b>Prevenção de Ataques em Sistemas Distribuídos via Análise de Intervalos.</b> <em>Simpósio Brasileiro em Segurança da Informação e de Sistemas Computacionais</em>, Belo Horizonte, Brasil, 2013.
<a href="#" type="button" class="btn-toggle" data-element="#pt15">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt15" style="display: none;">
@inproceedings{Paisante13,<br>
author = {Vitor Paisante and Zafra Felipe and Rodrigues E. and Leonardo Oliveira and Fernando Pereira},<br>
title = {Prevenção de Ataques em Sistemas Distribuídos via Análise de Intervalos},<br>
booktitle = {XIII Simpósio Brasileiro em Segurança da Informação e de Sistemas Computacionais — SBSeg 2013},<br>
year = {2013},<br>
pages = {101-155},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="#"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Bruno Silva, Fernando Pereira, Leonardo Barbosa, and Antônio Loureiro. <b>Flow Tracking: Uma ferramenta para detecção de vazamento de informações sigilosas.</b> <em>CBSoft Tools</em>, Brasília, Brasil, 2013.
<a href="#" type="button" class="btn-toggle" data-element="#pt16">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt16" style="display: none;">
@inproceedings{Silva13,<br>
author = {Bruno Silva and Fernando Pereira and Leonardo Barbosa and Antônio Loureiro},<br>
title = {Flow Tracking: Uma ferramenta para detecção de vazamento de informações sigilosas},<br>
booktitle = {CBSoft Tools},<br>
year = {2013}<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="#"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Guilherme Balena, Matheus Vilela, and Fernando Pereira. <b>Resolução de Bugs de Desempenho via Clonagem de Funções.</b> <em>Simpósio Brasileiro de Linguagens de Programação</em>, vol. 1, issue 1, pages 1-20, Brasília, Brasil, 2013.
<a href="#" type="button" class="btn-toggle" data-element="#pt17">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt17" style="display: none;">
@inproceedings{Balena13,<br>
author = {Guilherme Balena and Matheus Vilela and Fernando Pereira},<br>
title = {Resolução de Bugs de Desempenho via Clonagem de Funções},<br>
booktitle = {Simpósio Brasileiro de Linguagens de Programação},<br>
year = {2013},<br>
pages = {1-20},<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://wiki.inf.ufpr.br/maziero/lib/exe/fetch.php?media=ceseg:2013-sbseg-mc3.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Raphael Rodrigues and Fernando Pereira. <b>Prevenção Automática de Ataques de Não-Terminação.</b> <em>Simpósio Brasileiro de Linguagens de Programação</em>, vol. 1, issue 1, pages 21-40, Brasília, Brasil, 2013.
<a href="#" type="button" class="btn-toggle" data-element="#pt18">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt18" style="display: none;">
@inproceedings{Rodrigues13,<br>
author = {Raphael Rodrigues and Fernando Pereira},<br>
title = {Prevenção Automática de Ataques de Não-Terminação},<br>
booktitle = {Simpósio Brasileiro de Linguagens de Programação},<br>
year = {2013},<br>
pages = {21-40},<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://homepages.dcc.ufmg.br/~leob/papers/izabela.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Izabela Kareninna, Fernando Pereira, and Leonardo Barbosa. <b>Detecção Automática de Vulnerabilidades em Código Protegido por Canários.</b> <em>Simpósio Brasileiro em Segurança da Informação e de Sistemas Computacionais</em>, vol. 1, issue 1, pages 1-14, Manaus, Brasil, 2013.
<a href="#" type="button" class="btn-toggle" data-element="#pt19">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt19" style="display: none;">
@inproceedings{Kareninna13,<br>
author = {Izabela Kareninna and Fernando Pereira and Leonardo Barbosa},<br>
title = {Detecção Automática de Vulnerabilidades em Código Protegido por Canários},<br>
booktitle = {Simpósio Brasileiro em Segurança da Informação e de Sistemas Computacionais},<br>
year = {2013},<br>
pages = {1-14},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="#"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Bruno Silva, Fernando Pereira, and Leonardo Barbosa. <b>Uma Representação Intermediária para a Detecção de Vazamentos Implícitos de Informação.</b> <em>Simpósio Brasileiro em Segurança da Informação e de Sistemas Computacionais</em>, vol. 1, issue 1, pages 15-28, Manaus, Brasil, 2013.
<a href="#" type="button" class="btn-toggle" data-element="#pt20">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt20" style="display: none;">
@inproceedings{Silva13,<br>
author = {Bruno Silva and Fernando Pereira and Leonardo Barbosa},<br>
title = {Uma Representação Intermediária para a Detecção de Vazamentos Implícitos de Informação},<br>
booktitle = {Simpósio Brasileiro em Segurança da Informação e de Sistemas Computacionais},<br>
year = {2013},<br>
pages = {15-28},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="#"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Henrique Santos, Fernando Pereira, and Leonardo Barbosa. <b>Verificação Estática de Acessos a Arranjos em C.</b> <em>Simpósio Brasileiro em Segurança da Informação e de Sistemas Computacionais</em>, vol. 1, issue 1, pages 29-42, Manaus, Brasil, 2013.
<a href="#" type="button" class="btn-toggle" data-element="#pt21">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt21" style="display: none;">
@inproceedings{Santos13,<br>
author = {Henrique Santos and Fernando Pereira and Leonardo Barbosa},<br>
title = {Prevenção de Ataques em Sistemas Distribuídos via Análise de Intervalos},<br>
booktitle = {Simpósio Brasileiro em Segurança da Informação e de Sistemas Computacionais},<br>
year = {2013},<br>
pages = {29-42},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://homepages.dcc.ufmg.br/~fernando/publications/books/matheusv_msc.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Matheus Vilela and Fernando Pereira. <b>Otimizações de Código Sensíveis ao Contexto de Chamada.</b> <em>Workshop de Teses de Disertações do CBSoft</em>, vol. 1, issue 1, pages 1-6, Brasília, Brasil, 2013.
<a href="#" type="button" class="btn-toggle" data-element="#pt22">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt22" style="display: none;">
@inproceedings{Vilela13,<br>
author = {Matheus Vilela and Fernando Pereira},<br>
title = {Otimizações de Código Sensíveis ao Contexto de Chamada},<br>
booktitle = {Workshop de Teses de Disertações do CBSoft},<br>
year = {2013},<br>
pages = {1-6},<br>
}
</div>
</TD>
</tr>
</table>
<h3>2011</h3>
<p>
<table cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://www.sbgames.org/sbgames2011/proceedings/sbgames/papers/comp/short/11-92145_2.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Thiago Vilela, Fernando Pereira, and Luiz Chaimowicz. <b>DroidTour: um Jogo Baseado em Localização para a Plataforma Android.</b> <em>X Simpósio Brasileiro de Games e Entretenimento DIgital</em>, Salvador, Brasil, 2011.
<a href="#" type="button" class="btn-toggle" data-element="#pt25">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt25" style="display: none;">
@inproceedings{Vilela11,<br>
author = {Thiago Vilela and Fernando Pereira and Luiz Chaimowicz},<br>
title = {DroidTour: um Jogo Baseado em Localização para a Plataforma Android},<br>
booktitle = {X Simpósio Brasileiro de Games e Entretenimento DIgital},<br>
year = {2011},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</tr>
</table>
<h3>2003</h3>
<p>
<table cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://compilers.cs.ucla.edu/fernando/publications/journals/Inatel2004.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Fernando Pereira, Marco Valente, Roberto Bigonha, and Mariza Bigonha. <b>Chamada Remota de Métodos na Plataforma J2ME/CLDC.</b> <em>V Workshop de Comunicação sem Fio e Computação Móvel</em>, São Lourenço, Brasil, 2003.
<a href="#" type="button" class="btn-toggle" data-element="#pt28">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt28" style="display: none;">
@inproceedings{Pereira03,<br>
author = {Fernando Pereira and Marco Valente and Roberto Bigonha and Mariza Bigonha},<br>
title = {Chamada Remota de Métodos na Plataforma J2ME/CLDC},<br>
year = {2003},<br>
pages = {21-31},<br>
publisher = {Revista Científica Periódica - Telecomunicações}<br>
}
</div>
</TD>
</tr>
</table>
<h3>2002</h3>
<p>
<table cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="#"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Fernando Pereira, Roberto Bigonha, and Vladimir Iorio. <b>Aplicações de Avaliação Parcial de Programas.</b> <em>LIV Reunião Nacional da Sociedade Brasileira para o Progresso da Ciência</em>, Goiânia, Brasil, 2002.
<a href="#" type="button" class="btn-toggle" data-element="#pt29">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt29" style="display: none;">
@inproceedings{Pereira02,<br>
author = {Fernando Pereira and Roberto Bigonha and Vladimir Iorio},<br>
title = {Aplicações de Avaliação Parcial de Programas},<br>
booktitle = {LIV Reunião Nacional da Sociedade Brasileira para o Progresso da Ciência},<br>
year = {2002},<br>
}
</div>
</TD>
</tr>
</table>
<h3>2001</h3>
<p>
<table cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://homepages.dcc.ufmg.br/~fernando/publications/papers/avalParcialCMIX.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Fernando Pereira, Roberto Bigonha, Mariza Bigonha, and Vladimir Iorio. <b>Avaliação Parcial de Programas usando CMIX/II.</b> <em>V Simpósio Brasileiro de Linguagens de Programação</em>, pages C-32-C-47, Curitiba, Brasil, 2001.
<a href="#" type="button" class="btn-toggle" data-element="#pt30">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt30" style="display: none;">
@inproceedings{Pereira01a,<br>
author = {Fernando Pereira and Roberto Bigonha and Mariza Bigonha and Vladimir Iorio},<br>
title = {Avaliação Parcial de Programas usando CMIX/II},<br>
booktitle = {V Simpósio Brasileiro de Linguagens de Programação},<br>
year = {2001},<br>
pages = {C-32-C-47},<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://docplayer.com.br/7978702-Uma-linguagem-para-coordenacao-de-aplicacoes-em-redes-moveis-ad-hoc.html"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Fernando Pereira, Marco Valente, Roberto Bigonha, and Mariza Bigonha. <b>Uma Linguagem para Coordenação de Aplicações em Redes Móveis.</b> <em>VI Simpósio Brasileiro de Linguagens de Programação</em>, Rio de Janeiro, Brasil, 2001.<a href="#" type="button" class="btn-toggle" data-element="#pt31">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt31" style="display: none;">
@inproceedings{Pereira01,<br>
author = {Fernando Pereira and Marco Valente and Roberto Bigonha and Mariza Bigonha},<br>
title = {Uma Linguagem para Coordenação de Aplicações em Redes Móveis},<br>
booktitle = {VI Simpósio Brasileiro de Linguagens de Programação},<br>
year = {2001},<br>
publisher = {SBLP}<br>
}
</div>
</TD>
</tr>
</table>
</body></html>