-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
executable file
·7538 lines (7538 loc) · 359 KB
/
data.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
{
"data": [
{
"id": 348457675,
"node_id": "MDEwOlJlcG9zaXRvcnkzNDg0NTc2NzU=",
"name": "apfell",
"full_name": "MythicAgents/apfell",
"private": false,
"owner": {
"login": "MythicAgents",
"id": 73145583,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjczMTQ1NTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/73145583?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MythicAgents",
"html_url": "https://github.com/MythicAgents",
"followers_url": "https://api.github.com/users/MythicAgents/followers",
"following_url": "https://api.github.com/users/MythicAgents/following{/other_user}",
"gists_url": "https://api.github.com/users/MythicAgents/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MythicAgents/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MythicAgents/subscriptions",
"organizations_url": "https://api.github.com/users/MythicAgents/orgs",
"repos_url": "https://api.github.com/users/MythicAgents/repos",
"events_url": "https://api.github.com/users/MythicAgents/events{/privacy}",
"received_events_url": "https://api.github.com/users/MythicAgents/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/MythicAgents/apfell",
"description": "JavaScript for Automation (JXA) macOS agent",
"fork": false,
"url": "https://api.github.com/repos/MythicAgents/apfell",
"forks_url": "https://api.github.com/repos/MythicAgents/apfell/forks",
"keys_url": "https://api.github.com/repos/MythicAgents/apfell/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/MythicAgents/apfell/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/MythicAgents/apfell/teams",
"hooks_url": "https://api.github.com/repos/MythicAgents/apfell/hooks",
"issue_events_url": "https://api.github.com/repos/MythicAgents/apfell/issues/events{/number}",
"events_url": "https://api.github.com/repos/MythicAgents/apfell/events",
"assignees_url": "https://api.github.com/repos/MythicAgents/apfell/assignees{/user}",
"branches_url": "https://api.github.com/repos/MythicAgents/apfell/branches{/branch}",
"tags_url": "https://api.github.com/repos/MythicAgents/apfell/tags",
"blobs_url": "https://api.github.com/repos/MythicAgents/apfell/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/MythicAgents/apfell/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/MythicAgents/apfell/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/MythicAgents/apfell/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/MythicAgents/apfell/statuses/{sha}",
"languages_url": "https://api.github.com/repos/MythicAgents/apfell/languages",
"stargazers_url": "https://api.github.com/repos/MythicAgents/apfell/stargazers",
"contributors_url": "https://api.github.com/repos/MythicAgents/apfell/contributors",
"subscribers_url": "https://api.github.com/repos/MythicAgents/apfell/subscribers",
"subscription_url": "https://api.github.com/repos/MythicAgents/apfell/subscription",
"commits_url": "https://api.github.com/repos/MythicAgents/apfell/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/MythicAgents/apfell/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/MythicAgents/apfell/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/MythicAgents/apfell/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/MythicAgents/apfell/contents/{+path}",
"compare_url": "https://api.github.com/repos/MythicAgents/apfell/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/MythicAgents/apfell/merges",
"archive_url": "https://api.github.com/repos/MythicAgents/apfell/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/MythicAgents/apfell/downloads",
"issues_url": "https://api.github.com/repos/MythicAgents/apfell/issues{/number}",
"pulls_url": "https://api.github.com/repos/MythicAgents/apfell/pulls{/number}",
"milestones_url": "https://api.github.com/repos/MythicAgents/apfell/milestones{/number}",
"notifications_url": "https://api.github.com/repos/MythicAgents/apfell/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/MythicAgents/apfell/labels{/name}",
"releases_url": "https://api.github.com/repos/MythicAgents/apfell/releases{/id}",
"deployments_url": "https://api.github.com/repos/MythicAgents/apfell/deployments",
"created_at": "2021-03-16T18:48:23Z",
"updated_at": "2025-01-16T02:34:36Z",
"pushed_at": "2024-11-18T23:08:11Z",
"git_url": "git://github.com/MythicAgents/apfell.git",
"ssh_url": "[email protected]:MythicAgents/apfell.git",
"clone_url": "https://github.com/MythicAgents/apfell.git",
"svn_url": "https://github.com/MythicAgents/apfell",
"homepage": null,
"size": 715,
"stargazers_count": 67,
"watchers_count": 67,
"language": "Python",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 15,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 1,
"license": {
"key": "bsd-3-clause",
"name": "BSD 3-Clause \"New\" or \"Revised\" License",
"spdx_id": "BSD-3-Clause",
"url": "https://api.github.com/licenses/bsd-3-clause",
"node_id": "MDc6TGljZW5zZTU="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 15,
"open_issues": 1,
"watchers": 67,
"default_branch": "master",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
},
"allow_squash_merge": true,
"allow_merge_commit": true,
"allow_rebase_merge": true,
"allow_auto_merge": false,
"delete_branch_on_merge": false,
"allow_update_branch": false,
"use_squash_pr_title_as_default": false,
"squash_merge_commit_message": "COMMIT_MESSAGES",
"squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
"merge_commit_message": "PR_TITLE",
"merge_commit_title": "MERGE_MESSAGE",
"custom_properties": {},
"organization": {
"login": "MythicAgents",
"id": 73145583,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjczMTQ1NTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/73145583?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MythicAgents",
"html_url": "https://github.com/MythicAgents",
"followers_url": "https://api.github.com/users/MythicAgents/followers",
"following_url": "https://api.github.com/users/MythicAgents/following{/other_user}",
"gists_url": "https://api.github.com/users/MythicAgents/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MythicAgents/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MythicAgents/subscriptions",
"organizations_url": "https://api.github.com/users/MythicAgents/orgs",
"repos_url": "https://api.github.com/users/MythicAgents/repos",
"events_url": "https://api.github.com/users/MythicAgents/events{/privacy}",
"received_events_url": "https://api.github.com/users/MythicAgents/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"security_and_analysis": {
"secret_scanning": {
"status": "disabled"
},
"secret_scanning_push_protection": {
"status": "disabled"
},
"dependabot_security_updates": {
"status": "disabled"
},
"secret_scanning_non_provider_patterns": {
"status": "disabled"
},
"secret_scanning_validity_checks": {
"status": "disabled"
}
},
"network_count": 15,
"subscribers_count": 8,
"latest": {
"branch": "master",
"commit_message": "Bump Dockerfile tag to match release 'v0.0.1.7'",
"commit_date": 1731971290.0,
"icon": "https://raw.githubusercontent.com/MythicAgents/apfell/master/agent_icons/apfell.svg"
},
"metadata": {
"os": [
"macOS"
],
"languages": [
"jxa"
],
"features": {
"mythic": [
"adjust commands",
"artifacts",
"browser scripts",
"credentials",
"docker",
"dynamic loading",
"file browser",
"file chunking",
"opsec checks",
"process browser",
"process responses",
"screenshots"
],
"custom": [
"key exchange",
"killdate"
]
},
"payload_output": [
"js"
],
"architectures": [
"x86_64",
"arm_64"
],
"c2": [
"http",
"dynamichttp"
],
"mythic_version": "3.3.0",
"agent_version": "0.1.4",
"supported_wrappers": []
},
"remote_images": "ghcr.io/mythicagents/apfell:v0.0.1.7",
"category": "Agent",
"clones": {
"count": 37,
"uniques": 29
}
},
{
"id": 311265450,
"node_id": "MDEwOlJlcG9zaXRvcnkzMTEyNjU0NTA=",
"name": "Apollo",
"full_name": "MythicAgents/Apollo",
"private": false,
"owner": {
"login": "MythicAgents",
"id": 73145583,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjczMTQ1NTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/73145583?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MythicAgents",
"html_url": "https://github.com/MythicAgents",
"followers_url": "https://api.github.com/users/MythicAgents/followers",
"following_url": "https://api.github.com/users/MythicAgents/following{/other_user}",
"gists_url": "https://api.github.com/users/MythicAgents/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MythicAgents/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MythicAgents/subscriptions",
"organizations_url": "https://api.github.com/users/MythicAgents/orgs",
"repos_url": "https://api.github.com/users/MythicAgents/repos",
"events_url": "https://api.github.com/users/MythicAgents/events{/privacy}",
"received_events_url": "https://api.github.com/users/MythicAgents/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/MythicAgents/Apollo",
"description": "A .NET Framework 4.0 Windows Agent",
"fork": false,
"url": "https://api.github.com/repos/MythicAgents/Apollo",
"forks_url": "https://api.github.com/repos/MythicAgents/Apollo/forks",
"keys_url": "https://api.github.com/repos/MythicAgents/Apollo/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/MythicAgents/Apollo/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/MythicAgents/Apollo/teams",
"hooks_url": "https://api.github.com/repos/MythicAgents/Apollo/hooks",
"issue_events_url": "https://api.github.com/repos/MythicAgents/Apollo/issues/events{/number}",
"events_url": "https://api.github.com/repos/MythicAgents/Apollo/events",
"assignees_url": "https://api.github.com/repos/MythicAgents/Apollo/assignees{/user}",
"branches_url": "https://api.github.com/repos/MythicAgents/Apollo/branches{/branch}",
"tags_url": "https://api.github.com/repos/MythicAgents/Apollo/tags",
"blobs_url": "https://api.github.com/repos/MythicAgents/Apollo/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/MythicAgents/Apollo/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/MythicAgents/Apollo/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/MythicAgents/Apollo/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/MythicAgents/Apollo/statuses/{sha}",
"languages_url": "https://api.github.com/repos/MythicAgents/Apollo/languages",
"stargazers_url": "https://api.github.com/repos/MythicAgents/Apollo/stargazers",
"contributors_url": "https://api.github.com/repos/MythicAgents/Apollo/contributors",
"subscribers_url": "https://api.github.com/repos/MythicAgents/Apollo/subscribers",
"subscription_url": "https://api.github.com/repos/MythicAgents/Apollo/subscription",
"commits_url": "https://api.github.com/repos/MythicAgents/Apollo/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/MythicAgents/Apollo/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/MythicAgents/Apollo/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/MythicAgents/Apollo/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/MythicAgents/Apollo/contents/{+path}",
"compare_url": "https://api.github.com/repos/MythicAgents/Apollo/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/MythicAgents/Apollo/merges",
"archive_url": "https://api.github.com/repos/MythicAgents/Apollo/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/MythicAgents/Apollo/downloads",
"issues_url": "https://api.github.com/repos/MythicAgents/Apollo/issues{/number}",
"pulls_url": "https://api.github.com/repos/MythicAgents/Apollo/pulls{/number}",
"milestones_url": "https://api.github.com/repos/MythicAgents/Apollo/milestones{/number}",
"notifications_url": "https://api.github.com/repos/MythicAgents/Apollo/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/MythicAgents/Apollo/labels{/name}",
"releases_url": "https://api.github.com/repos/MythicAgents/Apollo/releases{/id}",
"deployments_url": "https://api.github.com/repos/MythicAgents/Apollo/deployments",
"created_at": "2020-11-09T08:05:16Z",
"updated_at": "2025-01-09T19:58:45Z",
"pushed_at": "2025-01-08T23:52:51Z",
"git_url": "git://github.com/MythicAgents/Apollo.git",
"ssh_url": "[email protected]:MythicAgents/Apollo.git",
"clone_url": "https://github.com/MythicAgents/Apollo.git",
"svn_url": "https://github.com/MythicAgents/Apollo",
"homepage": null,
"size": 26051,
"stargazers_count": 460,
"watchers_count": 460,
"language": "C#",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 94,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 10,
"license": {
"key": "bsd-3-clause",
"name": "BSD 3-Clause \"New\" or \"Revised\" License",
"spdx_id": "BSD-3-Clause",
"url": "https://api.github.com/licenses/bsd-3-clause",
"node_id": "MDc6TGljZW5zZTU="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 94,
"open_issues": 10,
"watchers": 460,
"default_branch": "master",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
},
"allow_squash_merge": true,
"allow_merge_commit": true,
"allow_rebase_merge": true,
"allow_auto_merge": false,
"delete_branch_on_merge": false,
"allow_update_branch": false,
"use_squash_pr_title_as_default": false,
"squash_merge_commit_message": "COMMIT_MESSAGES",
"squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
"merge_commit_message": "PR_TITLE",
"merge_commit_title": "MERGE_MESSAGE",
"custom_properties": {},
"organization": {
"login": "MythicAgents",
"id": 73145583,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjczMTQ1NTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/73145583?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MythicAgents",
"html_url": "https://github.com/MythicAgents",
"followers_url": "https://api.github.com/users/MythicAgents/followers",
"following_url": "https://api.github.com/users/MythicAgents/following{/other_user}",
"gists_url": "https://api.github.com/users/MythicAgents/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MythicAgents/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MythicAgents/subscriptions",
"organizations_url": "https://api.github.com/users/MythicAgents/orgs",
"repos_url": "https://api.github.com/users/MythicAgents/repos",
"events_url": "https://api.github.com/users/MythicAgents/events{/privacy}",
"received_events_url": "https://api.github.com/users/MythicAgents/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"security_and_analysis": {
"secret_scanning": {
"status": "disabled"
},
"secret_scanning_push_protection": {
"status": "disabled"
},
"dependabot_security_updates": {
"status": "disabled"
},
"secret_scanning_non_provider_patterns": {
"status": "disabled"
},
"secret_scanning_validity_checks": {
"status": "disabled"
}
},
"network_count": 94,
"subscribers_count": 19,
"latest": {
"branch": "master",
"commit_message": "Bump Dockerfile tag to match release 'v0.0.0.17'",
"commit_date": 1736380370.0,
"icon": "https://raw.githubusercontent.com/MythicAgents/Apollo/master/agent_icons/apollo.svg"
},
"metadata": {
"os": [
"Windows"
],
"languages": [
".NET Framework"
],
"features": {
"mythic": [
"artifacts",
"browser scripts",
"credentials",
"docker",
"dynamic loading",
"file chunking",
"file browser",
"keylogging",
"p2p",
"process browser",
"push c2",
"rpfwd",
"screenshots",
"socks"
],
"custom": [
"bofs",
"key exchange",
"killdate",
"execute pe",
"execute assembly",
"inline assembly",
"mimikatz",
"powerpick",
"donut",
"sRDI",
"shellcode injection"
]
},
"payload_output": [
"exe",
"shellcode",
"service"
],
"architectures": [
"x86_64"
],
"c2": [
"http",
"smb",
"tcp",
"websocket"
],
"mythic_version": "3.3.1-rc35",
"agent_version": "2.2.23",
"supported_wrappers": [
"service_wrapper",
"scarecrow_wrapper"
]
},
"remote_images": "ghcr.io/mythicagents/apollo:v0.0.0.17",
"category": "Agent",
"clones": {
"count": 126,
"uniques": 88
}
},
{
"id": 451627009,
"node_id": "R_kgDOGutIAQ",
"name": "Athena",
"full_name": "MythicAgents/Athena",
"private": false,
"owner": {
"login": "MythicAgents",
"id": 73145583,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjczMTQ1NTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/73145583?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MythicAgents",
"html_url": "https://github.com/MythicAgents",
"followers_url": "https://api.github.com/users/MythicAgents/followers",
"following_url": "https://api.github.com/users/MythicAgents/following{/other_user}",
"gists_url": "https://api.github.com/users/MythicAgents/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MythicAgents/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MythicAgents/subscriptions",
"organizations_url": "https://api.github.com/users/MythicAgents/orgs",
"repos_url": "https://api.github.com/users/MythicAgents/repos",
"events_url": "https://api.github.com/users/MythicAgents/events{/privacy}",
"received_events_url": "https://api.github.com/users/MythicAgents/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/MythicAgents/Athena",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/MythicAgents/Athena",
"forks_url": "https://api.github.com/repos/MythicAgents/Athena/forks",
"keys_url": "https://api.github.com/repos/MythicAgents/Athena/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/MythicAgents/Athena/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/MythicAgents/Athena/teams",
"hooks_url": "https://api.github.com/repos/MythicAgents/Athena/hooks",
"issue_events_url": "https://api.github.com/repos/MythicAgents/Athena/issues/events{/number}",
"events_url": "https://api.github.com/repos/MythicAgents/Athena/events",
"assignees_url": "https://api.github.com/repos/MythicAgents/Athena/assignees{/user}",
"branches_url": "https://api.github.com/repos/MythicAgents/Athena/branches{/branch}",
"tags_url": "https://api.github.com/repos/MythicAgents/Athena/tags",
"blobs_url": "https://api.github.com/repos/MythicAgents/Athena/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/MythicAgents/Athena/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/MythicAgents/Athena/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/MythicAgents/Athena/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/MythicAgents/Athena/statuses/{sha}",
"languages_url": "https://api.github.com/repos/MythicAgents/Athena/languages",
"stargazers_url": "https://api.github.com/repos/MythicAgents/Athena/stargazers",
"contributors_url": "https://api.github.com/repos/MythicAgents/Athena/contributors",
"subscribers_url": "https://api.github.com/repos/MythicAgents/Athena/subscribers",
"subscription_url": "https://api.github.com/repos/MythicAgents/Athena/subscription",
"commits_url": "https://api.github.com/repos/MythicAgents/Athena/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/MythicAgents/Athena/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/MythicAgents/Athena/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/MythicAgents/Athena/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/MythicAgents/Athena/contents/{+path}",
"compare_url": "https://api.github.com/repos/MythicAgents/Athena/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/MythicAgents/Athena/merges",
"archive_url": "https://api.github.com/repos/MythicAgents/Athena/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/MythicAgents/Athena/downloads",
"issues_url": "https://api.github.com/repos/MythicAgents/Athena/issues{/number}",
"pulls_url": "https://api.github.com/repos/MythicAgents/Athena/pulls{/number}",
"milestones_url": "https://api.github.com/repos/MythicAgents/Athena/milestones{/number}",
"notifications_url": "https://api.github.com/repos/MythicAgents/Athena/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/MythicAgents/Athena/labels{/name}",
"releases_url": "https://api.github.com/repos/MythicAgents/Athena/releases{/id}",
"deployments_url": "https://api.github.com/repos/MythicAgents/Athena/deployments",
"created_at": "2022-01-24T20:44:38Z",
"updated_at": "2025-01-22T16:47:49Z",
"pushed_at": "2025-01-22T16:47:45Z",
"git_url": "git://github.com/MythicAgents/Athena.git",
"ssh_url": "[email protected]:MythicAgents/Athena.git",
"clone_url": "https://github.com/MythicAgents/Athena.git",
"svn_url": "https://github.com/MythicAgents/Athena",
"homepage": null,
"size": 12353,
"stargazers_count": 184,
"watchers_count": 184,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 39,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 8,
"license": {
"key": "bsd-3-clause",
"name": "BSD 3-Clause \"New\" or \"Revised\" License",
"spdx_id": "BSD-3-Clause",
"url": "https://api.github.com/licenses/bsd-3-clause",
"node_id": "MDc6TGljZW5zZTU="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 39,
"open_issues": 8,
"watchers": 184,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
},
"allow_squash_merge": true,
"allow_merge_commit": true,
"allow_rebase_merge": true,
"allow_auto_merge": false,
"delete_branch_on_merge": false,
"allow_update_branch": false,
"use_squash_pr_title_as_default": false,
"squash_merge_commit_message": "COMMIT_MESSAGES",
"squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
"merge_commit_message": "PR_TITLE",
"merge_commit_title": "MERGE_MESSAGE",
"custom_properties": {},
"organization": {
"login": "MythicAgents",
"id": 73145583,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjczMTQ1NTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/73145583?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MythicAgents",
"html_url": "https://github.com/MythicAgents",
"followers_url": "https://api.github.com/users/MythicAgents/followers",
"following_url": "https://api.github.com/users/MythicAgents/following{/other_user}",
"gists_url": "https://api.github.com/users/MythicAgents/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MythicAgents/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MythicAgents/subscriptions",
"organizations_url": "https://api.github.com/users/MythicAgents/orgs",
"repos_url": "https://api.github.com/users/MythicAgents/repos",
"events_url": "https://api.github.com/users/MythicAgents/events{/privacy}",
"received_events_url": "https://api.github.com/users/MythicAgents/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"security_and_analysis": {
"secret_scanning": {
"status": "disabled"
},
"secret_scanning_push_protection": {
"status": "disabled"
},
"dependabot_security_updates": {
"status": "disabled"
},
"secret_scanning_non_provider_patterns": {
"status": "disabled"
},
"secret_scanning_validity_checks": {
"status": "disabled"
}
},
"network_count": 39,
"subscribers_count": 5,
"latest": {
"branch": "main",
"commit_message": "Merge branch 'main' of https://github.com/MythicAgents/Athen...",
"commit_date": 1737564463.0,
"icon": "https://raw.githubusercontent.com/MythicAgents/Athena/main/agent_icons/athena.svg"
},
"metadata": {
"os": [
"Windows",
"macOS",
"Linux"
],
"languages": [
".NET"
],
"features": {
"mythic": [
"artifacts",
"browser scripts",
"docker",
"dynamic loading",
"file chunking",
"file browser",
"interactive",
"keylogging",
"p2p",
"process browser",
"process responses",
"push c2",
"rpfwd",
"screenshots",
"socks"
],
"custom": [
"execute assembly",
"shellcode execution",
"shellcode injection",
"multiple egress",
"killdate",
"obfuscation",
"bofs",
"inline assembly",
"donut",
"ssh client",
"sftp client",
"python execution"
]
},
"payload_output": [
"exe",
"macho",
"elf",
"service"
],
"architectures": [
"x86",
"x86_64",
"arm_64"
],
"c2": [
"http",
"websocket",
"smb",
"discord",
"github"
],
"mythic_version": "3.2",
"agent_version": "2.0.2",
"supported_wrappers": []
},
"remote_images": "ghcr.io/mythicagents/athena:v2.2.1-rc8",
"category": "Agent",
"clones": {
"count": 110,
"uniques": 51
}
},
{
"id": 542708703,
"node_id": "R_kgDOIFkT3w",
"name": "freyja",
"full_name": "MythicAgents/freyja",
"private": false,
"owner": {
"login": "MythicAgents",
"id": 73145583,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjczMTQ1NTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/73145583?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MythicAgents",
"html_url": "https://github.com/MythicAgents",
"followers_url": "https://api.github.com/users/MythicAgents/followers",
"following_url": "https://api.github.com/users/MythicAgents/following{/other_user}",
"gists_url": "https://api.github.com/users/MythicAgents/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MythicAgents/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MythicAgents/subscriptions",
"organizations_url": "https://api.github.com/users/MythicAgents/orgs",
"repos_url": "https://api.github.com/users/MythicAgents/repos",
"events_url": "https://api.github.com/users/MythicAgents/events{/privacy}",
"received_events_url": "https://api.github.com/users/MythicAgents/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/MythicAgents/freyja",
"description": "Freyja is a Golang, Purple Team agent that compiles into Windows, Linux and macOS x64 executables.",
"fork": false,
"url": "https://api.github.com/repos/MythicAgents/freyja",
"forks_url": "https://api.github.com/repos/MythicAgents/freyja/forks",
"keys_url": "https://api.github.com/repos/MythicAgents/freyja/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/MythicAgents/freyja/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/MythicAgents/freyja/teams",
"hooks_url": "https://api.github.com/repos/MythicAgents/freyja/hooks",
"issue_events_url": "https://api.github.com/repos/MythicAgents/freyja/issues/events{/number}",
"events_url": "https://api.github.com/repos/MythicAgents/freyja/events",
"assignees_url": "https://api.github.com/repos/MythicAgents/freyja/assignees{/user}",
"branches_url": "https://api.github.com/repos/MythicAgents/freyja/branches{/branch}",
"tags_url": "https://api.github.com/repos/MythicAgents/freyja/tags",
"blobs_url": "https://api.github.com/repos/MythicAgents/freyja/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/MythicAgents/freyja/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/MythicAgents/freyja/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/MythicAgents/freyja/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/MythicAgents/freyja/statuses/{sha}",
"languages_url": "https://api.github.com/repos/MythicAgents/freyja/languages",
"stargazers_url": "https://api.github.com/repos/MythicAgents/freyja/stargazers",
"contributors_url": "https://api.github.com/repos/MythicAgents/freyja/contributors",
"subscribers_url": "https://api.github.com/repos/MythicAgents/freyja/subscribers",
"subscription_url": "https://api.github.com/repos/MythicAgents/freyja/subscription",
"commits_url": "https://api.github.com/repos/MythicAgents/freyja/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/MythicAgents/freyja/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/MythicAgents/freyja/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/MythicAgents/freyja/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/MythicAgents/freyja/contents/{+path}",
"compare_url": "https://api.github.com/repos/MythicAgents/freyja/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/MythicAgents/freyja/merges",
"archive_url": "https://api.github.com/repos/MythicAgents/freyja/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/MythicAgents/freyja/downloads",
"issues_url": "https://api.github.com/repos/MythicAgents/freyja/issues{/number}",
"pulls_url": "https://api.github.com/repos/MythicAgents/freyja/pulls{/number}",
"milestones_url": "https://api.github.com/repos/MythicAgents/freyja/milestones{/number}",
"notifications_url": "https://api.github.com/repos/MythicAgents/freyja/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/MythicAgents/freyja/labels{/name}",
"releases_url": "https://api.github.com/repos/MythicAgents/freyja/releases{/id}",
"deployments_url": "https://api.github.com/repos/MythicAgents/freyja/deployments",
"created_at": "2022-09-28T17:20:04Z",
"updated_at": "2024-11-21T18:37:10Z",
"pushed_at": "2024-10-29T17:32:07Z",
"git_url": "git://github.com/MythicAgents/freyja.git",
"ssh_url": "[email protected]:MythicAgents/freyja.git",
"clone_url": "https://github.com/MythicAgents/freyja.git",
"svn_url": "https://github.com/MythicAgents/freyja",
"homepage": "",
"size": 1263,
"stargazers_count": 49,
"watchers_count": 49,
"language": "Go",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 11,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 2,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 11,
"open_issues": 2,
"watchers": 49,
"default_branch": "master",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
},
"allow_squash_merge": true,
"allow_merge_commit": true,
"allow_rebase_merge": true,
"allow_auto_merge": false,
"delete_branch_on_merge": false,
"allow_update_branch": false,
"use_squash_pr_title_as_default": false,
"squash_merge_commit_message": "COMMIT_MESSAGES",
"squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
"merge_commit_message": "PR_TITLE",
"merge_commit_title": "MERGE_MESSAGE",
"custom_properties": {},
"organization": {
"login": "MythicAgents",
"id": 73145583,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjczMTQ1NTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/73145583?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MythicAgents",
"html_url": "https://github.com/MythicAgents",
"followers_url": "https://api.github.com/users/MythicAgents/followers",
"following_url": "https://api.github.com/users/MythicAgents/following{/other_user}",
"gists_url": "https://api.github.com/users/MythicAgents/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MythicAgents/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MythicAgents/subscriptions",
"organizations_url": "https://api.github.com/users/MythicAgents/orgs",
"repos_url": "https://api.github.com/users/MythicAgents/repos",
"events_url": "https://api.github.com/users/MythicAgents/events{/privacy}",
"received_events_url": "https://api.github.com/users/MythicAgents/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"security_and_analysis": {
"secret_scanning": {
"status": "disabled"
},
"secret_scanning_push_protection": {
"status": "disabled"
},
"dependabot_security_updates": {
"status": "disabled"
},
"secret_scanning_non_provider_patterns": {
"status": "disabled"
},
"secret_scanning_validity_checks": {
"status": "disabled"
}
},
"network_count": 11,
"subscribers_count": 4,
"latest": {
"branch": "master",
"commit_message": "Merge pull request #10 from MythicAgents/for_Mythic_v3_2\n\nFo...",
"commit_date": 1730223127.0,
"icon": "https://raw.githubusercontent.com/MythicAgents/freyja/master/agent_icons/freyja.svg"
},
"metadata": {
"os": [
"macOS",
"Linux",
"Windows"
],
"languages": [
"go"
],
"features": {
"mythic": [
"alerts",
"artifacts",
"browser scripts",
"docker",
"file chunking",
"file browser",
"interactive",
"p2p",
"push c2",
"rpfwd",
"socks"
],
"custom": [
"key exchange",
"multiple egress",
"killdate"
]
},
"payload_output": [
"macho",
"elf",
"dylib",
"so",
"dll"
],
"architectures": [
"x86_64",
"arm_64"
],
"c2": [
"http",
"websocket",
"dynamichttp",
"freyja_tcp"
],
"mythic_version": "3.3.0",
"agent_version": "2.1.9",
"supported_wrappers": []
},
"remote_images": "ghcr.io/mythicagents/freyja:v0.0.1.00",
"category": "Agent",
"clones": {
"count": 29,
"uniques": 13
}
},
{
"id": 381473430,
"node_id": "MDEwOlJlcG9zaXRvcnkzODE0NzM0MzA=",
"name": "hermes",
"full_name": "MythicAgents/hermes",
"private": false,
"owner": {
"login": "MythicAgents",
"id": 73145583,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjczMTQ1NTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/73145583?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MythicAgents",
"html_url": "https://github.com/MythicAgents",
"followers_url": "https://api.github.com/users/MythicAgents/followers",
"following_url": "https://api.github.com/users/MythicAgents/following{/other_user}",
"gists_url": "https://api.github.com/users/MythicAgents/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MythicAgents/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MythicAgents/subscriptions",
"organizations_url": "https://api.github.com/users/MythicAgents/orgs",
"repos_url": "https://api.github.com/users/MythicAgents/repos",
"events_url": "https://api.github.com/users/MythicAgents/events{/privacy}",
"received_events_url": "https://api.github.com/users/MythicAgents/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/MythicAgents/hermes",
"description": "Swift 5 macOS agent",
"fork": false,
"url": "https://api.github.com/repos/MythicAgents/hermes",
"forks_url": "https://api.github.com/repos/MythicAgents/hermes/forks",
"keys_url": "https://api.github.com/repos/MythicAgents/hermes/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/MythicAgents/hermes/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/MythicAgents/hermes/teams",
"hooks_url": "https://api.github.com/repos/MythicAgents/hermes/hooks",
"issue_events_url": "https://api.github.com/repos/MythicAgents/hermes/issues/events{/number}",
"events_url": "https://api.github.com/repos/MythicAgents/hermes/events",
"assignees_url": "https://api.github.com/repos/MythicAgents/hermes/assignees{/user}",
"branches_url": "https://api.github.com/repos/MythicAgents/hermes/branches{/branch}",
"tags_url": "https://api.github.com/repos/MythicAgents/hermes/tags",
"blobs_url": "https://api.github.com/repos/MythicAgents/hermes/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/MythicAgents/hermes/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/MythicAgents/hermes/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/MythicAgents/hermes/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/MythicAgents/hermes/statuses/{sha}",
"languages_url": "https://api.github.com/repos/MythicAgents/hermes/languages",
"stargazers_url": "https://api.github.com/repos/MythicAgents/hermes/stargazers",
"contributors_url": "https://api.github.com/repos/MythicAgents/hermes/contributors",
"subscribers_url": "https://api.github.com/repos/MythicAgents/hermes/subscribers",
"subscription_url": "https://api.github.com/repos/MythicAgents/hermes/subscription",
"commits_url": "https://api.github.com/repos/MythicAgents/hermes/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/MythicAgents/hermes/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/MythicAgents/hermes/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/MythicAgents/hermes/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/MythicAgents/hermes/contents/{+path}",
"compare_url": "https://api.github.com/repos/MythicAgents/hermes/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/MythicAgents/hermes/merges",
"archive_url": "https://api.github.com/repos/MythicAgents/hermes/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/MythicAgents/hermes/downloads",
"issues_url": "https://api.github.com/repos/MythicAgents/hermes/issues{/number}",
"pulls_url": "https://api.github.com/repos/MythicAgents/hermes/pulls{/number}",
"milestones_url": "https://api.github.com/repos/MythicAgents/hermes/milestones{/number}",
"notifications_url": "https://api.github.com/repos/MythicAgents/hermes/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/MythicAgents/hermes/labels{/name}",
"releases_url": "https://api.github.com/repos/MythicAgents/hermes/releases{/id}",
"deployments_url": "https://api.github.com/repos/MythicAgents/hermes/deployments",
"created_at": "2021-06-29T19:18:55Z",
"updated_at": "2025-01-17T23:45:50Z",
"pushed_at": "2024-07-23T05:56:52Z",
"git_url": "git://github.com/MythicAgents/hermes.git",
"ssh_url": "[email protected]:MythicAgents/hermes.git",
"clone_url": "https://github.com/MythicAgents/hermes.git",
"svn_url": "https://github.com/MythicAgents/hermes",
"homepage": "",
"size": 1431,
"stargazers_count": 101,