-
Notifications
You must be signed in to change notification settings - Fork 0
/
paper-list.js
2398 lines (2398 loc) · 71.6 KB
/
paper-list.js
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
module.exports = [
{
'id': '5BJLN4BY',
'type': 'Conference Paper',
'title': 'Smart Contract Vulnerabilities: Vulnerable Does Not Imply Exploited',
'authors': [
'Daniel Perez',
'Ben Livshits',
],
'venue': '30th {USENIX} Security Symposium ({USENIX} Security 21)',
'venueShort': null,
'date': '2021-01-01T00:00:00.000Z',
'tags': [],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://www.usenix.org/conference/usenixsecurity21/presentation/perez',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'QCRF4N7Q',
'type': 'Conference Paper',
'title': 'Evil Under the Sun: Understanding and Discovering Attacks on Ethereum Decentralized Applications',
'authors': [
'Liya Su',
'Xinyue Shen',
'Xiangyu Du',
'Xiaojing Liao',
'XiaoFeng Wang',
'Luyi Xing',
'Baoxu Liu'
],
'venue': '30th {USENIX} Security Symposium ({USENIX} Security 21)',
'venueShort': null,
'date': '2021-01-01T00:00:00.000Z',
'tags': [
'Attack',
'DApp',
'Empirical Study',
'Ethereum',
'Smart Contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://www.usenix.org/conference/usenixsecurity21/presentation/su',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'DAHDHFZ8',
'type': 'Conference Paper',
'title': 'Empirical review of automated analysis tools on 47,587 Ethereum smart contracts',
'authors': [
'Thomas Durieux',
'João F. Ferreira',
'Rui Abreu',
'Pedro Cruz'
],
'venue': 'Proceedings of the ACM/IEEE 42nd International Conference on Software Engineering',
'venueShort': null,
'date': '2020-06-26T16:00:00.000Z',
'tags': [
'Empirical Study',
'Smart Contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3377811.3380364',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'GAUNAS6E',
'type': 'Journal Article',
'title': 'Defining Smart Contract Defects on Ethereum',
'authors': [
'Jiachi Chen',
'Xin Xia',
'David Lo',
'John Grundy',
'Xiapu Luo',
'Ting Chen'
],
'venue': 'IEEE Transactions on Software Engineering',
'venueShort': null,
'date': '2020-01-01T00:00:00.000Z',
'tags': [
'Bitcoin',
'Computer bugs',
'Contract Defect',
'Contracts',
'Defect Definition',
'Empirical Study',
'Ethereum',
'Protocols',
'Robustness',
'Smart Contract',
'Smart Contracts',
'Survey'
],
'awards': [],
'projectUrl': null,
'paperUrl': '',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'SV57CQZH',
'type': 'Conference Paper',
'title': 'TXSPECTOR: Uncovering Attacks in Ethereum from Transactions',
'authors': [
'Mengya Zhang',
'Xiaokuan Zhang',
'Yinqian Zhang',
'Zhiqiang Lin'
],
'venue': '29th {USENIX} Security Symposium ({USENIX} Security 20)',
'venueShort': null,
'date': '2020-01-01T00:00:00.000Z',
'tags': [
'Attack',
'Ethereum',
'Transactions'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://www.usenix.org/conference/usenixsecurity20/presentation/zhang-mengya',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'XGQDTW4Z',
'type': 'Conference Paper',
'title': 'BDoS: Blockchain Denial-of-Service',
'authors': [
'Michael Mirkin',
'Yan Ji',
'Jonathan Pang',
'Ariah Klages-Mundt',
'Ittay Eyal',
'Ari Juels'
],
'venue': 'Proceedings of the 2020 ACM SIGSAC Conference on Computer and Communications Security',
'venueShort': null,
'date': '2020-10-29T16:00:00.000Z',
'tags': [
'Attack',
'Blockchain',
'DOS',
'bitcoin',
'blockchain',
'cryptocurrencies'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3372297.3417247',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'MMDDRIV5',
'type': 'Journal Article',
'title': 'Taming callbacks for smart contract modularity',
'authors': [
'Elvira Albert',
'Shelly Grossman',
'Noam Rinetzky',
'Clara Rodríguez-Núñez',
'Albert Rubio',
'Mooly Sagiv'
],
'venue': 'Proceedings of the ACM on Programming Languages',
'venueShort': null,
'date': '2020-11-12T16:00:00.000Z',
'tags': [
'Smart Contract',
'Static Analysis',
'blockchain',
'invariants',
'logic and verification',
'program analysis',
'program verification',
'smart contracts'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3428277',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'BPFBXQML',
'type': 'Conference Paper',
'title': 'On the Security and Performance of Proof of Work Blockchains',
'authors': [
'Arthur Gervais',
'Ghassan O. Karame',
'Karl Wüst',
'Vasileios Glykantzis',
'Hubert Ritzdorf',
'Srdjan Capkun'
],
'venue': 'CCS\'16: 2016 ACM SIGSAC Conference on Computer and Communications Security',
'venueShort': null,
'date': '2016-10-24T00:00:00.000Z',
'tags': [
'Blockchain'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://dl.acm.org/doi/10.1145/2976749.2978341',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'CSKM4NTV',
'type': 'Journal Article',
'title': 'Smart Contract Development: Challenges and Opportunities',
'authors': [
'Weiqin Zou',
'David Lo',
'Pavneet Singh Kochhar',
'Xuan-Bach D. Le',
'Xin Xia',
'Yang Feng',
'Zhenyu Chen',
'Baowen Xu'
],
'venue': 'IEEE Transactions on Software Engineering',
'venueShort': null,
'date': '2019-01-01T00:00:00.000Z',
'tags': [
'Smart Contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://ieeexplore.ieee.org/document/8847638/',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'NSX5SIGJ',
'type': 'Conference Paper',
'title': 'Gap between theory and practice: an empirical study of security patches in solidity',
'authors': [
'Sungjae Hwang',
'Sukyoung Ryu'
],
'venue': 'ICSE \'20: 42nd International Conference on Software Engineering',
'venueShort': null,
'date': '2020-06-27T00:00:00.000Z',
'tags': [
'Smart Contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://dl.acm.org/doi/10.1145/3377811.3380424',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'GX6GQ2JC',
'type': 'Conference Paper',
'title': 'Demystifying Loops in Smart Contracts',
'authors': [
'B. Mariano',
'Y. Chen',
'Y. Feng',
'S. K. Lahiri',
'I. Dillig'
],
'venue': '2020 35th IEEE/ACM International Conference on Automated Software Engineering (ASE)',
'venueShort': null,
'date': '2020-08-31T16:00:00.000Z',
'tags': [
'Blockchain',
'DSL',
'Domain specific languages',
'Semantics',
'Smart Contract',
'Smart contracts',
'Software engineering',
'Syntactics',
'loop summarization',
'program synthesis',
'smart contracts'
],
'awards': [],
'projectUrl': null,
'paperUrl': '',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': '9GUUBSAU',
'type': 'Conference Paper',
'title': 'How effective are smart contract analysis tools? evaluating smart contract static analysis tools using bug injection',
'authors': [
'Asem Ghaleb',
'Karthik Pattabiraman'
],
'venue': 'ISSTA \'20: 29th ACM SIGSOFT International Symposium on Software Testing and Analysis',
'venueShort': null,
'date': '2020-07-18T00:00:00.000Z',
'tags': [
'Empirical Study',
'Smart Contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://dl.acm.org/doi/10.1145/3395363.3397385',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': '3FHMXWSM',
'type': 'Journal Article',
'title': 'What Do Programmers Discuss about Blockchain?',
'authors': [
'Zhiyuan Wan',
'Xin Xia',
'Ahmed E Hassan'
],
'venue': 'IEEE TRANSACTIONS ON SOFTWARE ENGINEERING',
'venueShort': null,
'date': null,
'tags': [
'Blockchain'
],
'awards': [],
'projectUrl': null,
'paperUrl': '',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'ZDIVQEQB',
'type': 'Conference Paper',
'title': 'An Ever-evolving Game: Evaluation of Real-world Attacks and Defenses in Ethereum Ecosystem',
'authors': [
'Shunfan Zhou',
'Zhemin Yang',
'Jie Xiang',
'Yinzhi Cao',
'Zhemin Yang',
'Yuan Zhang'
],
'venue': '29th {USENIX} Security Symposium ({USENIX} Security 20)',
'venueShort': null,
'date': '2020-01-01T00:00:00.000Z',
'tags': [
'Attack',
'Ethereum',
'Measurement Study',
'Transactions'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://www.usenix.org/conference/usenixsecurity20/presentation/zhou-shunfan',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'G5CBR7TI',
'type': 'Journal Article',
'title': 'Online detection of effectively callback free objects with applications to smart contracts',
'authors': [
'Shelly Grossman',
'Ittai Abraham',
'Guy Golan-Gueta',
'Yan Michalevsky',
'Noam Rinetzky',
'Mooly Sagiv',
'Yoni Zohar'
],
'venue': 'Proceedings of the ACM on Programming Languages',
'venueShort': null,
'date': '2017-12-26T16:00:00.000Z',
'tags': [],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3158136',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'E43NSSJE',
'type': 'Conference Paper',
'title': 'sFuzz: an efficient adaptive fuzzer for solidity smart contracts',
'authors': [
'Tai D. Nguyen',
'Long H. Pham',
'Jun Sun',
'Yun Lin',
'Quang Tran Minh'
],
'venue': 'Proceedings of the ACM/IEEE 42nd International Conference on Software Engineering',
'venueShort': null,
'date': '2020-06-26T16:00:00.000Z',
'tags': [
'Fuzzing',
'Smart Contract',
'Vulnerability'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3377811.3380334',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'P5ZLQPHH',
'type': 'Journal Article',
'title': 'ÐArcher: Detecting On-Chain-Off-Chain Synchronization Bugs in Decentralized Applications',
'authors': [
'Wuqi Zhang',
'Lili Wei',
'Shuqing Li',
'Yepang Liu',
'Shing-Chi Cheung'
],
'venue': null,
'venueShort': null,
'date': '2021-01-01T00:00:00.000Z',
'tags': [],
'awards': [],
'projectUrl': null,
'paperUrl': '',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'VK7K7IEM',
'type': 'Conference Paper',
'title': 'Cross-contract static analysis for detecting practical reentrancy vulnerabilities in smart contracts',
'authors': [
'Yinxing Xue',
'Mingliang Ma',
'Yun Lin',
'Yulei Sui',
'Jiaming Ye',
'Tianyong Peng'
],
'venue': 'Proceedings of the 35th IEEE/ACM International Conference on Automated Software Engineering',
'venueShort': null,
'date': '2020-12-20T16:00:00.000Z',
'tags': [
'Smart Contract',
'Symbolic Execution',
'Taint Analysis',
'Vulnerability'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3324884.3416553',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'UPAKV7FH',
'type': 'Conference Paper',
'title': 'teEther: Gnawing at Ethereum to Automatically Exploit Smart Contracts',
'authors': [
'Johannes Krupp',
'Christian Rossow'
],
'venue': '27th {USENIX} Security Symposium ({USENIX} Security 18)',
'venueShort': null,
'date': '2018-01-01T00:00:00.000Z',
'tags': [
'Smart Contract',
'Test Generation'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://www.usenix.org/conference/usenixsecurity18/presentation/krupp',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': '3RXZSY9I',
'type': 'Conference Paper',
'title': 'Learning to Fuzz from Symbolic Execution with Application to Smart Contracts',
'authors': [
'Jingxuan He',
'Mislav Balunović',
'Nodar Ambroladze',
'Petar Tsankov',
'Martin Vechev'
],
'venue': 'Proceedings of the 2019 ACM SIGSAC Conference on Computer and Communications Security',
'venueShort': null,
'date': '2019-11-05T16:00:00.000Z',
'tags': [
'Fuzzing',
'Smart Contract',
'Symbolic Execution',
'fuzzing',
'imitation learning',
'smart contracts',
'symbolic execution'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3319535.3363230',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'YRIWFNW4',
'type': 'Conference Paper',
'title': '{ETHBMC}: A Bounded Model Checker for Smart Contracts',
'authors': [
'Joel Frank',
'Cornelius Aschermann',
'Thorsten Holz'
],
'venue': '29th {USENIX} Security Symposium ({USENIX} Security 20)',
'venueShort': null,
'date': '2020-01-01T00:00:00.000Z',
'tags': [
'Smart Contract',
'Static Analysis'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://www.usenix.org/conference/usenixsecurity20/presentation/frank',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'X7EB8MQF',
'type': 'Conference Paper',
'title': 'ZEUS: Analyzing Safety of Smart Contracts',
'authors': [
'Sukrit Kalra',
'Seep Goel',
'Mohan Dhawan',
'Subodh Sharma'
],
'venue': 'Network and Distributed System Security Symposium',
'venueShort': null,
'date': '2018-01-01T00:00:00.000Z',
'tags': [
'Smart Contract',
'Static Analysis'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://www.ndss-symposium.org/wp-content/uploads/2018/02/ndss2018_09-1_Kalra_paper.pdf',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'QPSHHKSH',
'type': 'Conference Paper',
'title': 'eThor: Practical and Provably Sound Static Analysis of Ethereum Smart Contracts',
'authors': [
'Clara Schneidewind',
'Ilya Grishchenko',
'Markus Scherer',
'Matteo Maffei'
],
'venue': 'Proceedings of the 2020 ACM SIGSAC Conference on Computer and Communications Security',
'venueShort': null,
'date': '2020-10-29T16:00:00.000Z',
'tags': [
'Smart Contract',
'Static Analysis',
'abstract interpretation',
'automated reasoning',
'cryptocurrencies',
'ethereum',
'security analysis',
'smart contracts',
'specification language',
'static analysis'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3372297.3417250',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'HDS4ZZK2',
'type': 'Conference Paper',
'title': 'Towards automated verification of smart contract fairness',
'authors': [
'Ye Liu',
'Yi Li',
'Shang-Wei Lin',
'Rong Zhao'
],
'venue': 'Proceedings of the 28th ACM Joint Meeting on European Software Engineering Conference and Symposium on the Foundations of Software Engineering',
'venueShort': null,
'date': '2020-11-07T16:00:00.000Z',
'tags': [
'Smart contract',
'fairness',
'mechanism design'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3368089.3409740',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': '2LTZ879S',
'type': 'Conference Paper',
'title': 'Securing smart contract with runtime validation',
'authors': [
'Ao Li',
'Jemin Andrew Choi',
'Fan Long'
],
'venue': 'Proceedings of the 41st ACM SIGPLAN Conference on Programming Language Design and Implementation',
'venueShort': null,
'date': '2020-06-10T16:00:00.000Z',
'tags': [
'Compilation',
'Smart Contract',
'compiler',
'runtime validation',
'smart contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3385412.3385982',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'I36FGYDT',
'type': 'Conference Paper',
'title': 'Behavioral simulation for smart contracts',
'authors': [
'Sidi Mohamed Beillahi',
'Gabriela Ciocarlie',
'Michael Emmi',
'Constantin Enea'
],
'venue': 'Proceedings of the 41st ACM SIGPLAN Conference on Programming Language Design and Implementation',
'venueShort': null,
'date': '2020-06-10T16:00:00.000Z',
'tags': [
'Blockchain',
'Formal Verification',
'Refinement',
'Simulation',
'Smart Contract',
'Smart contracts'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3385412.3386022',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'YHZMBBKG',
'type': 'Conference Paper',
'title': 'Ethainter: a smart contract security analyzer for composite vulnerabilities',
'authors': [
'Lexi Brent',
'Neville Grech',
'Sifis Lagouvardos',
'Bernhard Scholz',
'Yannis Smaragdakis'
],
'venue': 'Proceedings of the 41st ACM SIGPLAN Conference on Programming Language Design and Implementation',
'venueShort': null,
'date': '2020-06-10T16:00:00.000Z',
'tags': [
'Smart Contract',
'Static Analysis',
'Taint Analysis',
'information flow',
'smart contracts',
'static analysis'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3385412.3385990',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'PVKZWBKG',
'type': 'Journal Article',
'title': 'Precise static modeling of Ethereum “memory”',
'authors': [
'Sifis Lagouvardos',
'Neville Grech',
'Ilias Tsatiris',
'Yannis Smaragdakis'
],
'venue': 'Proceedings of the ACM on Programming Languages',
'venueShort': null,
'date': '2020-11-12T16:00:00.000Z',
'tags': [
'EVM',
'Smart Contract',
'ethereum',
'static analysis'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3428258',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'KV78EDID',
'type': 'Conference Paper',
'title': 'Exploiting the laws of order in smart contracts',
'authors': [
'Aashish Kolluri',
'Ivica Nikolic',
'Ilya Sergey',
'Aquinas Hobor',
'Prateek Saxena'
],
'venue': 'Proceedings of the 28th ACM SIGSOFT International Symposium on Software Testing and Analysis',
'venueShort': null,
'date': '2019-07-09T16:00:00.000Z',
'tags': [
'Concurrency',
'Ethereum',
'Front-Running',
'Happens-Before',
'Smart Contract',
'Smart Contract Security',
'Test Generation'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3293882.3330560',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'YJ5GYN3R',
'type': 'Conference Paper',
'title': 'ContractFuzzer: fuzzing smart contracts for vulnerability detection',
'authors': [
'Bo Jiang',
'Ye Liu',
'W. K. Chan'
],
'venue': 'ASE \'18: 33rd ACM/IEEE International Conference on Automated Software Engineering',
'venueShort': null,
'date': '2018-09-03T00:00:00.000Z',
'tags': [
'Smart Contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://dl.acm.org/doi/10.1145/3238147.3238177',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'VX6LSR25',
'type': 'Journal Article',
'title': 'Detecting nondeterministic payment bugs in Ethereum smart contracts',
'authors': [
'Shuai Wang',
'Chengyu Zhang',
'Zhendong Su'
],
'venue': 'Proceedings of the ACM on Programming Languages',
'venueShort': null,
'date': '2019-10-10T00:00:00.000Z',
'tags': [
'Smart Contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://dl.acm.org/doi/10.1145/3360615',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': '8DSNXATN',
'type': 'Conference Paper',
'title': 'Targeted greybox fuzzing with static lookahead analysis',
'authors': [
'Valentin Wüstholz',
'Maria Christakis'
],
'venue': 'ICSE \'20: 42nd International Conference on Software Engineering',
'venueShort': null,
'date': '2020-06-27T00:00:00.000Z',
'tags': [
'Smart Contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://dl.acm.org/doi/10.1145/3377811.3380388',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'IV78BRA9',
'type': 'Journal Article',
'title': 'MadMax: surviving out-of-gas conditions in Ethereum smart contracts',
'authors': [
'Neville Grech',
'Michael Kong',
'Anton Jurisevic',
'Lexi Brent',
'Bernhard Scholz',
'Yannis Smaragdakis'
],
'venue': 'Proceedings of the ACM on Programming Languages',
'venueShort': null,
'date': '2018-10-24T00:00:00.000Z',
'tags': [
'Smart Contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://dl.acm.org/doi/10.1145/3276486',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'M8YHB4GJ',
'type': 'Conference Paper',
'title': 'Gigahorse: Thorough, Declarative Decompilation of Smart Contracts',
'authors': [
'Neville Grech',
'Lexi Brent',
'Bernhard Scholz',
'Yannis Smaragdakis'
],
'venue': '2019 IEEE/ACM 41st International Conference on Software Engineering (ICSE)',
'venueShort': null,
'date': null,
'tags': [
'Smart Contract'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://ieeexplore.ieee.org/document/8811905/',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'SUZF8H8F',
'type': 'Conference Paper',
'title': 'Securify: Practical Security Analysis of Smart Contracts',
'authors': [
'Petar Tsankov',
'Andrei Dan',
'Dana Drachsler-Cohen',
'Arthur Gervais',
'Florian Bünzli',
'Martin Vechev'
],
'venue': 'Proceedings of the 2018 ACM SIGSAC Conference on Computer and Communications Security',
'venueShort': null,
'date': '2018-10-14T16:00:00.000Z',
'tags': [
'Smart Contract',
'Static Verification',
'security analysis',
'smart contracts',
'stratified datalog',
'verification'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3243734.3243780',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': '396ZNCWB',
'type': 'Conference Paper',
'title': 'Summary-Based Symbolic Evaluation for Smart Contracts',
'authors': [
'Y. Feng',
'E. Torlak',
'R. Bodik'
],
'venue': '2020 35th IEEE/ACM International Conference on Automated Software Engineering (ASE)',
'venueShort': null,
'date': '2020-08-31T16:00:00.000Z',
'tags': [
'Database languages',
'Optimization',
'Smart Contract',
'Smart contracts',
'Software engineering',
'Space exploration',
'Synthesizers',
'Tools',
'n/a'
],
'awards': [],
'projectUrl': null,
'paperUrl': '',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'XZKE7FR9',
'type': 'Conference Paper',
'title': 'Double-spending fast payments in bitcoin',
'authors': [
'Ghassan O. Karame',
'Elli Androulaki',
'Srdjan Capkun'
],
'venue': 'Proceedings of the 2012 ACM conference on Computer and communications security',
'venueShort': null,
'date': '2012-10-15T16:00:00.000Z',
'tags': [
'bitcoin',
'countermeasures',
'double-spending',
'fast payments'
],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/2382196.2382292',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'HZ33PNJW',
'type': 'Conference Paper',
'title': 'Security Vulnerabilities in Ethereum Smart Contracts',
'authors': [
'Alexander Mense',
'Markus Flatscher'
],
'venue': 'Proceedings of the 20th International Conference on Information Integration and Web-based Applications & Services',
'venueShort': null,
'date': '2018-11-18T16:00:00.000Z',
'tags': [],
'awards': [],
'projectUrl': null,
'paperUrl': 'https://doi.org/10.1145/3282373.3282419',
'slidesUrl': null,
'abstract': null,
'bibtex': null
},
{
'id': 'XBBYSKMD',
'type': 'Journal Article',
'title': 'A Survey on Ethereum Systems Security: Vulnerabilities, Attacks, and Defenses',
'authors': [
'Huashan Chen',
'Marcus Pendleton',
'Laurent Njilla',
'Shouhuai Xu'
],
'venue': 'ACM Computing Surveys',
'venueShort': null,