-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdata.json
More file actions
11234 lines (11234 loc) · 342 KB
/
data.json
File metadata and controls
11234 lines (11234 loc) · 342 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
[
{
"name": "AWS (S3/Lambda/SES)",
"url": "https://aws.amazon.com",
"category": "Cloud",
"provider": "Amazon",
"signup": "email+cc",
"signupTime": "~5min",
"domains": [
"*.s3.amazonaws.com",
"*.cloudfront.net",
"*.amazonaws.com",
"*.on.aws"
],
"trustedDomain": true,
"domainFronting": true,
"domainFrontingNotes": "CloudFront as C2 redirector via Lambda@Edge. Classic DF blocked 2018 but redirector technique same effect",
"abuse": {
"phishing": 1,
"c2": 1,
"exfil": 1,
"payload": 1,
"creds": 0
},
"apiEndpoints": [
"s3.amazonaws.com/*",
"lambda.*.amazonaws.com/*",
"email.*.amazonaws.com/*"
],
"opsec": "medium",
"opsecNotes": "CloudTrail logging on by default. SES sandbox requires verified emails. Lambda logs to CloudWatch",
"socDetection": "moderate",
"banRisk": "low",
"banNotes": "C2 hosting requires prior approval form. No auto-ban for normal usage",
"verification": "CC required. Phone verification for some services. Identity verification for SES production",
"trust": "high",
"lastVerified": "2026-03",
"freeTier": {
"type": "free",
"devAccount": true,
"trialDays": 365,
"limits": "S3 5GB \u00b7 Lambda 1M req/mo \u00b7 SES 62k emails/mo (sandbox) \u00b7 EC2 750h t2.micro \u00b7 12 months"
},
"sso": {
"saml": true,
"oidc": true,
"scim": false,
"oauth": true,
"mfa": true,
"notes": "IAM SAML federation \u00b7 Cognito OIDC \u00b7 SSO Identity Center \u00b7 STS AssumeRoleWithSAML"
},
"knownC2": [],
"exfilTools": [
{
"name": "aws-cli",
"url": "https://lolexfil.github.io/#tool=aws%20cli",
"note": ""
},
{
"name": "s5cmd",
"url": "https://lolexfil.github.io/#tool=s5cmd",
"note": ""
},
{
"name": "Arq Backup",
"url": "https://lolexfil.github.io/#tool=Arq%20Backup",
"note": ""
},
{
"name": "CloudBerry/MSP360",
"url": "https://lolexfil.github.io/#tool=CloudBerry%20/%20MSP360%20Backup",
"note": ""
},
{
"name": "duplicacy",
"url": "https://lolexfil.github.io/#tool=duplicacy",
"note": ""
},
{
"name": "duplicati",
"url": "https://lolexfil.github.io/#tool=duplicati",
"note": ""
},
{
"name": "duplicity",
"url": "https://lolexfil.github.io/#tool=duplicity",
"note": ""
},
{
"name": "kopia",
"url": "https://lolexfil.github.io/#tool=kopia",
"note": ""
},
{
"name": "restic",
"url": "https://lolexfil.github.io/#tool=restic",
"note": ""
},
{
"name": "rclone",
"url": "https://lolexfil.github.io/#tool=rclone",
"note": ""
},
{
"name": "Syncovery",
"url": "https://lolexfil.github.io/#tool=Syncovery",
"note": ""
},
{
"name": "Synology Active Backup",
"url": "https://lolexfil.github.io/#tool=Synology%20Active%20Backup",
"note": ""
},
{
"name": "Veeam Agent",
"url": "https://lolexfil.github.io/#tool=Veeam%20Agent",
"note": ""
},
{
"name": "GoodSync",
"url": "https://lolexfil.github.io/#tool=GoodSync",
"note": ""
},
{
"name": "Cyberduck",
"url": "https://lolexfil.github.io/#tool=Cyberduck",
"note": ""
},
{
"name": "WinZip",
"url": "https://lolexfil.github.io/#tool=WinZip",
"note": ""
}
],
"mitre": [
"T1583.006",
"T1102",
"T1567.002",
"T1071.001"
],
"refs": [
{
"title": "AWS Free Tier",
"url": "https://aws.amazon.com/free/"
},
{
"title": "AWS IAM SAML",
"url": "https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_saml.html"
},
{
"title": "lolexfil",
"url": "https://lolexfil.github.io"
},
{
"title": "Mattysploit: C2 Redirector Usage - AWS Lambda & CloudFront",
"url": "https://medium.com/@mattysploit/c2-redirector-usage-and-you-57364cfde409"
},
{
"title": "Expel: Evilginx-ing into the Cloud - Detecting Red Team Attack in AWS",
"url": "https://expel.com/blog/evilginx-into-cloud-detected-red-team-attack-in-aws/"
},
{
"title": "Argv.Cloud: Red Team Phishing Infrastructure + Payload Setup on AWS",
"url": "https://argv.cloud/blog/2025/red-team-infrastructure-setup/"
}
],
"detection": [
"*.s3.amazonaws.com",
"*.s3.*.amazonaws.com",
"*.execute-api.*.amazonaws.com",
"*.lambda-url.*.on.aws",
"*.cloudfront.net",
"email-smtp.*.amazonaws.com",
"ses.*.amazonaws.com",
"s3.amazonaws.com/*/",
"CloudTrail: GetObject|PutObject|ListBucket spikes",
"CloudTrail: sts:AssumeRole from unusual sources",
"GuardDuty: Exfiltration:S3/* findings",
"GuardDuty: UnauthorizedAccess:IAMUser/* findings",
"VPC Flow Logs: large outbound transfers to S3 endpoints",
"DNS: high-entropy subdomains (DNS exfil via Route53)"
],
"notes": "Lambda@Edge + CloudFront as C2 redirector (replaces classic domain fronting blocked 2018). Full red team infra on AWS: Mythic C2 + CloudFront + ALB + Nginx redirector (Argv.Cloud). C2 hosting requires prior approval form (Simulated Events). Blob storage on S3 for payload hosting - not scanned on upload. SES for phishing at scale (sandbox: verified recipients only). 12-month free tier covers most red team needs",
"customDomain": true,
"customDomainNotes": "Route53 + CloudFront custom domains free with account",
"dataRetention": "Permanent (S3)",
"rateLimits": "Varies per service. S3 5500 GET/s per prefix. Lambda 1000 concurrent",
"maxFileSize": "5TB per object (S3)",
"logging": "CloudTrail logs all API calls. GuardDuty anomaly detection. VPC Flow Logs",
"lolc2Url": "https://lolc2.github.io/#aws-x-ray"
},
{
"name": "Azure (Functions/Blob/CDN)",
"url": "https://azure.microsoft.com",
"category": "Cloud",
"provider": "Microsoft",
"signup": "email+cc",
"signupTime": "~5min",
"domains": [
"*.azurewebsites.net",
"*.blob.core.windows.net",
"*.web.core.windows.net",
"*.azureedge.net",
"*.cloudapp.azure.com",
"*.azurestaticapps.net",
"*.azurefd.net",
"*.msappproxy.net"
],
"trustedDomain": true,
"domainFronting": true,
"domainFrontingNotes": "Classic DF blocked Jan 2024. Azure FrontDoor/CDN redirectors still work via azurefd.net subdomains. Azure Functions as reverse proxy",
"abuse": {
"phishing": 1,
"c2": 1,
"exfil": 1,
"payload": 1,
"creds": 0
},
"apiEndpoints": [
"management.azure.com/*",
"graph.microsoft.com/*",
"*.blob.core.windows.net/*"
],
"opsec": "medium",
"opsecNotes": "Azure Monitor/Sentinel may be watching. Functions have invocation logs. Blob access logs optional",
"socDetection": "unlikely",
"banRisk": "low",
"banNotes": "Pentest allowed without approval on own resources. Abuse reports forwarded to account owner",
"verification": "CC required. Identity verification for some services",
"trust": "high",
"lastVerified": "2026-03",
"freeTier": {
"type": "free",
"devAccount": true,
"trialDays": 30,
"limits": "$200 credit 30 days \u00b7 Functions 1M exec/mo \u00b7 Blob 5GB LRS \u00b7 App Service F1 free \u00b7 Static Web Apps free"
},
"sso": {
"saml": true,
"oidc": true,
"scim": true,
"oauth": true,
"mfa": true,
"notes": "Entra ID full SAML/OIDC/SCIM \u00b7 Graph API OAuth \u00b7 Conditional Access \u00b7 PRT-based SSO"
},
"knownC2": [
{
"name": "FunctionalC2",
"url": "https://github.com/RedSiege/FunctionalC2"
},
{
"name": "AzureFunctionRedirector",
"url": "https://github.com/dmcxblue/AzureFunctionRedirector"
},
{
"name": "AzureC2Relay",
"url": "https://github.com/Flangvik/AzureC2Relay"
},
{
"name": "AppProxyC2",
"url": "https://github.com/xpn/AppProxyC2"
},
{
"name": "ProxyBlob",
"url": "https://github.com/Quarkslab/ProxyBlob"
}
],
"exfilTools": [
{
"name": "az-cli",
"url": "https://lolexfil.github.io/#tool=az%20cli",
"note": ""
},
{
"name": "AzCopy",
"url": "https://lolexfil.github.io/#tool=AzCopy",
"note": ""
},
{
"name": "Azure Storage Explorer",
"url": "https://lolexfil.github.io/#tool=Azure%20Storage%20Explorer",
"note": ""
},
{
"name": "Azure Blob Storage",
"url": "https://lolexfil.github.io/#tool=Azure%20Blob%20Storage",
"note": ""
},
{
"name": "CloudBerry/MSP360",
"url": "https://lolexfil.github.io/#tool=CloudBerry%20/%20MSP360%20Backup",
"note": ""
},
{
"name": "duplicacy",
"url": "https://lolexfil.github.io/#tool=duplicacy",
"note": ""
},
{
"name": "duplicati",
"url": "https://lolexfil.github.io/#tool=duplicati",
"note": ""
},
{
"name": "duplicity",
"url": "https://lolexfil.github.io/#tool=duplicity",
"note": ""
},
{
"name": "kopia",
"url": "https://lolexfil.github.io/#tool=kopia",
"note": ""
},
{
"name": "restic",
"url": "https://lolexfil.github.io/#tool=restic",
"note": ""
},
{
"name": "rclone",
"url": "https://lolexfil.github.io/#tool=rclone",
"note": ""
},
{
"name": "Syncovery",
"url": "https://lolexfil.github.io/#tool=Syncovery",
"note": ""
},
{
"name": "Cyberduck",
"url": "https://lolexfil.github.io/#tool=Cyberduck",
"note": ""
},
{
"name": "Veeam Agent",
"url": "https://lolexfil.github.io/#tool=Veeam%20Agent",
"note": ""
}
],
"mitre": [
"T1583.006",
"T1102",
"T1567.002",
"T1071.001",
"T1584.006"
],
"refs": [
{
"title": "Azure Free Services",
"url": "https://azure.microsoft.com/en-us/pricing/free-services/"
},
{
"title": "Entra ID SSO",
"url": "https://learn.microsoft.com/en-us/entra/identity/enterprise-apps/what-is-single-sign-on"
},
{
"title": "lolc2 - Azure Functions",
"url": "https://lolc2.github.io"
},
{
"title": "lolc2 - Azure Blob Storage",
"url": "https://lolc2.github.io"
},
{
"title": "lolc2 - Azure App Proxy",
"url": "https://lolc2.github.io"
},
{
"title": "lolexfil",
"url": "https://lolexfil.github.io"
},
{
"title": "DarkVortex: A Thousand Sails - C2 Infra on Azure (FrontDoor, CDN, Functions)",
"url": "https://0xdarkvortex.dev/c2-infra-on-azure/"
},
{
"title": "NetSPI: Utilizing Azure Services for Red Team Engagements",
"url": "https://www.netspi.com/blog/technical-blog/cloud-pentesting/utiilzing-azure-for-red-team-engagements/"
},
{
"title": "Mattysploit: C2 Redirector Usage - Azure FrontDoor, Cloudflare Workers, AWS Lambda",
"url": "https://medium.com/@mattysploit/c2-redirector-usage-and-you-57364cfde409"
}
],
"detection": [
"*.azurewebsites.net/api/*",
"*.blob.core.windows.net/*",
"*.msappproxy.net/*"
],
"notes": "'Everything in Azure is a C2 service' (DarkVortex). FrontDoor as C2 redirector with azurefd.net subdomains (classic domain fronting blocked Jan 2024 but redirector technique works). Edgio CDN retired Jan 2025 - operators shifted to Azure FrontDoor + Cloudflare Workers. Functions as reverse proxy for C2. Blob Storage for payload hosting on *.blob.core.windows.net. Static Web Apps for phishing. App Service for C2 endpoints. $200 free credit for 30 days",
"customDomain": true,
"customDomainNotes": "Custom domains on App Service, Functions, CDN, FrontDoor",
"dataRetention": "Permanent (Blob)",
"rateLimits": "Functions: 100 concurrent. Blob: 20k req/s per account",
"maxFileSize": "4.75TB block blob",
"logging": "Activity Log, Diagnostic Logs, Sentinel, Defender for Cloud",
"lolc2Url": "https://lolc2.github.io/#microsoft-azure-functions"
},
{
"name": "Google Cloud (GCF/GCS/Firebase)",
"url": "https://cloud.google.com",
"category": "Cloud",
"provider": "Google",
"signup": "email+cc",
"signupTime": "~5min",
"domains": [
"*.appspot.com",
"*.web.app",
"*.firebaseapp.com",
"firebasestorage.googleapis.com",
"storage.googleapis.com",
"*.cloudfunctions.net",
"*.run.app"
],
"trustedDomain": true,
"domainFronting": false,
"domainFrontingNotes": "GCP blocked domain fronting 2018. Cloud Functions can redirect but not classic DF",
"abuse": {
"phishing": 1,
"c2": 1,
"exfil": 1,
"payload": 1,
"creds": 0
},
"apiEndpoints": [
"storage.googleapis.com/*",
"cloudfunctions.net/*",
"firebasestorage.googleapis.com/*"
],
"opsec": "medium",
"opsecNotes": "Cloud Audit Logs on by default. Firebase hosting gives clean *.web.app domain. Cloud Run auto-scales",
"socDetection": "moderate",
"banRisk": "low",
"banNotes": "Pentest allowed on own projects without notification. Abuse team active but slow",
"verification": "CC required. Phone verification. Identity for billing",
"trust": "high",
"lastVerified": "2026-03",
"freeTier": {
"type": "free",
"devAccount": true,
"trialDays": 90,
"limits": "$300 credit 90d \u00b7 Functions 2M invoc/mo \u00b7 GCS 5GB \u00b7 Cloud Run 2M req/mo \u00b7 Firebase free Spark plan"
},
"sso": {
"saml": true,
"oidc": true,
"scim": true,
"oauth": true,
"mfa": true,
"notes": "Workspace SAML/OIDC federation \u00b7 OAuth consent phishing \u00b7 Service account key theft"
},
"knownC2": [
{
"name": "GC2-Sheet",
"url": "https://github.com/looCiprian/GC2-sheet"
},
{
"name": "Google RAT",
"url": "https://github.com/a-rey/google_RAT"
},
{
"name": "firec2 (Firebase)",
"url": "https://github.com/s0ld13rr/firec2"
}
],
"exfilTools": [
{
"name": "gsutil",
"url": "https://lolexfil.github.io/#tool=gsutil",
"note": ""
},
{
"name": "CloudBerry/MSP360",
"url": "https://lolexfil.github.io/#tool=CloudBerry%20/%20MSP360%20Backup",
"note": ""
},
{
"name": "duplicacy",
"url": "https://lolexfil.github.io/#tool=duplicacy",
"note": ""
},
{
"name": "duplicati",
"url": "https://lolexfil.github.io/#tool=duplicati",
"note": ""
},
{
"name": "duplicity",
"url": "https://lolexfil.github.io/#tool=duplicity",
"note": ""
},
{
"name": "kopia",
"url": "https://lolexfil.github.io/#tool=kopia",
"note": ""
},
{
"name": "restic",
"url": "https://lolexfil.github.io/#tool=restic",
"note": ""
},
{
"name": "rclone",
"url": "https://lolexfil.github.io/#tool=rclone",
"note": ""
}
],
"mitre": [
"T1583.006",
"T1102",
"T1567.002",
"T1566.002"
],
"refs": [
{
"title": "GCP Free Tier",
"url": "https://cloud.google.com/free"
},
{
"title": "Workspace SAML SSO",
"url": "https://support.google.com/a/answer/6087519"
},
{
"title": "lolc2 - Firebase",
"url": "https://lolc2.github.io"
},
{
"title": "lolc2 - Google Sheets",
"url": "https://lolc2.github.io"
}
],
"detection": [
"firebasestorage.googleapis.com/*",
"sheets.googleapis.com/*"
],
"notes": "Firebase C2 (firec2), Google Sheets/Drive C2 (GC2-Sheet used by APT41/Voldemort). Firebase hosting gives instant *.web.app sites. Cloud Functions for serverless C2 logic",
"customDomain": true,
"customDomainNotes": "Custom domains on Cloud Run, App Engine, Firebase Hosting",
"dataRetention": "Permanent (GCS)",
"rateLimits": "Cloud Functions: 1000 concurrent. GCS: 5000 read/s per bucket",
"maxFileSize": "5TB per object (GCS)",
"logging": "Cloud Audit Logs, Cloud Logging. All API calls logged",
"lolc2Url": "https://lolc2.github.io/#firebase"
},
{
"name": "Oracle Cloud",
"url": "https://cloud.oracle.com",
"category": "Cloud",
"provider": "Oracle",
"signup": "email+cc",
"signupTime": "~10min",
"domains": [
"*.oraclecloud.com"
],
"trustedDomain": true,
"domainFronting": false,
"domainFrontingNotes": "",
"abuse": {
"phishing": 1,
"c2": 1,
"exfil": 1,
"payload": 1,
"creds": 0
},
"apiEndpoints": [],
"opsec": "low",
"opsecNotes": "Minimal monitoring compared to AWS/Azure. Always Free VMs never expire. Less SOC visibility",
"socDetection": "unlikely",
"banRisk": "low",
"banNotes": "Minimal abuse enforcement. Always Free VMs rarely reviewed",
"verification": "CC required. Identity verification at signup",
"trust": "high",
"lastVerified": "2026-03",
"freeTier": {
"type": "free",
"devAccount": true,
"trialDays": null,
"limits": "Always Free forever: 2 AMD VMs \u00b7 200GB block \u00b7 10TB egress/mo \u00b7 2 autonomous DBs \u00b7 ARM Ampere 4 OCPUs"
},
"sso": {
"saml": true,
"oidc": true,
"scim": true,
"oauth": true,
"mfa": true,
"notes": "OCI IAM SAML/OIDC federation \u00b7 Identity domains with SCIM"
},
"knownC2": [],
"exfilTools": [],
"mitre": [
"T1583.003",
"T1102"
],
"refs": [
{
"title": "Oracle Always Free",
"url": "https://www.oracle.com/cloud/free/"
},
{
"title": "OCI IAM Docs",
"url": "https://docs.oracle.com/en-us/iaas/Content/Identity/home.htm"
}
],
"detection": [
"*.oraclecloud.com",
"*.ocp.oraclecloud.com",
"objectstorage.*.oraclecloud.com",
"*.oci.oraclecloud.com",
"*.functions.oci.oraclecloud.com",
"*.apigateway.*.oci.customer-oci.com",
"cloud.oracle.com",
"idcs-*.identity.oraclecloud.com"
],
"notes": "Best always-free tier for persistent red team infra. 2 VMs + 4 ARM cores that never expire. Far less scrutinized than AWS/Azure by SOCs and threat intel feeds",
"customDomain": true,
"customDomainNotes": "Custom domains on OCI services",
"dataRetention": "Permanent",
"rateLimits": "Varies per service",
"maxFileSize": "10GB Object Storage objects",
"logging": "Audit service logs all API calls"
},
{
"name": "DigitalOcean",
"url": "https://digitalocean.com",
"category": "Cloud",
"provider": "DigitalOcean",
"signup": "email+cc",
"signupTime": "~5min",
"domains": [
"*.ondigitalocean.app",
"*.digitaloceanspaces.com"
],
"trustedDomain": false,
"domainFronting": false,
"domainFrontingNotes": "",
"abuse": {
"phishing": 1,
"c2": 1,
"exfil": 1,
"payload": 1,
"creds": 0
},
"apiEndpoints": [],
"opsec": "low",
"opsecNotes": "Less monitoring than hyperscalers. Spaces is S3-compatible",
"socDetection": "unlikely",
"banRisk": "low",
"banNotes": "Abuse reports handled manually. Less aggressive than hyperscalers",
"verification": "CC required. Email verification",
"trust": "low",
"lastVerified": "2026-03",
"freeTier": {
"type": "trial",
"devAccount": true,
"trialDays": 60,
"limits": "$200 credit 60 days \u00b7 Spaces 250GB \u00b7 Droplets from $4/mo"
},
"sso": {
"saml": false,
"oidc": false,
"scim": false,
"oauth": true,
"mfa": true,
"notes": "OAuth for API only \u00b7 No enterprise SSO"
},
"knownC2": [],
"exfilTools": [
{
"name": "rclone",
"url": "https://github.com/rclone/rclone",
"note": "rclone copy /data spaces:bucket/ (S3-compatible)"
}
],
"mitre": [
"T1583.003",
"T1583.006"
],
"refs": [
{
"title": "DO Pricing",
"url": "https://www.digitalocean.com/pricing"
},
{
"title": "lolexfil",
"url": "https://lolexfil.github.io"
}
],
"detection": [
"*.ondigitalocean.app",
"*.digitaloceanspaces.com",
"*.sfo2.digitaloceanspaces.com",
"*.nyc3.digitaloceanspaces.com",
"*.ams3.digitaloceanspaces.com",
"api.digitalocean.com",
"cloud.digitalocean.com",
"*.do.co",
"registry.digitalocean.com"
],
"notes": "S3-compatible Spaces for exfil staging, droplets for C2 infra. $200 credit = 2 months of free infrastructure. Less monitored than hyperscalers",
"customDomain": true,
"customDomainNotes": "Custom domains on Droplets, App Platform",
"dataRetention": "Permanent (Spaces)",
"rateLimits": "Spaces: 750 req/s",
"maxFileSize": "5GB per object (Spaces)",
"logging": "Monitoring dashboard. No detailed API audit logs on free"
},
{
"name": "Cloudflare (Workers/Pages/R2/Tunnels)",
"url": "https://cloudflare.com",
"category": "Cloud",
"provider": "Cloudflare",
"signup": "email",
"signupTime": "~2min",
"domains": [
"*.workers.dev",
"*.pages.dev",
"*.trycloudflare.com",
"*.cfargotunnel.com"
],
"trustedDomain": true,
"domainFronting": true,
"domainFrontingNotes": "Workers as reverse proxy redirectors. trycloudflare.com tunnels need NO account. Pages custom domains free. R2 presigned URLs",
"abuse": {
"phishing": 1,
"c2": 1,
"exfil": 1,
"payload": 1,
"creds": 1
},
"apiEndpoints": [
"api.cloudflare.com/*",
"cloudflare-dns.com/dns-query"
],
"opsec": "low",
"opsecNotes": "Workers as reverse proxy - MitM position on all traffic. Steal auth headers, cookies, inject JS. trycloudflare.com tunnels need no account at all. DoH via cloudflare-dns.com. Pages for phishing. R2 for payload hosting. Default workers.dev domain should be avoided for OPSEC - use custom domain",
"socDetection": "unlikely",
"banRisk": "low",
"banNotes": "Workers/Pages rarely flagged. Tunnels are ephemeral. R2 has no content scanning",
"verification": "Email only. No CC for free tier. No phone verification",
"trust": "high",
"lastVerified": "2026-03",
"freeTier": {
"type": "free",
"devAccount": true,
"trialDays": null,
"limits": "Workers 100k req/day \u00b7 Pages unlimited \u00b7 R2 10GB/mo \u00b7 Tunnels free \u00b7 Zero Trust 50 users free"
},
"sso": {
"saml": true,
"oidc": true,
"scim": true,
"oauth": true,
"mfa": true,
"notes": "Zero Trust Access with SAML/OIDC \u00b7 SCIM on Enterprise \u00b7 Workers have no auth by default"
},
"knownC2": [
{
"name": "CloudflarePagesRedirector",
"url": "https://github.com/ChoiSG/CloudflarePagesRedirector"
},
{
"name": "Cloudflare-Redirector",
"url": "https://github.com/som3canadian/Cloudflare-Redirector"
},
{
"name": "SkyFall-Pack",
"url": "https://github.com/nickvourd/SkyFall-Pack"
}
],
"exfilTools": [
{
"name": "rclone",
"url": "https://github.com/rclone/rclone",
"note": "R2 is S3-compatible: rclone copy /data r2:bucket/"
}
],
"mitre": [
"T1090.004",
"T1102",
"T1583.006",
"T1071.001"
],
"refs": [
{
"title": "CF Workers Pricing",
"url": "https://developers.cloudflare.com/workers/platform/pricing/"
},
{
"title": "CF R2 Pricing",
"url": "https://developers.cloudflare.com/r2/pricing/"
},
{
"title": "lolc2 - Cloudflare",
"url": "https://lolc2.github.io"
},
{
"title": "Abusing Cloudflare Workers (christophetd)",
"url": "https://blog.christophetd.fr/abusing-cloudflare-workers/"
},
{
"title": "Securing C2 for Red Team Operations Using Cloudflare Workers + Zero Trust Tunnels",
"url": "https://cgomezsec.com/blog/securing-c2-for-rt-operations-using-cloudflare"
},
{
"title": "Sekoia: Threat Actors Abuse Cloudflare Tunnels to Distribute RATs",
"url": "https://cyberpress.org/threat-actors-abuse-cloudflare-tunnels/"
},
{
"title": "Hunt.io: Russian Actor Abuses Cloudflare & Telegram in Phishing",
"url": "https://hunt.io/blog/russian-actor-cloudflare-phishing-telegram-c2"
},
{
"title": "SC Media: Abuse of Cloudflare Domains for Phishing Doubled in 2024",
"url": "https://www.scworld.com/news/abuse-of-cloudflare-domains-for-phishing-doubled-in-2024-report-says"
},
{
"title": "I Need a C2 Infrastructure Immediately - Cloudflare Workers as Redirectors (nickvourd)",
"url": "https://medium.com/@nickvourd/i-need-a-c2-infrastructure-immediately-as-in-yesterday-23bc5bd76fbe"
}
],
"detection": [
"*.workers.dev",
"*.pages.dev",
"*.cfargotunnel.com",
"cloudflare-dns.com/dns-query"
],
"notes": "Workers as C2 redirectors (replaced Edgio CDN retired Jan 2025). Workers MitM: steal auth headers, cookies, inject malicious JS into responses (christophetd). trycloudflare.com tunnels need NO account. Workers + Zero Trust Tunnels for Sliver C2 (cgomezsec). Pages phishing doubled in 2024 (SC Media). Russian actors use Cloudflare phishing lures + Telegram C2 (Hunt.io). Abuse of Cloudflare domains for phishing 2x increase 2024",
"customDomain": true,
"customDomainNotes": "Free custom domains on Pages, Workers routes, Tunnels",
"dataRetention": "Permanent (R2, Pages)",
"rateLimits": "Workers: 100k req/day free. R2: 1M class A ops/mo free",
"maxFileSize": "5GB per object (R2). 25MB Worker script",
"logging": "Workers analytics. No detailed request logging on free tier",
"lolc2Url": "https://lolc2.github.io/#cloudflare"
},
{
"name": "Heroku",
"url": "https://heroku.com",
"category": "Cloud",
"provider": "Salesforce",
"signup": "email",
"signupTime": "~3min",
"domains": [
"*.herokuapp.com"
],
"trustedDomain": true,
"domainFronting": false,
"domainFrontingNotes": "",
"abuse": {
"phishing": 1,
"c2": 1,
"exfil": 1,
"payload": 0,
"creds": 0
},
"apiEndpoints": [],
"opsec": "low",
"opsecNotes": "Salesforce-owned = highly trusted domain. Deploy from Git in seconds",
"socDetection": "unlikely",
"banRisk": "medium",
"banNotes": "Salesforce abuse team moderately active. Phishing pages get reported",
"verification": "Email only. CC for paid dynos",
"trust": "high",
"lastVerified": "2026-03",
"freeTier": {
"type": "none",
"devAccount": false,
"trialDays": null,
"limits": "Eco dynos $5/mo (free tier removed Nov 2022) \u00b7 Deploy from Git \u00b7 Custom domains on paid"
},
"sso": {
"saml": true,
"oidc": false,
"scim": false,
"oauth": true,
"mfa": true,
"notes": "SAML on Enterprise \u00b7 Heroku OAuth for API"
},
"knownC2": [],
"exfilTools": [],
"mitre": [
"T1583.006",
"T1102"
],
"refs": [
{
"title": "Heroku Pricing",
"url": "https://www.heroku.com/pricing"
}
],
"detection": [
"*.herokuapp.com",
"*.herokucdn.com",
"*.herokudns.com",
"api.heroku.com",
"*.herokuapp.com/api/*",
"addons-sso.heroku.com",
"dashboard.heroku.com",
"CNAME dangling: 'No such app' response from herokuapp.com"
],
"notes": "Salesforce-owned trusted domain. No longer free but still quick to deploy. *.herokuapp.com trusted by most proxy/email filters",
"customDomain": true,
"customDomainNotes": "Custom domains on paid dynos only ($5/mo minimum)",
"dataRetention": "Ephemeral filesystem. Postgres persistent",
"rateLimits": "2400 req/app/hr (free)",
"maxFileSize": "500MB slug size",
"logging": "Logplex aggregated logs. Heroku Runtime metrics"
},
{
"name": "Vercel",
"url": "https://vercel.com",
"category": "Cloud",
"provider": "Vercel",
"signup": "email",
"signupTime": "~2min",
"domains": [
"*.vercel.app"
],
"trustedDomain": false,
"domainFronting": true,
"domainFrontingNotes": "Edge Functions can redirect/rewrite. vercel.app trusted domain acts as redirector via middleware",
"abuse": {
"phishing": 1,
"c2": 0,
"exfil": 0,
"payload": 1,
"creds": 0
},
"apiEndpoints": [],
"opsec": "low",
"opsecNotes": "Instant deploy from Git. Serverless functions for redirectors. Custom domains free",
"socDetection": "unlikely",
"banRisk": "low",
"banNotes": "Minimal abuse enforcement. Phishing pages may persist for days",
"verification": "Email or GitHub OAuth. No CC for free tier",
"trust": "low",
"lastVerified": "2026-03",
"freeTier": {
"type": "free",
"devAccount": true,
"trialDays": null,
"limits": "100GB bandwidth \u00b7 Serverless 100GB-hrs \u00b7 Unlimited deploys \u00b7 Custom domains free"
},
"sso": {
"saml": true,
"oidc": false,
"scim": true,
"oauth": true,
"mfa": true,
"notes": "SAML/SCIM on Enterprise \u00b7 OAuth for Git providers"
},
"knownC2": [],
"exfilTools": [],
"mitre": [
"T1583.006",
"T1566.002"
],
"refs": [
{
"title": "Vercel Pricing",
"url": "https://vercel.com/pricing"
},
{
"title": "Vercel SAML",
"url": "https://vercel.com/docs/security/single-sign-on"
}
],
"detection": [
"*.vercel.app",
"*.now.sh",
"*.vercel.sh",
"api.vercel.com",
"vercel.com/api/*",
"*.vercel-dns.com",
"edge-config.vercel.com",
"vitals.vercel-insights.com",
"va.vercel-scripts.com"
],
"notes": "Instant deploy from Git push. Serverless functions for payload redirectors. Custom domains free. Clean *.vercel.app URLs",
"customDomain": true,
"customDomainNotes": "Free custom domains on all plans",
"dataRetention": "Permanent (deployments immutable)",
"rateLimits": "Serverless: 100GB-hrs/mo. Edge: unlimited invocations",
"maxFileSize": "50MB per file in deployment",
"logging": "Analytics on Pro. No detailed logs on free"
},
{
"name": "Netlify",
"url": "https://netlify.com",
"category": "Cloud",
"provider": "Netlify",
"signup": "email",
"signupTime": "~2min",
"domains": [
"*.netlify.app"
],
"trustedDomain": false,
"domainFronting": true,
"domainFrontingNotes": "Redirect rules via _redirects file or netlify.toml. netlify.app trusted domain",
"abuse": {