-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtools_index.json
More file actions
1541 lines (1541 loc) · 61.2 KB
/
tools_index.json
File metadata and controls
1541 lines (1541 loc) · 61.2 KB
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
{
"generated_at": "2025-09-08T12:06:45.734398+00:00",
"repo": "github.com/DefconParrot/DefconArsenalTools",
"tool_count": 59,
"categories": [
{
"name": "Azure",
"tools": [
{
"title": "BrokenbyDesign - Vulnerable Azure Enivornment",
"filename": "Cloud/DC30/brokenbydesign-azure.md",
"dc": "Defcon 30 - (Y.2022)",
"presenters": [
{
"name": "Secura",
"url": "https://www.secura.net/"
}
],
"description": "A broken-by-design Azure environment to practice and train security skills in the cloud domain.",
"image": "https://user-images.githubusercontent.com/14212955/180998359-a17af967-84bc-4541-af75-06a1ea4e5927.png",
"source_url": "https://github.com/SecuraBV/brokenbydesign-azure",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"azure",
"cloud",
"terraform",
"vulnerable"
]
}
]
},
{
"name": "Bug Bounty",
"tools": [
{
"title": "Ensemble",
"filename": "bug_bounty/DC31/Ensemble.md",
"dc": "Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "Anthony 'DotNetRussell' Rusell",
"url": "https://twitter.com/DotNetRussell"
}
],
"description": "Title : DEF CON 31 Recon Village - Bug Bounty Recon Bypassing Geographic DNS with Ensemble",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/da877686-de2f-4f2b-9731-50602f5eb5c3",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/da877686-de2f-4f2b-9731-50602f5eb5c3",
"talk_url": "https://youtu.be/Bo77s0f1XNc",
"license": "",
"legal_status": "dual-use",
"tags": [
"bug bounty",
"scanner"
]
}
]
},
{
"name": "Cloud",
"tools": [
{
"title": "AzureGoat : A Damn Vulnerable Azure Infrastructure",
"filename": "Cloud/DC30/AzureGoat.md",
"dc": "Defcon 30 - (Y.2022)",
"presenters": [
{
"name": "INE",
"url": "https://ine.com/"
}
],
"description": "AzureGoat is a vulnerable by design infrastructure on Azure featuring the latest released OWASP Top 10 web application security risks (2021) and other misconfiguration based on services such as App Functions, CosmosDB, Storage Accounts, Automation and Identities. AzureGoat mimics real-world infrastructure but with added vulnerabilities. It features multiple escalation paths and is focused on a black-box approach.",
"image": "https://user-images.githubusercontent.com/25884689/183740998-da6f7ae7-2df0-4557-a6f5-2f0040ebe0dc.png",
"source_url": "https://github.com/ine-labs/AzureGoat",
"talk_url": "",
"license": "",
"legal_status": "educational",
"tags": [
"azure",
"cloud",
"terraform",
"vulnerable"
]
}
]
},
{
"name": "Credential Scanning",
"tools": [
{
"title": "Git Wild Hunt",
"filename": "credential_scanning/DC29/git-wild-hunt.md",
"dc": "Defcon 29 - (Y.2021)",
"presenters": [
{
"name": "José Hernandez",
"url": "https://twitter.com/d1vious"
},
{
"name": "Rod Soto(d1vious)",
"url": "https://twitter.com/rodsoto"
}
],
"description": "Git Wild Hunt is a tool for hunting leaked credentials.",
"image": "https://github.com/josehelps/git-wild-hunt/raw/master/static/wildhunt.jpg",
"source_url": "https://github.com/josehelps/git-wild-hunt/raw/master/static/wildhunt.jpg",
"talk_url": "",
"license": "",
"legal_status": "educational",
"tags": [
"credential scanning",
"offense",
"vulnerability assessment"
]
}
]
},
{
"name": "Ctf",
"tools": [
{
"title": "RTV Secure Terminal CTF",
"filename": "CTF/DC31/RTV_Secure_Terminal_CTF.md",
"dc": "Defcon 31",
"presenters": [
{
"name": "BC Security",
"url": "https://github.com/BC-SECURITY"
}
],
"description": "Secure Terminal CTF Challenge for DC31 Red Team Village",
"image": "https://github.com/BC-SECURITY/Red-Team-Village-CTF-2023/raw/main/img/sc1.png",
"source_url": "https://github.com/BC-SECURITY",
"talk_url": "",
"license": "",
"legal_status": "educational",
"tags": [
"ctf"
]
}
]
},
{
"name": "Evasion",
"tools": [
{
"title": "AceLdr",
"filename": "Evasion/DC30/AceLdr.md",
"dc": "Defcon 30 - (Y.2022)",
"presenters": [
{
"name": "Kyle Avery",
"url": "https://twitter.com/kyleavery_"
}
],
"description": "Title : DEF CON 30 - Kyle Avery - Avoiding Memory Scanners - Customizing Malware to Evade YARA, PE-sieve",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/a964c956-f0ba-40f3-90ba-6fd7ead094ae",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/a964c956-f0ba-40f3-90ba-6fd7ead094ae",
"talk_url": "https://youtu.be/edIMUcxCueA",
"license": "",
"legal_status": "dual-use",
"tags": [
"anti-detection",
"cobalt strike",
"evasion",
"loader"
]
}
]
},
{
"name": "Existing Category Folder Or New",
"tools": [
{
"title": "Tool name",
"filename": "sample_tool_submit.md",
"dc": "Defcon 20",
"presenters": [
{
"name": "John Doe",
"url": "http://site.com"
},
{
"name": "Jane Doe",
"url": "http://site.com"
}
],
"description": "Lorem ipsum dolor sit amet, consectetur adipiscingelit, sed do eiusmod tempor incididunt ut laboreet dolore magna aliqua. Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi utaliquip ex ea commodo consequat. Duis aute iruredolor in reprehenderit in voluptate velit essecillum dolore eu fugiat nulla pariatur. Excepteursint occaecat cupidatat non proident, sunt inculpa qui officia deserunt mollit anim id estlaborum.",
"image": "https://image.jpg",
"source_url": "https://github.com/jdoe/MyTool",
"talk_url": "",
"license": "",
"legal_status": "educational",
"tags": [
"existing_category_folder_or_new",
"tag2_identifier",
"tool_identifier_tag_eg_security"
]
}
]
},
{
"name": "Exploitation",
"tools": [
{
"title": "ContainYourself",
"filename": "exploitation/DC31/ContainYourself.md",
"dc": "Defcon 31",
"presenters": [
{
"name": "Daniel Avinoam",
"url": "https://twitter.com/daniel_avinoam"
}
],
"description": "A PoC of the ContainYourself research presented in DEFCON 31, which abuses the Windows containers framework to bypass EDRs.",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/d32b808b-30ec-483b-80c1-abaec8dc57c4",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/d32b808b-30ec-483b-80c1-abaec8dc57c4",
"talk_url": "https://youtu.be/Cm-zFx6hwzk",
"license": "",
"legal_status": "dual-use",
"tags": [
"exploitation",
"privilege escalation",
"security",
"windows exploitation"
]
},
{
"title": "CVE-2023-34362",
"filename": "exploitation/DC31/CVE-2023-26067.md",
"dc": "Defcon 31",
"presenters": [
{
"name": "Horizon3 Attack Team",
"url": "https://twitter.com/Horizon3Attack"
},
{
"name": "James Horseman",
"url": "https://twitter.com/JamesHorseman2"
},
{
"name": "Zach Hanley",
"url": "https://twitter.com/hacks_zach"
}
],
"description": "\"New isn't always novel: grep'ing your way to $20K at PWN2OWN, and how you can too\"",
"image": "",
"source_url": "https://github.com/user-attachments/assets/a02f6bce-188b-400c-87ed-fe21f9398674\"",
"talk_url": "https://www.youtube.com/watch?v=vBFKVUQvESM",
"license": "",
"legal_status": "dual-use",
"tags": [
"ad",
"bug bounty",
"command injection",
"exploitation",
"lexmark printers"
]
},
{
"title": "EDRSandBlast",
"filename": "exploitation/DC30/EDRSandBlast.md",
"dc": "DEF CON 30",
"presenters": [
{
"name": "Maxime Meignan (th3m4ks)",
"url": "https://twitter.com/th3m4ks"
},
{
"name": "Thomas Diot (Qazeer)",
"url": "https://twitter.com/_Qazeer"
}
],
"description": "EDRSandBlast is a tool written in C that implements and industrializes known as well as original bypass techniques to make EDR evasion easier during adversary simulations. Both user-land and kernel-land EDR detection capabilities can be bypassed, using multiple unhooking techniques and a vulnerable signed driver to unregister kernel callbacks and disable the ETW Threat Intelligence provider. Since the initial release, multiple improvements have been implemented in EDRSandBlast: it is now possible to use this toolbox as a library from another attacking tool, new bypasses have been implemented, the embedded vulnerable driver is now interchangeable to increase stealthiness and the use of a pre-built offsets database is no more required! Come discover our tool and its new features, learn (or teach us!) something about EDRs and discuss about the potential improvements to this project.",
"image": "https://pbs.twimg.com/media/Favwmx3XgAAR2Tk?format=jpg&name=4096x4096",
"source_url": "https://github.com/wavestone-cdt/EDRSandblast/tree/DefCon30Release",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"attack tool",
"bypass",
"exploitation"
]
},
{
"title": "guestlist",
"filename": "exploitation/DC31/guestlist.md",
"dc": "Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "nyxgeek",
"url": "https://twitter.com/nyxgeek"
}
],
"description": "Title : DEF CON 31 - Track the Planet! Mapping IDs, Monitoring Presence in the Azure Ecosystem",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/c553bfeb-b062-4e45-8368-852cd3ac4299",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/c553bfeb-b062-4e45-8368-852cd3ac4299",
"talk_url": "https://www.youtube.com/watch?v=4AY5uS3yFjE",
"license": "",
"legal_status": "dual-use",
"tags": [
"enumuration",
"exploitation",
"microsoft"
]
},
{
"title": "Jacob Baines - Do Not Trust the ASA, Trojans!",
"filename": "exploitation/DC30/cisco_asa_research.md",
"dc": "DEF CON 30",
"presenters": [
{
"name": "Jacob Baines",
"url": "https://twitter.com/Junior_Baines"
}
],
"description": "Cisco ASA Software and ASDM Security Research : Slides and code presented at BHUSA 2022 and DEF CON 30.",
"image": "https://pbs.twimg.com/media/FZQGkY9WYAMr77d?format=jpg&name=large",
"source_url": "https://github.com/jbaines-r7/cisco_asa_research",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"bypass",
"exploitation",
"hacking"
]
},
{
"title": "NoFilter",
"filename": "exploitation/DC31/NoFilter.md",
"dc": "Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "Ron Ben Yizhak",
"url": "https://twitter.com/RonB_Y"
}
],
"description": "Tool for abusing the Windows Filtering Platform for privilege escalation. It can launch a new console as \"NT AUTHORITY\\SYSTEM\" or as another user that is logged on to the machine.",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/1e80cdd2-131e-4c92-ab19-e03f02fb0d24",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/1e80cdd2-131e-4c92-ab19-e03f02fb0d24",
"talk_url": "https://youtu.be/73z3-j9uGis",
"license": "",
"legal_status": "dual-use",
"tags": [
"exploitation",
"privilege escalation",
"security",
"windows exploitation"
]
},
{
"title": "Powerpwn: An offensive/defensive security toolset for Microsoft 365 Power Platform.",
"filename": "exploitation/DC30/powerpwn.md",
"dc": "DEF CON 30 and Black Hat USA 2023",
"presenters": [
{
"name": "Michael Bargury",
"url": ""
}
],
"description": "Presenter: Michael Bargury",
"image": "https://github.com/mbrg/power-pwn/blob/main/wiki/powerpwn_asci_black.png",
"source_url": "https://github.com/mbrg/power-pwn/blob/main/wiki/powerpwn_asci_black.png",
"talk_url": "https://www.youtube.com/watch?v=e8PEIOa6W9M",
"license": "",
"legal_status": "dual-use",
"tags": [
"bypass",
"exploitation",
"hacking",
"phishing"
]
},
{
"title": "RelocBonus",
"filename": "exploitation/DC26/RelocBonus.md",
"dc": "Defcon 26",
"presenters": [
{
"name": "Nick Cano",
"url": "https://twitter.com/nickcano93"
}
],
"description": "RelocBonus is an obfuscation tool for Windows which instruments the Windows Loader into acting as an unpacking engine.",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/a918eb66-6deb-43d0-aa8b-91995d3f7640",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/a918eb66-6deb-43d0-aa8b-91995d3f7640",
"talk_url": "https://youtu.be/SseZ_t9DToo",
"license": "",
"legal_status": "dual-use",
"tags": [
"exploitation",
"obfuscator tool",
"windows"
]
},
{
"title": "RISC-V: Emoji Shellcoding 🙂",
"filename": "exploitation/DC30/emoji_shellcoding.md",
"dc": "DEF CON 30",
"presenters": [
{
"name": "Georges-Axel Jaloyan",
"url": "https://twitter.com/GAJaloyan"
}
],
"description": "Shellcodes are short executable stubs that are used in various attack scenarios, whenever code execution is possible. After quickly recalling what a shellcode is and why designing shellcodes under constraints is an art, we'll study a new constraint for which (to the best of our knowledge) no such shellcode was previously known: emoji shellcoding. We'll tackle this problem by introducing a new and more generic approach to shellcoding under constraints. Brace yourselves, you'll see some black magic weaponizing these cute little emojis 🥰 into merciless exploits 👿.",
"image": "https://video-images.vice.com/articles/62fa4a97f81113009460f860/lede/1660571450368-screen-shot-2022-08-15-at-95032-am.png?crop=0.9876543209876543xw:1xh;center,center&resize=1200:*",
"source_url": "https://github.com/RischardV/emoji-shellcoding",
"talk_url": "https://youtu.be/E8puAkalMRQ",
"license": "",
"legal_status": "dual-use",
"tags": [
"bypass",
"exploitation",
"hacking"
]
},
{
"title": "SpamChannel",
"filename": "exploitation/DC31/SpamChannel.md",
"dc": "Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "Marcello \"byt3bl33d3r\" Salvati",
"url": "https://www.linkedin.com/in/byt3bl33d3r/"
}
],
"description": "A tool that allows you to spoof emails from any of the +2 Million domains using MailChannels. It also gives you a slightly higher chance of landing a spoofed emails from any domain that doesn't have an SPF & DMARC due to ARC adoption.",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/8760e095-ae5b-4380-b668-1c033878ae43",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/8760e095-ae5b-4380-b668-1c033878ae43",
"talk_url": "https://youtu.be/NwnT15q_PS8",
"license": "",
"legal_status": "dual-use",
"tags": [
"emails",
"exploitation",
"spoofing"
]
},
{
"title": "The PACMAN Attack: Breaking PAC on the Apple M1 with Hardware Attacks",
"filename": "exploitation/DC30/pacman.md",
"dc": "DEF CON 30",
"presenters": [
{
"name": "Joseph Ravichandran, PhD student at MIT",
"url": "https://twitter.com/0xjprx/"
}
],
"description": "What do you get when you cross pointer authentication with microarchitectural side channels?",
"image": "https://pacmanattack.com/assets/hat.dark.png",
"source_url": "https://github.com/jprx/DEFCON30-PACMAN",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"exploitation",
"hacking"
]
}
]
},
{
"name": "Framework",
"tools": [
{
"title": "canTot",
"filename": "frameworks/DC30/canTot.md",
"dc": "Defcon 30 via @ Car Hacking Village",
"presenters": [
{
"name": "Jay Turla",
"url": "https://twitter.com/shipcod3/"
}
],
"description": "canTot is a cli framework similar to the usage of known frameworks like Metasploit, dronesploit, expliot, and Recon-ng. The fun thing is that it contains fun hacks and known vulnerabilities disclosed. It can also be used as a guide for pentesting vehicles and learning python for Car Hacking the easier way. This is not to reinvent the wheel of known CAN fuzzers, car exploration tools like caring caribou, or other great CAN analyzers out there. But to combine all the known vulnerabilities and fun CAN bus hacks in automotive security.",
"image": "https://user-images.githubusercontent.com/30528167/194634620-8b84fe95-1be1-43f0-9766-db5bd8bc48ea.png",
"source_url": "https://github.com/shipcod3/canTot",
"talk_url": "https://youtu.be/LRBjGJEBs9I",
"license": "",
"legal_status": "educational",
"tags": [
"framework",
"hacking"
]
},
{
"title": "FRAK",
"filename": "frameworks/DC20/FRAK.md",
"dc": "Defcon 20 via @ Car Hacking Village",
"presenters": [
{
"name": "Red Balloon Security",
"url": "https://redballoonsecurity.com/"
}
],
"description": "FRAK(Ofrak/OpenFRAK) is a framework for unpacking, analyzing, modifying and repacking the firmware images of proprietary embedded devices. The FRAK framework provides a programmatic environment for the analysis of arbitrary embedded device firmware as well as an interactive environment for the disassembly, manipulation and re-assembly of such binary images.",
"image": "https://github.com/redballoonsecurity/ofrak/raw/master/docs/assets/ofrak_gui_1.png",
"source_url": "https://github.com/redballoonsecurity/ofrak/raw/master/docs/assets/ofrak_gui_1.png",
"talk_url": "https://youtu.be/U2Lr6Hf6gOY",
"license": "",
"legal_status": "educational",
"tags": [
"framework",
"hacking"
]
}
]
},
{
"name": "Frameworks",
"tools": [
{
"title": "Akto",
"filename": "frameworks/DC31/akto.md",
"dc": "Appsec Village at Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "Akto Team",
"url": "https://twitter.com/Aktodotio"
},
{
"name": "Ankush Jain",
"url": "https://twitter.com/Ankush12389"
},
{
"name": "Ankita Gupta",
"url": "https://twitter.com/ankitaiitr"
}
],
"description": "Title : DEF CON Appsec Village - Open Source API Security For DevSecOps",
"image": "https://pbs.twimg.com/media/F3winTNWsAA6NI5?format=jpg",
"source_url": "https://github.com/akto-api-security/akto",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"api security",
"api testing",
"appsec",
"frameworks"
]
},
{
"title": "EasyEASM",
"filename": "frameworks/DC31/EasyEASM.md",
"dc": "Recon Village at Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "Jason Haddix",
"url": "https://twitter.com/Jhaddix"
}
],
"description": "Easy EASM is just that... the easiest to set-up tool to give your organization visibility into its external facing assets.",
"image": "https://pbs.twimg.com/media/F3W5ATTXYAA_jHi?format=jpg&name=small",
"source_url": "https://github.com/g0ldencybersec/EasyEASM",
"talk_url": "https://youtu.be/hx0dBo-zKE8",
"license": "",
"legal_status": "dual-use",
"tags": [
"frameworks"
]
},
{
"title": "Empire 4.0 and Beyond",
"filename": "frameworks/DC30/Empire.md",
"dc": "Defcon 30",
"presenters": [
{
"name": "BC Security",
"url": "https://github.com/BC-SECURITY"
},
{
"name": "Anthony 'Cx01N' Rose",
"url": "https://github.com/Cx01N"
},
{
"name": "Vincent 'Vinnybod' Rose",
"url": "https://github.com/vinnybod"
},
{
"name": "Jake 'Hubbl3' Krasnov",
"url": "https://github.com/Hubbl3"
}
],
"description": "Empire is a post-exploitation and adversary emulation framework that is used to aid Red Teams and Penetration Testers.",
"image": "https://user-images.githubusercontent.com/20302208/70022749-1ad2b080-154a-11ea-9d8c-1b42632fd9f9.jpg",
"source_url": "https://github.com/BC-SECURITY",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"c2",
"command and control",
"frameworks"
]
},
{
"title": "Hack to Basics – Adapting Exploit Frameworks to Evade Microsoft ATP",
"filename": "frameworks/DC27/Hack to Basics.md",
"dc": "Defcon 27",
"presenters": [
{
"name": "BC Security",
"url": "https://github.com/BC-SECURITY"
},
{
"name": "Anthony 'Cx01N' Rose",
"url": "https://github.com/Cx01N"
},
{
"name": "Jake 'Hubbl3' Krasnov",
"url": "https://github.com/Hubbl3"
},
{
"name": "Vincent 'Vinnybod' Rose",
"url": "https://github.com/vinnybod"
}
],
"description": "Many pentesters are avoiding existing frameworks due to security improvements from Microsoft and smarter practices by network Admins. Red teams don’t have to throw away existing tools because their attacks are being thwarted and contrary to belief, Powershell is not dead. We updated existing tools and demonstrated that they can still be used to launch successful attacks. We would want to get back to the basics and demonstrate that successful attacks are still possible by modifying tools like Empire.",
"image": "",
"source_url": "https://github.com/BC-SECURITY",
"talk_url": "https://www.youtube.com/watch?v=WJgUJLmpKho",
"license": "",
"legal_status": "dual-use",
"tags": [
"frameworks",
"microsoft atp"
]
},
{
"title": "Long Live the Empire: A C2 Workshop for Modern Red Teaming",
"filename": "frameworks/DC31/Long_Live_the_Empire.md",
"dc": "Defcon 31",
"presenters": [
{
"name": "BC Security",
"url": "https://github.com/BC-SECURITY"
},
{
"name": "Anthony 'Cx01N' Rose",
"url": "https://github.com/Cx01N"
},
{
"name": "Jake 'Hubbl3' Krasnov",
"url": "https://github.com/Hubbl3"
},
{
"name": "Vincent 'Vinnybod' Rose",
"url": "https://github.com/vinnybod"
}
],
"description": "Comprehensive workshop to equip participants with an in-depth understanding of modern Command and Control (C2) concepts, focusing on the open-source Empire C2 framework. Learn how to deploy and leverage the Empire framework for executing advanced attack scenarios, thereby sharpening their skills as red team operators.",
"image": "",
"source_url": "https://github.com/BC-SECURITY",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"c2",
"command and control",
"frameworks"
]
},
{
"title": "OPC UA - opcua exploit framework",
"filename": "frameworks/DC31/OPC-UA.md",
"dc": "Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "Claroty Research - Team82",
"url": "https://claroty.com/team82/"
}
],
"description": "Exploiting OPC-UA in Every Possible Way: Practical Attacks Against Modern OPC-UA Architectures",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/2dc91f90-61d5-4343-88ef-503dbe50c73b",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/2dc91f90-61d5-4343-88ef-503dbe50c73b",
"talk_url": "https://youtu.be/de6kpQVvFL0",
"license": "",
"legal_status": "dual-use",
"tags": [
"framework",
"frameworks",
"opc-ua"
]
},
{
"title": "Starkiller",
"filename": "frameworks/DC28/Starkiller.md",
"dc": "Defcon 28",
"presenters": [
{
"name": "BC Security",
"url": "https://github.com/BC-SECURITY"
},
{
"name": "Anthony 'Cx01N' Rose",
"url": "https://github.com/Cx01N"
},
{
"name": "Jake 'Hubbl3' Krasnov",
"url": "https://github.com/Hubbl3"
},
{
"name": "Vincent 'Vinnybod' Rose",
"url": "https://github.com/vinnybod"
}
],
"description": "Starkiller is a frontend for the post-exploitation framework, PowerShell Empire, which incorporates a multi-user GUI application that interfaces with a remote Command and Control (C2) server.",
"image": "https://github.com/BC-SECURITY/Starkiller/raw/main/src/assets/icon.png",
"source_url": "https://github.com/BC-SECURITY",
"talk_url": "https://www.youtube.com/watch?v=rLWySkU0U1U",
"license": "",
"legal_status": "dual-use",
"tags": [
"frameworks",
"post-exploitation"
]
},
{
"title": "STrace",
"filename": "frameworks/DC30/STrace.md",
"dc": "Defcon 30 - (Y.2023)",
"presenters": [
{
"name": "Stephen Eckels",
"url": "https://twitter.com/stevemk14ebr"
}
],
"description": "Steve's Tracer — a reimplementation of Windows syscall hook using DTrace. A PatchGuard-compatible SSDT hook, but without any hacks. It doesn't extend support to SSSDT (win32k APIs) since the DTrace system call APIs inherently lack compatibility with this additional table. However, it enables tracing Zw\\* kernel APIs along with all user-mode SSDT syscalls.",
"image": "https://user-images.githubusercontent.com/6619205/239956166-bc9b2103-717a-4df1-8c6a-a001db1c75fc.png",
"source_url": "https://github.com/mandiant/STrace",
"talk_url": "",
"license": "",
"legal_status": "educational",
"tags": [
"dtrace",
"framework",
"frameworks",
"windows syscall"
]
},
{
"title": "TeamFiltration",
"filename": "frameworks/DC30/TeamFiltration.md",
"dc": "Defcon 30 via @ TrustedSec",
"presenters": [
{
"name": "Melvin langvik",
"url": "https://twitter.com/Flangvik"
}
],
"description": "TeamFiltration is a cross-platform framework for enumerating, spraying, exfiltrating, and backdooring O365 AAD accounts.",
"image": "https://pbs.twimg.com/media/FeaVEMiXgAwIdrQ?format=png",
"source_url": "https://github.com/Flangvik/TeamFiltration",
"talk_url": "https://www.youtube.com/watch?v=GpZTQHLKelg&feature=youtu.be",
"license": "",
"legal_status": "educational",
"tags": [
"backdoor",
"frameworks"
]
},
{
"title": "windows-dll-env-hijacking",
"filename": "frameworks/DC30/HijackLibs.md",
"dc": "Defcon 30 - (Y.2022)",
"presenters": [
{
"name": "Wietze Beukema",
"url": "https://twitter.com/wietze"
}
],
"description": "Title : Wietze Beukema - Save Environment Variable - Hijacking Legit Apps w Minimal Footprint",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/c7a7c6ff-4b80-49f4-8753-9d9bc0e6cbd7",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/c7a7c6ff-4b80-49f4-8753-9d9bc0e6cbd7",
"talk_url": "https://www.youtube.com/watch?v=LxjnI5h_kls",
"license": "",
"legal_status": "dual-use",
"tags": [
"dll hijacking",
"frameworks",
"microsoft",
"reverse exploitation",
"windows"
]
}
]
},
{
"name": "Hardening",
"tools": [
{
"title": "EMBA - Open-Source Firmware Security Testing",
"filename": "hardening/DC30/EMBA.md",
"dc": "DEF CON 30",
"presenters": [
{
"name": "[Michael Messner](#), [Pascal Eckmann](#)",
"url": ""
}
],
"description": "Penetration testing of current embedded devices is quite complex as we have to deal with different architectures, optimized operating systems and special protocols. EMBA is an open-source firmware analyzer with the goal to simplify, optimize and automate the complex task of firmware security analysis.",
"image": "https://raw.githubusercontent.com/wiki/e-m-b-a/emba/images/youtube-emba.png",
"source_url": "https://github.com/e-m-b-a/emba",
"talk_url": "https://raw.githubusercontent.com/wiki/e-m-b-a/emba/images/youtube-emba.png",
"license": "",
"legal_status": "dual-use",
"tags": [
"bypass",
"exploitation",
"hacking",
"hardening"
]
},
{
"title": "Shiva JIT micropatching engine",
"filename": "hardening/DC31/shiva.md",
"dc": "Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "ElfMaster",
"url": "https://twitter.com/ryan_elfmaster"
}
],
"description": "Title : Revolutionizing ELF binary patching with Shiva By ElfMaster",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/8450a89f-f05a-49f0-ba16-fa6e77fc6d2a",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/8450a89f-f05a-49f0-ba16-fa6e77fc6d2a",
"talk_url": "https://www.youtube.com/watch?v=TDMWejaucdg",
"license": "",
"legal_status": "dual-use",
"tags": [
"binary",
"c",
"hardening",
"hardening tools",
"reverse engeneering"
]
}
]
},
{
"name": "Lock Picking",
"tools": [
{
"title": "Please do not Duplicate: Attacking the Knox Box and Other Keyed Alike Systems",
"filename": "lock_picking/DC26/Gatekeyper.md",
"dc": "Defcon 26 - 2018",
"presenters": [
{
"name": "[m010ch\\_](#)",
"url": ""
}
],
"description": "A collection of tools for generating models of physical keys for 3D printing",
"image": "https://user-images.githubusercontent.com/30528167/197508534-4fe4a909-e9d8-4b61-9e11-68669b8cf4e1.PNG",
"source_url": "https://github.com/100gamma/Gatekeyper",
"talk_url": "https://youtu.be/f4rPDF993qs",
"license": "",
"legal_status": "educational",
"tags": [
"hacking",
"key_model_generator",
"lock picking"
]
}
]
},
{
"name": "Malware Research",
"tools": [
{
"title": "AceLdr - Avoid Memory Scanners",
"filename": "malware_research/DC30/AceLdr.md",
"dc": "DEF CON 30",
"presenters": [
{
"name": "Kyle Avery",
"url": "https://github.com/kyleavery"
}
],
"description": "AceLdr is a reflective loader for executing unmanaged code in memory without touching disk. It is designed for red teamers and security researchers who need to understand execution techniques, in-memory payload delivery, and evasion methods.",
"image": "https://github.com/kyleavery/AceLdr/raw/main/demo.gif",
"source_url": "https://github.com/kyleavery",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"malware",
"malware research"
]
},
{
"title": "Cesare Pizzi - Old Malware, New tools: Ghidra and Commodore 64, why understanding old malicious software still matters",
"filename": "malware_research/DC30/BULA-Virus.md",
"dc": "DEF CON 30",
"presenters": [
{
"name": "Cesare Pizzi",
"url": "https://twitter.com/red5heep"
}
],
"description": "A Commodore 64 Virus Analysis",
"image": "https://user-images.githubusercontent.com/30528167/197393552-3e7e62f1-1fde-46c2-8346-5554d193ed86.png",
"source_url": "https://github.com/cecio/",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"hacking",
"malware research",
"virus"
]
},
{
"title": "Katalina",
"filename": "malware_research/DC31/Katalina.md",
"dc": "Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "Gabi Hookgab",
"url": "https://twitter.com/hookgab"
}
],
"description": "Katalina: an open-source Android string deobfuscator",
"image": "https://user-images.githubusercontent.com/3353285/259824263-5eb16e8e-44c4-4e3f-9cc4-2ed6a7b847ac.png",
"source_url": "https://github.com/huuck/Katalina",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"malware research",
"obfuscation",
"reverse engeneering"
]
},
{
"title": "WINE Pairing with Malware",
"filename": "malware_research/DC31/Wine_Pairing_with_Malware.md",
"dc": "Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "Jared Stroud",
"url": "https://twitter.com/DLL_Cool_J"
}
],
"description": "Title : DEF CON 31 Packet Hacking Village - WINE Pairing with Malware by Jared Stroud",
"image": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/5dec261d-6220-4340-8be3-68c176e422dd",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/5dec261d-6220-4340-8be3-68c176e422dd",
"talk_url": "https://youtu.be/s_YqtMhTr4k",
"license": "",
"legal_status": "dual-use",
"tags": [
"malware research"
]
}
]
},
{
"name": "Microsoft",
"tools": [
{
"title": "FuncoPop",
"filename": "Cloud/DC31/FuncoPop.md",
"dc": "Defcon 31 - (Y.2023)",
"presenters": [
{
"name": "Thomas Elling",
"url": "https://twitter.com/thomas_elling"
},
{
"name": "Karl Fosaaen",
"url": "https://twitter.com/kfosaaen"
}
],
"description": "Title : DEF CON Cloud Village - What the Function: A Deep Dive into Azure Function App Security",
"image": "https://notpayloads.blob.core.windows.net/images/FuncoPop-bg-final.png",
"source_url": "https://github.com/DefconParrot/DefconArsenalTools/assets/30528167/c1a162b4-bc22-47fb-93d6-f77666b9c144",
"talk_url": "",
"license": "",
"legal_status": "dual-use",
"tags": [
"azure",
"cloud tools",
"exploitation",
"microsoft"
]
}
]
},
{
"name": "Network Analysis",
"tools": [
{
"title": "CloudRecon",
"filename": "network_analysis/DC31/CloudRecon.md",
"dc": "Defcon 31 - (Y.2023)",