-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOwenThurm.json
1112 lines (1112 loc) · 35.4 KB
/
OwenThurm.json
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
[
{
"title": "Become A 1000x Cyborg Auditor | Audit Wizard",
"url": "https://www.youtube.com/watch?v=l-N-F6ApYNQ",
"publish_date": "2024-07-21T13:00:42Z",
"length_minutes": "53m 44s"
},
{
"title": "5 Ways To Ship Smart Contracts Faster, Cheaper & More Secure",
"url": "https://www.youtube.com/watch?v=TG8yLwPuFXg",
"publish_date": "2024-06-09T13:00:34Z",
"length_minutes": "14m 33s"
},
{
"title": "How To Get Bug Bounties At Scale | Glider By Hexens",
"url": "https://www.youtube.com/watch?v=ZW-LpZ4NdCE",
"publish_date": "2024-06-02T13:00:25Z",
"length_minutes": "82m 49s"
},
{
"title": "The Most Powerful Web3 Bug Bounty Tool Ever",
"url": "https://www.youtube.com/watch?v=IQ8LRRV-Tls",
"publish_date": "2024-05-12T13:00:15Z",
"length_minutes": "39m 19s"
},
{
"title": "Here's My Plan | Where Web3 Security Is Going",
"url": "https://www.youtube.com/watch?v=clfotIivy3c",
"publish_date": "2024-05-05T13:00:26Z",
"length_minutes": "32m 42s"
},
{
"title": "Do These 5 Things To Ship Secure Code",
"url": "https://www.youtube.com/watch?v=1G-zCewyJXo",
"publish_date": "2024-05-01T13:00:02Z",
"length_minutes": "35s"
},
{
"title": "Web3 Security Is Going To Be Huge",
"url": "https://www.youtube.com/watch?v=Nr0Jq6TN22I",
"publish_date": "2024-04-28T13:00:16Z",
"length_minutes": "29s"
},
{
"title": "Here's My Plan For The Next 5 Years",
"url": "https://www.youtube.com/watch?v=6HlN_9Ybz7o",
"publish_date": "2024-04-26T13:00:04Z",
"length_minutes": "37s"
},
{
"title": "This is the #1 most underrated Security tool",
"url": "https://www.youtube.com/watch?v=4F_NOukygfQ",
"publish_date": "2024-03-28T13:00:04Z",
"length_minutes": "35s"
},
{
"title": "Why I Love Mutation Testing",
"url": "https://www.youtube.com/watch?v=6Swct7RSQ_c",
"publish_date": "2024-03-26T13:00:08Z",
"length_minutes": "38s"
},
{
"title": "Do You Know What Mutation Testing Is?",
"url": "https://www.youtube.com/watch?v=R0ByaIt8bX0",
"publish_date": "2024-03-25T18:00:21Z",
"length_minutes": "31s"
},
{
"title": "3 Things That Will Make Your Smart Contracts More Secure",
"url": "https://www.youtube.com/watch?v=RUJa1B9mMNU",
"publish_date": "2024-03-11T13:00:33Z",
"length_minutes": "46s"
},
{
"title": "The #1 Most Underrated Web3 Security Tool",
"url": "https://www.youtube.com/watch?v=HIN8lmj597M",
"publish_date": "2024-03-10T13:00:13Z",
"length_minutes": "36m 14s"
},
{
"title": "3 Ways To Improve Your Smart Contract's Security",
"url": "https://www.youtube.com/watch?v=BFhqPWwfNgM",
"publish_date": "2024-03-08T14:00:08Z",
"length_minutes": "48s"
},
{
"title": "3 Keys to Develop Secure Smart Contracts",
"url": "https://www.youtube.com/watch?v=B7JMe7FGb9M",
"publish_date": "2024-03-06T14:00:08Z",
"length_minutes": "57s"
},
{
"title": "7 Things I Always Do When Auditing",
"url": "https://www.youtube.com/watch?v=0vn9Dv2t_-Y",
"publish_date": "2024-03-04T14:00:00Z",
"length_minutes": "31s"
},
{
"title": "The 9 Keys To Developing Secure Smart Contracts",
"url": "https://www.youtube.com/watch?v=UUhjTcD1BfM",
"publish_date": "2024-03-03T14:00:19Z",
"length_minutes": "43m 24s"
},
{
"title": "So You Want To Learn DeFi Math",
"url": "https://www.youtube.com/watch?v=NvCf3KPQKCc",
"publish_date": "2024-02-27T14:00:15Z",
"length_minutes": "36s"
},
{
"title": "Stop Focusing On Manual Analysis",
"url": "https://www.youtube.com/watch?v=s6MhI0QH1cA",
"publish_date": "2024-02-26T14:00:41Z",
"length_minutes": "35s"
},
{
"title": "Always Check For This In UUPS Contracts",
"url": "https://www.youtube.com/watch?v=oHf-ymAXYSg",
"publish_date": "2024-02-24T14:00:38Z",
"length_minutes": "45s"
},
{
"title": "Do Not Miss These 3 Critical Vulnerabilities | Critical Findings Breakdown",
"url": "https://www.youtube.com/watch?v=N9VtIomWo2s",
"publish_date": "2024-02-22T14:00:29Z",
"length_minutes": "37m 10s"
},
{
"title": "Beware 0 Amount Transfers",
"url": "https://www.youtube.com/watch?v=aAVRUgsov-o",
"publish_date": "2024-02-21T15:30:00Z",
"length_minutes": "37s"
},
{
"title": "The Simplest Way To Find Vulnerabilities",
"url": "https://www.youtube.com/watch?v=XbaUWkHUzJk",
"publish_date": "2024-02-19T14:00:31Z",
"length_minutes": "59s"
},
{
"title": "Never Miss This Critical Vulnerability In Multi Contract Systems",
"url": "https://www.youtube.com/watch?v=7dZacZ2MH6Q",
"publish_date": "2024-02-15T22:00:05Z",
"length_minutes": "34s"
},
{
"title": "[LIVE] How To Find Vulnerabilities In Audit Contests - GTDA | C4 Contest",
"url": "https://www.youtube.com/watch?v=WjCVT2hRNXE",
"publish_date": "2024-02-04T14:00:31Z",
"length_minutes": "150m 16s"
},
{
"title": "How To Find SO Many Criticals You Get Bored Of Auditing",
"url": "https://www.youtube.com/watch?v=oIoozgIl4pw",
"publish_date": "2024-02-01T22:00:32Z",
"length_minutes": "45m 42s"
},
{
"title": "This Method Found Me 70+ Criticals",
"url": "https://www.youtube.com/watch?v=4rLtGB50b9g",
"publish_date": "2024-02-01T20:00:01Z",
"length_minutes": "50s"
},
{
"title": "5 Liquidation Exploits You Don't Know About",
"url": "https://www.youtube.com/watch?v=LaYzXG5YUnU",
"publish_date": "2024-01-27T20:00:07Z",
"length_minutes": "40s"
},
{
"title": "Do You Know These 3 Critical Liquidation Vulnerabilities?",
"url": "https://www.youtube.com/watch?v=xdmuJ8HatRM",
"publish_date": "2024-01-23T21:00:34Z",
"length_minutes": "42s"
},
{
"title": "22 Vulnerabilities I Use To Find Criticals FAST!",
"url": "https://www.youtube.com/watch?v=MgCSEUrMnSQ",
"publish_date": "2024-01-21T14:00:13Z",
"length_minutes": "33m 16s"
},
{
"title": "Nobody Talks About These 4 Exploits",
"url": "https://www.youtube.com/watch?v=pvOddL4QObI",
"publish_date": "2024-01-20T20:00:17Z",
"length_minutes": "46s"
},
{
"title": "You Have To Know These 13 Critical Liquidation Vulnerabilities",
"url": "https://www.youtube.com/watch?v=AD2IF8ovE-w",
"publish_date": "2024-01-18T22:00:07Z",
"length_minutes": "58m 58s"
},
{
"title": "Do You Know These 5 Liquidation Exploits?",
"url": "https://www.youtube.com/watch?v=WMPFyEVLGu0",
"publish_date": "2024-01-17T22:00:25Z",
"length_minutes": "32s"
},
{
"title": "How To Find Success Beyond What You Think Is Possible",
"url": "https://www.youtube.com/watch?v=c0SblODfGw8",
"publish_date": "2024-01-14T20:30:03Z",
"length_minutes": "19s"
},
{
"title": "Do Not Miss These 5 Upgradeability Vulnerabilities",
"url": "https://www.youtube.com/watch?v=6aPyykZhglM",
"publish_date": "2024-01-14T14:00:06Z",
"length_minutes": "32m 29s"
},
{
"title": "Do You Know These 5 Upgrade Vulnerabilities?",
"url": "https://www.youtube.com/watch?v=XWLCrKXOPO8",
"publish_date": "2024-01-12T21:00:29Z",
"length_minutes": "41s"
},
{
"title": "Do You Know These 4 External Call Attacks?",
"url": "https://www.youtube.com/watch?v=dT0Y0mOYkbs",
"publish_date": "2023-12-28T22:00:14Z",
"length_minutes": "18s"
},
{
"title": "Do You Know All 6 DoS Attacks?",
"url": "https://www.youtube.com/watch?v=nFxCSWM4AL8",
"publish_date": "2023-12-26T21:00:21Z",
"length_minutes": "41s"
},
{
"title": "Do You Know This Advanced Attack?",
"url": "https://www.youtube.com/watch?v=3lqWvM6tsqs",
"publish_date": "2023-12-24T21:15:00Z",
"length_minutes": "27s"
},
{
"title": "The Vulnerability Nobody Talks About | Web3 Security 101",
"url": "https://www.youtube.com/watch?v=-9VmITcdm3c",
"publish_date": "2023-12-24T14:00:00Z",
"length_minutes": "26m 52s"
},
{
"title": "This 1 Thing Is Holding You Back As An Auditor",
"url": "https://www.youtube.com/watch?v=-_qDmGP_VNg",
"publish_date": "2023-12-21T20:15:00Z",
"length_minutes": "31s"
},
{
"title": "Do You Know All 6 Reentrancy Attacks?",
"url": "https://www.youtube.com/watch?v=7J88cmBhaDA",
"publish_date": "2023-12-19T22:30:03Z",
"length_minutes": "34s"
},
{
"title": "Vault Exploit Masterclass | 3 Red Flags | Web3 Exploits 101",
"url": "https://www.youtube.com/watch?v=3IMw7xbxJgY",
"publish_date": "2023-12-18T22:00:01Z",
"length_minutes": "62m 58s"
},
{
"title": "5 Weird ERC20 Edge Cases",
"url": "https://www.youtube.com/watch?v=IgfeHDkLRSo",
"publish_date": "2023-12-17T19:15:00Z",
"length_minutes": "38s"
},
{
"title": "What is a CDP?",
"url": "https://www.youtube.com/watch?v=Ev2YZ6rYrF8",
"publish_date": "2023-12-14T21:00:06Z",
"length_minutes": "33s"
},
{
"title": "5 ERC20 Edge Cases",
"url": "https://www.youtube.com/watch?v=MZ-u1W5DWqE",
"publish_date": "2023-12-11T21:30:01Z",
"length_minutes": "45s"
},
{
"title": "Don't Make This Mistake | My Work Operating System",
"url": "https://www.youtube.com/watch?v=ZMTEzwsieLA",
"publish_date": "2023-12-10T14:00:19Z",
"length_minutes": "29m 48s"
},
{
"title": "4 ERC20 Edge Cases",
"url": "https://www.youtube.com/watch?v=aM29-Yeih9M",
"publish_date": "2023-12-07T21:00:01Z",
"length_minutes": "34s"
},
{
"title": "How Does Dai Keep It's Peg?",
"url": "https://www.youtube.com/watch?v=7pC0tmYTSOM",
"publish_date": "2023-12-04T21:30:01Z",
"length_minutes": "43s"
},
{
"title": "Is This A Critical? How To Rank Vulnerability Severity",
"url": "https://www.youtube.com/watch?v=f4UdAnHUpSE",
"publish_date": "2023-12-03T14:00:20Z",
"length_minutes": "48m 14s"
},
{
"title": "Which Phase Are You In?",
"url": "https://www.youtube.com/watch?v=WtNCfRKcEXQ",
"publish_date": "2023-12-02T21:30:04Z",
"length_minutes": "16s"
},
{
"title": "6 Critical Vulnerabilities | Build Your Toolbox",
"url": "https://www.youtube.com/watch?v=B8igzag_7jY",
"publish_date": "2023-11-30T22:00:05Z",
"length_minutes": "79m 14s"
},
{
"title": "Why Does Maker DAO Use Weird Naming?",
"url": "https://www.youtube.com/watch?v=zFkcvRuWomc",
"publish_date": "2023-11-27T22:30:06Z",
"length_minutes": "37s"
},
{
"title": "Why Do We Need Overcollateralization?",
"url": "https://www.youtube.com/watch?v=Vh73qnln6H4",
"publish_date": "2023-11-24T21:00:23Z",
"length_minutes": "45s"
},
{
"title": "What Levers Does Maker DAO Have Have",
"url": "https://www.youtube.com/watch?v=WxMGLdH1Lxc",
"publish_date": "2023-11-23T22:30:04Z",
"length_minutes": "32s"
},
{
"title": "Abracadabra Money Guide | DeFi 101",
"url": "https://www.youtube.com/watch?v=zKAgEp9vHms",
"publish_date": "2023-11-23T22:00:23Z",
"length_minutes": "37m 14s"
},
{
"title": "The 4 External Call Attacks | Web3 Exploits 101",
"url": "https://www.youtube.com/watch?v=VF1HYD50eus",
"publish_date": "2023-11-19T14:00:27Z",
"length_minutes": "30m 16s"
},
{
"title": "12 ERC20 Edge Cases | Web3 Exploits 101",
"url": "https://www.youtube.com/watch?v=Tx0f8A2Yd3k",
"publish_date": "2023-11-16T22:00:18Z",
"length_minutes": "36m 7s"
},
{
"title": "4 DAO Attacks",
"url": "https://www.youtube.com/watch?v=AM5TTkYQ5mE",
"publish_date": "2023-11-16T21:45:00Z",
"length_minutes": "48s"
},
{
"title": "Here's How To Hack A DAO",
"url": "https://www.youtube.com/watch?v=78qeuRylBAo",
"publish_date": "2023-11-13T21:30:00Z",
"length_minutes": "32s"
},
{
"title": "Dao And Governance Attacks | Web3 Exploits 101",
"url": "https://www.youtube.com/watch?v=O4fLWPKQINA",
"publish_date": "2023-11-12T14:00:12Z",
"length_minutes": "30m 48s"
},
{
"title": "Consistency Unlocks Any Skill",
"url": "https://www.youtube.com/watch?v=ftpWMKLnNGY",
"publish_date": "2023-11-09T23:00:25Z",
"length_minutes": "17s"
},
{
"title": "How Does DAI & Maker DAO Work? | DeFi 101",
"url": "https://www.youtube.com/watch?v=0a7W7s0K7SI",
"publish_date": "2023-11-09T22:00:00Z",
"length_minutes": "38m 17s"
},
{
"title": "Oracle Manipulation 101",
"url": "https://www.youtube.com/watch?v=7kGvqvjmFSU",
"publish_date": "2023-11-06T22:00:07Z",
"length_minutes": "46s"
},
{
"title": "Advanced Web3 Security Course | Part 2",
"url": "https://www.youtube.com/watch?v=zLnxRvf6IMA",
"publish_date": "2023-11-05T14:00:46Z",
"length_minutes": "717m 4s"
},
{
"title": "The Uniswap TWAP Oracle",
"url": "https://www.youtube.com/watch?v=QapoyqAt10w",
"publish_date": "2023-11-03T21:00:17Z",
"length_minutes": "1m 0s"
},
{
"title": "Audit With Me | Live Codehawks Contest",
"url": "https://www.youtube.com/watch?v=kjbMsKyI2-s",
"publish_date": "2023-11-03T20:00:14Z",
"length_minutes": "221m 39s"
},
{
"title": "Your First 1,000 Hours Are Paramount",
"url": "https://www.youtube.com/watch?v=BdvVmwU83IE",
"publish_date": "2023-10-31T21:00:07Z",
"length_minutes": "44s"
},
{
"title": "Writing Solidity Helps As An Auditor",
"url": "https://www.youtube.com/watch?v=M229qHA3SHk",
"publish_date": "2023-10-28T14:00:13Z",
"length_minutes": "40s"
},
{
"title": "Oracle Manipulation | Web3 Security 101",
"url": "https://www.youtube.com/watch?v=tbGqaDHZtuc",
"publish_date": "2023-10-28T13:00:48Z",
"length_minutes": "37m 12s"
},
{
"title": "This is 90% of Security Research",
"url": "https://www.youtube.com/watch?v=Vdu0foUeNS4",
"publish_date": "2023-10-25T21:30:03Z",
"length_minutes": "51s"
},
{
"title": "Advanced Web3 Security Course | Part 1",
"url": "https://www.youtube.com/watch?v=DRZogmD647U",
"publish_date": "2023-10-22T13:00:15Z",
"length_minutes": "680m 16s"
},
{
"title": "Rounding Errors | Web3 Exploits 101",
"url": "https://www.youtube.com/watch?v=6rmLP-ri-JU",
"publish_date": "2023-10-16T21:00:02Z",
"length_minutes": "32m 57s"
},
{
"title": "Parallel Data Structures Are Bad",
"url": "https://www.youtube.com/watch?v=fKN0rn8206I",
"publish_date": "2023-10-16T21:00:31Z",
"length_minutes": "35s"
},
{
"title": "Iterate On Your Auditing Process",
"url": "https://www.youtube.com/watch?v=UbWRA6w6hAg",
"publish_date": "2023-10-13T22:15:01Z",
"length_minutes": "34s"
},
{
"title": "Getting Good At Security Research Is Simple Not Easy",
"url": "https://www.youtube.com/watch?v=rYyGskzFO14",
"publish_date": "2023-10-11T21:00:33Z",
"length_minutes": "32s"
},
{
"title": "A New Approach To Auditing",
"url": "https://www.youtube.com/watch?v=tt6eFPsV-1c",
"publish_date": "2023-10-09T21:30:05Z",
"length_minutes": "47s"
},
{
"title": "4 Steps To Become A Master Security Researcher",
"url": "https://www.youtube.com/watch?v=CUU5kVVVl7Y",
"publish_date": "2023-10-08T13:00:08Z",
"length_minutes": "18m 17s"
},
{
"title": "Live Pair Audit - Filecoin IPC Actors | Episode 8",
"url": "https://www.youtube.com/watch?v=-xPPOLCH_Jk",
"publish_date": "2023-10-05T21:00:00Z",
"length_minutes": "29m 54s"
},
{
"title": "Tooling Is A Cheatcode",
"url": "https://www.youtube.com/watch?v=REc5Bx_h228",
"publish_date": "2023-10-05T19:00:11Z",
"length_minutes": "43s"
},
{
"title": "Organization Matters For Security Researchers",
"url": "https://www.youtube.com/watch?v=gwoRrT3HRK0",
"publish_date": "2023-10-02T22:00:20Z",
"length_minutes": "46s"
},
{
"title": "7 Skills That Make A Lead Web3 Security Researcher",
"url": "https://www.youtube.com/watch?v=eVmtsyefF-g",
"publish_date": "2023-10-01T18:30:29Z",
"length_minutes": "28m 10s"
},
{
"title": "New Perspectives Boost Your Auditing",
"url": "https://www.youtube.com/watch?v=7wSjbjVlZ0c",
"publish_date": "2023-09-30T19:30:00Z",
"length_minutes": "47s"
},
{
"title": "Perseverance Is Key To Becoming A Top Auditor",
"url": "https://www.youtube.com/watch?v=wzohCdsgIj0",
"publish_date": "2023-09-27T19:45:00Z",
"length_minutes": "50s"
},
{
"title": "Why Diagrams Matter",
"url": "https://www.youtube.com/watch?v=qUrkwQJqG_Q",
"publish_date": "2023-09-25T21:00:22Z",
"length_minutes": "34s"
},
{
"title": "Questions Matter During Security Reviews",
"url": "https://www.youtube.com/watch?v=xb71FvwjRNg",
"publish_date": "2023-09-24T19:30:05Z",
"length_minutes": "41s"
},
{
"title": "Live Pair Audit - Filecoin IPC Actors | Episode 7",
"url": "https://www.youtube.com/watch?v=MLx_1F6lMQ8",
"publish_date": "2023-09-24T16:45:02Z",
"length_minutes": "32m 58s"
},
{
"title": "Live Pair Audit - Filecoin IPC Actors | Episode 6",
"url": "https://www.youtube.com/watch?v=tZY7MoCeWLA",
"publish_date": "2023-09-22T00:46:07Z",
"length_minutes": "49m 5s"
},
{
"title": "7 Skills That Make A Senior Auditor",
"url": "https://www.youtube.com/watch?v=VEbcntQQkUQ",
"publish_date": "2023-09-18T14:45:02Z",
"length_minutes": "28s"
},
{
"title": "Become A Rockstar Auditor In 1 Year",
"url": "https://www.youtube.com/watch?v=1kkOSkUyhT0",
"publish_date": "2023-09-17T14:00:02Z",
"length_minutes": "46s"
},
{
"title": "5 Types Of DeFi Protocols To Master",
"url": "https://www.youtube.com/watch?v=jK20mHQvdrw",
"publish_date": "2023-09-14T16:16:30Z",
"length_minutes": "31s"
},
{
"title": "Sandwich Attacks | Web3 Exploits 101",
"url": "https://www.youtube.com/watch?v=6y3nwJS4UJw",
"publish_date": "2023-09-10T13:00:09Z",
"length_minutes": "24m 2s"
},
{
"title": "Why Do We Need Slippage Controls?",
"url": "https://www.youtube.com/watch?v=d-iFYLFsiqs",
"publish_date": "2023-09-04T23:00:30Z",
"length_minutes": "48s"
},
{
"title": "Front-Running Attacks | Web3 Exploits 101",
"url": "https://www.youtube.com/watch?v=dlEIfGT2bHo",
"publish_date": "2023-09-03T15:33:58Z",
"length_minutes": "25m 42s"
},
{
"title": "Live Pair Audit - Filecoin IPC Actors | Episode 5",
"url": "https://www.youtube.com/watch?v=lXiioAIRwmI",
"publish_date": "2023-08-31T23:00:18Z",
"length_minutes": "33m 53s"
},
{
"title": "Sandwich Attacks 101",
"url": "https://www.youtube.com/watch?v=F7fBBD3DPLY",
"publish_date": "2023-08-30T23:00:09Z",
"length_minutes": "36s"
},
{
"title": "8 More Ways To Boost Effectiveness While Auditing",
"url": "https://www.youtube.com/watch?v=52zjjB0Hx80",
"publish_date": "2023-08-28T23:00:01Z",
"length_minutes": "34s"
},
{
"title": "Live Pair Audit - Filecoin IPC Actors | Episode 4",
"url": "https://www.youtube.com/watch?v=1j3nqAcLNfA",
"publish_date": "2023-08-27T15:30:00Z",
"length_minutes": "53m 29s"
},
{
"title": "8 Ways To Boost Effectiveness While Auditing",
"url": "https://www.youtube.com/watch?v=0J65trRnrjY",
"publish_date": "2023-08-23T23:00:01Z",
"length_minutes": "32s"
},
{
"title": "Did You Know About This Upgradeability Pattern?",
"url": "https://www.youtube.com/watch?v=x9TE7pw6jo0",
"publish_date": "2023-08-21T23:00:33Z",
"length_minutes": "45s"
},
{
"title": "Smart Contract Upgradeability 101 | 5 Upgradeability Methods",
"url": "https://www.youtube.com/watch?v=e5lWvt1rIm0",
"publish_date": "2023-08-20T13:00:33Z",
"length_minutes": "40m 18s"
},
{
"title": "Audit Better With 1 Platform | Audit Wizard Review",
"url": "https://www.youtube.com/watch?v=27V-KzoI-Yk",
"publish_date": "2023-08-17T22:00:10Z",
"length_minutes": "50m 53s"
},
{
"title": "UUPS Proxies In 40 Seconds!",
"url": "https://www.youtube.com/watch?v=mJ4jLnZUAoo",
"publish_date": "2023-08-16T23:00:17Z",
"length_minutes": "59s"
},
{
"title": "Beacon Proxies In 40 Seconds!",
"url": "https://www.youtube.com/watch?v=2tYaaGBP1Yg",
"publish_date": "2023-08-14T23:00:04Z",
"length_minutes": "1m 0s"
},
{
"title": "Can You Name These 5 Upgradeability Patterns?",
"url": "https://www.youtube.com/watch?v=aGkWA8uIHSA",
"publish_date": "2023-08-09T23:00:01Z",
"length_minutes": "28s"
},
{
"title": "Transparent Proxies In 40 Seconds",
"url": "https://www.youtube.com/watch?v=UXdaPR1_2PM",
"publish_date": "2023-08-07T23:00:13Z",
"length_minutes": "58s"
},
{
"title": "7 Traits Of Top Auditors",
"url": "https://www.youtube.com/watch?v=NuJdcg28Lrs",
"publish_date": "2023-07-31T23:00:09Z",
"length_minutes": "45s"
},
{
"title": "Live Pair Audit - Filecoin IPC Actors | Episode 3",
"url": "https://www.youtube.com/watch?v=IQLDAJFgRDk",
"publish_date": "2023-07-30T13:00:11Z",
"length_minutes": "30m 59s"
},
{
"title": "Vulnerabilities With The Solidity Compiler!",
"url": "https://www.youtube.com/watch?v=ulFDHyuVb1I",
"publish_date": "2023-07-28T02:22:00Z",
"length_minutes": "21m 16s"
},
{
"title": "6 Code Smells & Attack Vectors",
"url": "https://www.youtube.com/watch?v=4UoWJ4UqzrY",
"publish_date": "2023-07-26T23:00:03Z",
"length_minutes": "38s"
},
{
"title": "5 Code Smells & Attack Vectors",
"url": "https://www.youtube.com/watch?v=LjU2EaKrKXs",
"publish_date": "2023-07-24T23:00:19Z",
"length_minutes": "27s"
},
{
"title": "Live Pair Audit - Filecoin IPC Actors | Episode 2",
"url": "https://www.youtube.com/watch?v=drCCW5MNILM",
"publish_date": "2023-07-20T23:15:11Z",
"length_minutes": "39m 43s"
},
{
"title": "Do Not Ever Miss This Multicall Bug",
"url": "https://www.youtube.com/watch?v=BQUtf_WuUQo",
"publish_date": "2023-07-12T23:00:05Z",
"length_minutes": "50s"
},
{
"title": "The Diamond Pattern Made Simple",
"url": "https://www.youtube.com/watch?v=Y77j_YwB3Ow",
"publish_date": "2023-07-10T23:00:21Z",
"length_minutes": "53s"
},
{
"title": "Live Pair Audit - Filecoin IPC Actors | Episode 1",
"url": "https://www.youtube.com/watch?v=CNr48jNuKRM",
"publish_date": "2023-07-09T22:00:04Z",
"length_minutes": "18m 40s"
},
{
"title": "Guide To Advanced Calldata | Everything You Need To Know",
"url": "https://www.youtube.com/watch?v=WkyyT0pmJSw",
"publish_date": "2023-07-06T23:00:21Z",
"length_minutes": "41m 34s"
},
{
"title": "EIP-6780 - Are Metamorphic Contracts Still A Thing?",
"url": "https://www.youtube.com/watch?v=zMVpEiKLl8s",
"publish_date": "2023-07-05T23:00:31Z",
"length_minutes": "42s"
},
{
"title": "7 Common Smart Contract Bugs Pt. 3",
"url": "https://www.youtube.com/watch?v=zBWQmcGvq0A",
"publish_date": "2023-07-03T23:00:33Z",
"length_minutes": "29s"
},
{
"title": "Learn From My Findings | 3 Findings Breakdown",
"url": "https://www.youtube.com/watch?v=ekFN7GtGtBU",
"publish_date": "2023-06-30T00:35:09Z",
"length_minutes": "30m 35s"
},
{
"title": "7 Common Smart Contract Bugs Pt. 2",
"url": "https://www.youtube.com/watch?v=GGgw5FRKCeM",
"publish_date": "2023-06-28T23:00:06Z",
"length_minutes": "33s"
},
{
"title": "7 Common Smart Contract Bugs",
"url": "https://www.youtube.com/watch?v=2HVWGwe60GM",
"publish_date": "2023-06-26T23:00:01Z",
"length_minutes": "34s"
},
{
"title": "Become A 10x Auditor | 17 Ways To Boost Performance",
"url": "https://www.youtube.com/watch?v=Tv_O8Xh3FzE",
"publish_date": "2023-06-25T13:00:30Z",
"length_minutes": "37m 5s"
},
{
"title": "Guide To Formal Verification | Take Security To The Next Level",
"url": "https://www.youtube.com/watch?v=imSy7Ll9ftg",
"publish_date": "2023-06-22T23:00:21Z",
"length_minutes": "18m 50s"
},
{
"title": "7 More Ways To Prepare For An Audit",
"url": "https://www.youtube.com/watch?v=wg-ZyWsyaHA",
"publish_date": "2023-06-21T23:00:32Z",
"length_minutes": "35s"
},
{
"title": "7 Ways To Prepare For An Audit",
"url": "https://www.youtube.com/watch?v=z5aL-LDO2EE",
"publish_date": "2023-06-19T23:00:23Z",
"length_minutes": "38s"
},
{
"title": "Getting An Audit? 13 Mistakes To Avoid",
"url": "https://www.youtube.com/watch?v=BY0Edn_py_k",
"publish_date": "2023-06-18T13:00:07Z",
"length_minutes": "21m 34s"
},
{
"title": "Complete Guide To The EVM | Everything You Need To Know",
"url": "https://www.youtube.com/watch?v=Ru3inmu1FuQ",
"publish_date": "2023-06-15T23:00:10Z",
"length_minutes": "35m 17s"
},
{
"title": "8 (More) Ways To Perform Better As An Auditor",
"url": "https://www.youtube.com/watch?v=SjQHMJkktvw",
"publish_date": "2023-06-14T23:00:12Z",
"length_minutes": "39s"
},
{
"title": "8 Ways To Perform Better As An Auditor",
"url": "https://www.youtube.com/watch?v=BkKQcpxVUlc",
"publish_date": "2023-06-12T23:00:07Z",
"length_minutes": "35s"
},
{
"title": "21 Sneaky Smart Contract Bugs | Do Not Miss These!",
"url": "https://www.youtube.com/watch?v=8fNNVQv4-oY",
"publish_date": "2023-06-11T13:00:10Z",
"length_minutes": "28m 58s"
},
{
"title": "Guide To Writing PoCs",
"url": "https://www.youtube.com/watch?v=pn-UpJ0yas4",
"publish_date": "2023-06-08T23:00:17Z",
"length_minutes": "32m 19s"
},
{
"title": "Memory In Yul Is Dangerous!",
"url": "https://www.youtube.com/watch?v=YvH2ll364zo",
"publish_date": "2023-06-07T23:00:13Z",
"length_minutes": "53s"
},
{
"title": "Solving A CTF Live! | DVD #10 Free Rider",
"url": "https://www.youtube.com/watch?v=_8Tr83yfQ84",
"publish_date": "2023-06-07T23:00:18Z",
"length_minutes": "62m 10s"
},
{
"title": "Solidity Memory Layout Made Easy",
"url": "https://www.youtube.com/watch?v=mpbzKKEwqjY",
"publish_date": "2023-06-05T23:00:31Z",
"length_minutes": "49s"
},
{
"title": "Metamorphic Contracts | Tornado Cash Exploit!",
"url": "https://www.youtube.com/watch?v=XEe-FMiTDYU",
"publish_date": "2023-06-01T23:00:12Z",
"length_minutes": "21m 32s"
},
{
"title": "4 Steps To An Attacker's Mindset",
"url": "https://www.youtube.com/watch?v=wfow54eQSMk",
"publish_date": "2023-05-31T23:00:32Z",
"length_minutes": "44s"
},
{
"title": "2 Mistakes During An Audit",
"url": "https://www.youtube.com/watch?v=yuNUiU9zGtU",
"publish_date": "2023-05-29T23:00:24Z",
"length_minutes": "59s"
},
{
"title": "Complex Codebase Deep Dive | CTF Solution!",
"url": "https://www.youtube.com/watch?v=B_D8Ox__2ZY",
"publish_date": "2023-05-28T21:00:05Z",
"length_minutes": "42m 23s"
},
{
"title": "Yul & Memory Intro | Yul Exploit!",
"url": "https://www.youtube.com/watch?v=9qLUvtL5uKQ",
"publish_date": "2023-05-25T23:00:04Z",
"length_minutes": "40m 13s"
},
{
"title": "System To Maximize Findings ASAP",
"url": "https://www.youtube.com/watch?v=ttVRFXR4mec",
"publish_date": "2023-05-24T23:00:24Z",
"length_minutes": "41s"
},
{
"title": "Uncover Exploits With This Trick",
"url": "https://www.youtube.com/watch?v=gYRhaERthX0",
"publish_date": "2023-05-22T23:00:26Z",
"length_minutes": "56s"
},
{
"title": "Get Into The Attacker's Mindset",
"url": "https://www.youtube.com/watch?v=KS_lrBH1HV8",
"publish_date": "2023-05-18T23:00:07Z",
"length_minutes": "26m 2s"
},
{
"title": "Think This Way To Succeed As An Auditor",
"url": "https://www.youtube.com/watch?v=ebjj14MMFX8",
"publish_date": "2023-05-17T23:00:32Z",
"length_minutes": "1m 0s"
},
{
"title": "Complex Reentrancy Attacks",
"url": "https://www.youtube.com/watch?v=svtKbvgn-gM",
"publish_date": "2023-05-15T23:00:31Z",
"length_minutes": "1m 0s"
},
{
"title": "Build Your Auditing Toolkit | Findings Breakdown",
"url": "https://www.youtube.com/watch?v=tTt8PcZVwZI",
"publish_date": "2023-05-14T13:00:41Z",
"length_minutes": "30m 27s"
},
{
"title": "Complete Guide To Your First Audit",
"url": "https://www.youtube.com/watch?v=HA4AzsZdhSU",
"publish_date": "2023-05-11T23:00:10Z",
"length_minutes": "14m 17s"
},
{
"title": "Read-only Reentrancy Made Simple",
"url": "https://www.youtube.com/watch?v=Kvh8X4Kmmb8",
"publish_date": "2023-05-10T23:00:14Z",
"length_minutes": "49s"
},
{
"title": "What Is Check-Effects-Interactions?",
"url": "https://www.youtube.com/watch?v=MQ_o0p6R2vU",
"publish_date": "2023-05-08T23:00:08Z",
"length_minutes": "45s"
},
{
"title": "The Ultimate Guide To Reentrancy",
"url": "https://www.youtube.com/watch?v=3T1t2ginfTg",
"publish_date": "2023-05-07T13:00:02Z",
"length_minutes": "31m 21s"
},
{
"title": "Uniswap V3 Ticks",
"url": "https://www.youtube.com/watch?v=PXjGx8nsbVY",
"publish_date": "2023-05-01T23:00:15Z",
"length_minutes": "43s"
},
{
"title": "DeFi Protocol Deep Dives | GMX V2",
"url": "https://www.youtube.com/watch?v=58om-oA1vpI",
"publish_date": "2023-04-30T23:00:02Z",
"length_minutes": "49m 40s"
},
{
"title": "Live Audit - Key Finance | Episode 4",
"url": "https://www.youtube.com/watch?v=HDmGw2a5SmY",
"publish_date": "2023-04-27T23:00:11Z",
"length_minutes": "33m 30s"
},
{
"title": "Uniswap V3 Range Bound Liquidity",
"url": "https://www.youtube.com/watch?v=KQwh8UaLdpQ",
"publish_date": "2023-04-26T23:00:14Z",
"length_minutes": "47s"
},
{
"title": "Impermanent Loss Made Simple",
"url": "https://www.youtube.com/watch?v=EyO4ntzAHyE",
"publish_date": "2023-04-24T23:00:03Z",
"length_minutes": "55s"
},
{
"title": "Live Audit - Key Finance | Episode 3",
"url": "https://www.youtube.com/watch?v=s82zql_kn2I",
"publish_date": "2023-04-23T23:00:30Z",
"length_minutes": "42m 21s"
},
{
"title": "Live Audit - Key Finance | Episode 2",
"url": "https://www.youtube.com/watch?v=Sil4HE73H8U",
"publish_date": "2023-04-20T23:00:18Z",
"length_minutes": "49m 44s"
},
{
"title": "AMM Swapping In 60 Seconds",
"url": "https://www.youtube.com/watch?v=pRlwa4v1UFw",
"publish_date": "2023-04-19T23:00:30Z",
"length_minutes": "40s"
},
{
"title": "Live Audit - Key Finance | Episode 1",
"url": "https://www.youtube.com/watch?v=X9DTJJGDg7c",
"publish_date": "2023-04-18T23:00:18Z",
"length_minutes": "42m 50s"
},
{
"title": "12 Ways To Miss Vulnerabilities During An Audit",
"url": "https://www.youtube.com/watch?v=eyMNQdLI_gM",
"publish_date": "2023-04-17T23:00:15Z",
"length_minutes": "45s"
},
{
"title": "Uniswap V3 Made Easy",
"url": "https://www.youtube.com/watch?v=Ltph_X60kbo",
"publish_date": "2023-04-14T23:00:13Z",
"length_minutes": "20m 18s"
},
{
"title": "Step-By-Step Audit Sales",
"url": "https://www.youtube.com/watch?v=3ucgOU3VO-E",
"publish_date": "2023-04-12T23:00:02Z",
"length_minutes": "1m 0s"
},
{
"title": "Risk Free Smart Contract Audit Offer",
"url": "https://www.youtube.com/watch?v=Yggi_3_pjqI",
"publish_date": "2023-04-10T23:00:13Z",
"length_minutes": "1m 0s"
},
{
"title": "The Ultimate Guide To AMMs",
"url": "https://www.youtube.com/watch?v=QvyMkRtjLv8",
"publish_date": "2023-04-06T23:00:09Z",
"length_minutes": "25m 5s"
},
{
"title": "Diving Deep In Web3 Security",
"url": "https://www.youtube.com/watch?v=xITwzSm3AaE",
"publish_date": "2023-04-05T23:00:26Z",
"length_minutes": "51s"
},
{
"title": "Learn DeFi Primitives For Web3 Security",
"url": "https://www.youtube.com/watch?v=tvw3gdc52E0",
"publish_date": "2023-04-03T23:00:17Z",
"length_minutes": "46s"
},
{
"title": "How To Make 6 Figures+ With Smart Contract Audits",
"url": "https://www.youtube.com/watch?v=3J9zTHGgq1k",
"publish_date": "2023-03-30T23:00:01Z",
"length_minutes": "25m 10s"
},
{
"title": "Go From 0 To 1 In Web3 Security",
"url": "https://www.youtube.com/watch?v=PgTeUpjIA5o",