-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpython.yml
1101 lines (1101 loc) · 39.7 KB
/
python.yml
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
---
tests/:
apm_tracing_e2e/:
test_otel.py:
Test_Otel_Span: missing_feature (missing /e2e_otel_span endpoint on weblog)
test_single_span.py:
Test_SingleSpan: missing_feature (missing /e2e_otel_span endpoint on weblog)
appsec/:
api_security/:
test_api_security_rc.py:
Test_API_Security_RC_ASM_DD_processors: v2.6.0
Test_API_Security_RC_ASM_DD_scanners: v2.6.0
test_apisec_sampling.py:
Test_API_Security_Sampling_Different_Endpoints: v2.6.0
Test_API_Security_Sampling_Different_Paths: v2.6.0
Test_API_Security_Sampling_Different_Status: v2.6.0
Test_API_Security_Sampling_Rate: irrelevant (new api security sampling algorithm implemented)
Test_API_Security_Sampling_With_Delay: v2.6.0
test_schemas.py:
Test_Scanners:
'*': v2.4.0
fastapi: v2.5.0
Test_Schema_Request_Cookies:
'*': v2.1.0
fastapi: v2.5.0
Test_Schema_Request_FormUrlEncoded_Body:
'*': v2.1.0
fastapi: v2.5.0
Test_Schema_Request_Headers:
'*': v2.1.0
fastapi: v2.5.0
Test_Schema_Request_Json_Body:
'*': v2.1.0
fastapi: v2.5.0
Test_Schema_Request_Path_Parameters:
'*': v2.1.0
fastapi: v2.5.0
Test_Schema_Request_Query_Parameters:
'*': v2.1.0
fastapi: v2.5.0
Test_Schema_Response_Body:
'*': v2.1.0
fastapi: v2.5.0
Test_Schema_Response_Body_env_var:
'*': v2.6.0
Test_Schema_Response_Headers:
'*': v2.1.0
fastapi: v2.5.0
iast/:
sink/:
test_code_injection.py:
TestCodeInjection: v2.20.0
TestCodeInjection_ExtendedLocation: v3.1.0.dev
TestCodeInjection_StackTrace: missing_feature
test_command_injection.py:
TestCommandInjection:
'*': v2.10.0
django-poc: bug (APPSEC-57095)
django-py3.13: bug (APPSEC-57095)
fastapi: v2.15.0
python3.12: bug (APPSEC-57095)
TestCommandInjection_ExtendedLocation: v3.1.0.dev
TestCommandInjection_StackTrace: missing_feature
test_email_html_injection.py:
TestEmailHtmlInjection: missing_feature
TestEmailHtmlInjection_ExtendedLocation: missing_feature
TestEmailHtmlInjection_StackTrace: missing_feature
test_hardcoded_passwords.py:
Test_HardcodedPasswords: missing_feature
Test_HardcodedPasswords_ExtendedLocation: missing_feature
Test_HardcodedPasswords_StackTrace: missing_feature
test_hardcoded_secrets.py:
Test_HardcodedSecrets: missing_feature
Test_HardcodedSecretsExtended: missing_feature
Test_HardcodedSecrets_ExtendedLocation: missing_feature
Test_HardcodedSecrets_StackTrace: missing_feature
test_header_injection.py:
TestHeaderInjection:
'*': v2.10.0
fastapi: v2.20.0.dev
TestHeaderInjectionExclusionAccessControlAllow: missing_feature
TestHeaderInjectionExclusionContentEncoding: missing_feature
TestHeaderInjectionExclusionPragma: missing_feature
TestHeaderInjectionExclusionTransferEncoding: missing_feature
TestHeaderInjection_ExtendedLocation: v3.1.0.dev
TestHeaderInjection_StackTrace:
'*': missing_feature
fastapi: missing_feature
test_hsts_missing_header.py:
Test_HstsMissingHeader: missing_feature
Test_HstsMissingHeader_ExtendedLocation: missing_feature
Test_HstsMissingHeader_StackTrace: missing_feature
test_insecure_auth_protocol.py:
Test_InsecureAuthProtocol: missing_feature
Test_InsecureAuthProtocol_ExtendedLocation: missing_feature
Test_InsecureAuthProtocol_StackTrace: missing_feature
test_insecure_cookie.py:
TestInsecureCookie:
'*': v1.19.0 (v3.1.0.dev, add telemetry metrics support)
fastapi: v2.16.0-dev (v3.1.0.dev, add telemetry metrics support)
TestInsecureCookieNameFilter: missing_feature
TestInsecureCookie_ExtendedLocation: v3.1.0.dev
TestInsecureCookie_StackTrace: missing_feature
test_ldap_injection.py:
TestLDAPInjection: missing_feature
TestLDAPInjection_ExtendedLocation: missing_feature
TestLDAPInjection_StackTrace: missing_feature
test_no_httponly_cookie.py:
TestNoHttponlyCookie:
'*': v1.19.0 (v3.1.0.dev, add telemetry metrics support)
fastapi: v2.16.0-dev (v3.1.0.dev, add telemetry metrics support)
TestNoHttponlyCookieNameFilter: missing_feature
TestNoHttponlyCookie_ExtendedLocation: v3.1.0.dev
TestNoHttponlyCookie_StackTrace: missing_feature
test_no_samesite_cookie.py:
TestNoSamesiteCookie:
'*': v1.19.0 (v3.1.0.dev, add telemetry metrics support)
fastapi: v2.16.0-dev (v3.1.0.dev, add telemetry metrics support)
TestNoSamesiteCookieNameFilter: missing_feature
TestNoSamesiteCookie_ExtendedLocation: v3.1.0.dev
TestNoSamesiteCookie_StackTrace: missing_feature
test_nosql_mongodb_injection.py:
TestNoSqlMongodbInjection: missing_feature
TestNoSqlMongodbInjection_ExtendedLocation: missing_feature
TestNoSqlMongodbInjection_StackTrace: missing_feature
test_path_traversal.py:
TestPathTraversal:
'*': v2.10.0
fastapi: v2.15.0
TestPathTraversal_ExtendedLocation: v3.1.0.dev
TestPathTraversal_StackTrace: missing_feature
test_reflection_injection.py:
TestReflectionInjection: missing_feature
TestReflectionInjection_ExtendedLocation: missing_feature
TestReflectionInjection_StackTrace: missing_feature
test_sql_injection.py:
TestSqlInjection:
django-poc: v1.18.0
fastapi: v2.15.0
flask-poc: v1.18.0
python3.12: v1.18.0
TestSqlInjection_ExtendedLocation: v3.1.0.dev
TestSqlInjection_StackTrace: missing_feature
test_ssrf.py:
TestSSRF:
'*': v2.10.0
fastapi: v2.15.0
TestSSRF_ExtendedLocation: v3.1.0.dev
TestSSRF_StackTrace: missing_feature
test_stacktrace_leak.py:
TestStackTraceLeak:
'*': v3.1.0.dev
test_template_injection.py:
TestTemplateInjection: missing_feature
TestTemplateInjection_ExtendedLocation: missing_feature
test_trust_boundary_violation.py:
Test_TrustBoundaryViolation: missing_feature
Test_TrustBoundaryViolation_ExtendedLocation: missing_feature
Test_TrustBoundaryViolation_StackTrace: missing_feature
test_untrusted_deserialization.py:
TestUntrustedDeserialization: missing_feature
TestUntrustedDeserialization_ExtendedLocation: missing_feature
TestUntrustedDeserialization_StackTrace: missing_feature
test_unvalidated_redirect.py:
TestUnvalidatedHeader: missing_feature
TestUnvalidatedHeader_ExtendedLocation: missing_feature
TestUnvalidatedHeader_StackTrace: missing_feature
TestUnvalidatedRedirect: missing_feature
TestUnvalidatedRedirect_ExtendedLocation: missing_feature
TestUnvalidatedRedirect_StackTrace: missing_feature
test_unvalidated_redirect_forward.py:
TestUnvalidatedForward: missing_feature
TestUnvalidatedForward_ExtendedLocation: missing_feature
TestUnvalidatedForward_StackTrace: missing_feature
test_weak_cipher.py:
TestWeakCipher:
'*': v1.18.0
fastapi: v2.15.0
TestWeakCipher_ExtendedLocation: v3.1.0.dev
TestWeakCipher_StackTrace: missing_feature
test_weak_hash.py:
TestDeduplication:
'*': v1.18.0
TestWeakHash:
'*': v1.18.0
TestWeakHash_ExtendedLocation: v3.1.0.dev
TestWeakHash_StackTrace: missing_feature
test_weak_randomness.py:
TestWeakRandomness:
'*': v2.0.0
TestWeakRandomness_ExtendedLocation: v3.1.0.dev
TestWeakRandomness_StackTrace: missing_feature
test_xcontent_sniffing.py:
Test_XContentSniffing: missing_feature
Test_XContentSniffing_ExtendedLocation: missing_feature
Test_XContentSniffing_StackTrace: missing_feature
test_xpath_injection.py:
TestXPathInjection: missing_feature
TestXPathInjection_ExtendedLocation: missing_feature
TestXPathInjection_StackTrace: missing_feature
test_xss.py:
TestXSS:
'*': v3.0.0.dev
TestXSS_ExtendedLocation: v3.1.0.dev
TestXSS_StackTrace: missing_feature
source/:
test_body.py:
TestRequestBody:
django-poc: v1.20.0
fastapi: v2.14.0
flask-poc: v2.13.0
python3.12: v1.20.0
uds-flask: v1.20.0
uwsgi-poc: v1.20.0
test_cookie_name.py:
TestCookieName:
'*': v2.10.0
fastapi: v2.13.0
test_cookie_value.py:
TestCookieValue:
'*': v2.10.0
fastapi: v2.13.0
test_graphql_resolver.py:
TestGraphqlResolverArgument: missing_feature
test_header_name.py:
TestHeaderName:
'*': v1.18.0
fastapi: v2.20.1
test_header_value.py:
TestHeaderValue:
'*': v1.18.0
fastapi: v2.13.0
flask-poc: v3.1.0.dev
uds-flask: v3.1.0.dev
uwsgi-poc: v3.1.0.dev
test_kafka_key.py:
TestKafkaKey: missing_feature
test_kafka_value.py:
TestKafkaValue: missing_feature
test_multipart.py:
TestMultipart: missing_feature
test_parameter_name.py:
TestParameterName:
"*": v2.20.0
fastapi: v2.20.1
test_parameter_value.py:
TestParameterValue:
'*': v2.9.0
fastapi: v2.13.0
test_path.py:
TestPath:
'*': v2.9.0
fastapi: v2.13.0
flask-poc: v2.13.0
uds-flask: v2.13.0
uwsgi-poc: v2.13.0
test_path_parameter.py:
TestPathParameter:
'*': v2.9.0
fastapi: v2.13.0
flask-poc: v2.13.0
uds-flask: v2.13.0
uwsgi-poc: v2.13.0
test_sql_row.py:
TestSqlRow: missing_feature
test_uri.py:
TestURI: missing_feature
test_security_controls.py:
TestSecurityControls: missing_feature
rasp/:
test_cmdi.py:
Test_Cmdi_BodyJson: v2.20.0.dev
Test_Cmdi_BodyUrlEncoded: v2.20.0.dev
Test_Cmdi_BodyXml: v2.20.0.dev
Test_Cmdi_Capability: v2.20.0.dev
Test_Cmdi_Mandatory_SpanTags: v2.20.0.dev
Test_Cmdi_Optional_SpanTags: v2.20.0.dev
Test_Cmdi_Rules_Version: v2.18.0.dev
Test_Cmdi_StackTrace: v2.20.0.dev
Test_Cmdi_Telemetry: v2.20.0.dev
Test_Cmdi_Telemetry_V2: missing_feature
Test_Cmdi_Telemetry_Variant_Tag: v2.20.0.dev
Test_Cmdi_UrlQuery: v2.20.0.dev
Test_Cmdi_Waf_Version: v2.18.0.dev
test_lfi.py:
Test_Lfi_BodyJson: v2.10.0
Test_Lfi_BodyUrlEncoded: v2.10.0
Test_Lfi_BodyXml: v2.10.0
Test_Lfi_Capability: v2.11.0
Test_Lfi_Mandatory_SpanTags: v2.10.0
Test_Lfi_Optional_SpanTags: v2.10.0
Test_Lfi_RC_CustomAction: v2.14.0
Test_Lfi_Rules_Version: v2.18.0.dev
Test_Lfi_StackTrace: v2.10.0
Test_Lfi_Telemetry: v2.10.0
Test_Lfi_Telemetry_Multiple_Exploits: v2.10.0
Test_Lfi_Telemetry_V2: missing_feature
Test_Lfi_UrlQuery: v2.10.0
Test_Lfi_Waf_Version: v2.15.0
test_shi.py:
Test_Shi_BodyJson: v2.11.0-rc2
Test_Shi_BodyUrlEncoded: v2.11.0-rc2
Test_Shi_BodyXml: v2.11.0-rc2
Test_Shi_Capability: v2.11.0
Test_Shi_Mandatory_SpanTags: v2.11.0-rc2
Test_Shi_Optional_SpanTags: v2.11.0-rc2
Test_Shi_Rules_Version: v2.15.0
Test_Shi_StackTrace: v2.11.0-rc2
Test_Shi_Telemetry: v2.11.0-rc2
Test_Shi_Telemetry_V2: missing_feature
Test_Shi_Telemetry_Variant_Tag: v2.20.0.dev
Test_Shi_UrlQuery: v2.11.0-rc2
Test_Shi_Waf_Version: v2.15.0
test_sqli.py:
Test_Sqli_BodyJson: v2.10.0
Test_Sqli_BodyUrlEncoded: v2.10.0
Test_Sqli_BodyXml: v2.10.0
Test_Sqli_Capability: v2.11.0
Test_Sqli_Mandatory_SpanTags: v2.10.0
Test_Sqli_Optional_SpanTags: v2.10.0
Test_Sqli_Rules_Version: v2.16.0
Test_Sqli_StackTrace: v2.10.0
Test_Sqli_Telemetry: v2.10.0
Test_Sqli_Telemetry_V2: missing_feature
Test_Sqli_UrlQuery: v2.10.0
Test_Sqli_Waf_Version: v2.15.0
test_ssrf.py:
Test_Ssrf_BodyJson: v2.10.0
Test_Ssrf_BodyUrlEncoded: v2.10.0
Test_Ssrf_BodyXml: v2.10.0
Test_Ssrf_Capability: v2.11.0
Test_Ssrf_Mandatory_SpanTags: v2.10.0
Test_Ssrf_Optional_SpanTags: v2.10.0
Test_Ssrf_Rules_Version: v2.16.0
Test_Ssrf_StackTrace: v2.10.0
Test_Ssrf_Telemetry: v2.10.0
Test_Ssrf_Telemetry_V2: missing_feature
Test_Ssrf_UrlQuery: v2.10.0
Test_Ssrf_Waf_Version: v2.15.0
waf/:
test_addresses.py:
Test_BodyJson:
'*': v1.4.0-rc1
fastapi: v2.4.0
Test_BodyRaw:
'*': missing_feature
django-poc: v1.5.2
fastapi: v2.4.0
python3.12: v1.5.2
Test_BodyUrlEncoded:
'*': v1.4.0-rc1
fastapi: v2.4.0
Test_BodyXml:
'*': v1.5.0-rc1
fastapi: v2.4.0
Test_Cookies:
django-poc: v1.1.0-rc2
fastapi: v2.4.0
flask-poc: v1.4.0-rc1
python3.12: v1.1.0-rc2
uds-flask: v1.4.0-rc1
uwsgi-poc: v1.16.1
Test_FullGrpc: missing_feature
Test_GraphQL: missing_feature
Test_GrpcServerMethod: missing_feature
Test_Headers: v1.6
Test_PathParams:
django-poc: v1.1.0-rc2
fastapi: v2.4.0
flask-poc: v1.4.0-rc1
python3.12: v1.1.0-rc2
uds-flask: v1.4.0-rc1
uwsgi-poc: v1.5.2
Test_ResponseStatus:
'*': v0.58.5
fastapi: v2.4.0
Test_UrlQuery:
'*': v1.2.1
fastapi: v2.4.0
Test_UrlQueryKey:
'*': v1.2.1
fastapi: v2.4.0
Test_UrlRaw:
'*': v0.58.5
fastapi: v2.4.0
Test_gRPC: missing_feature
test_blocking.py:
Test_Blocking:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Blocking_strip_response_headers: v2.10.0
Test_CustomBlockingResponse:
'*': v1.20.0
fastapi: v2.4.0
test_custom_rules.py:
Test_CustomRules:
'*': v1.16.1
django-poc: v1.12
fastapi: v2.4.0
flask-poc: v1.12
test_exclusions.py:
Test_Exclusions:
'*': v1.16.1
django-poc: v1.12
fastapi: v2.4.0
flask-poc: v1.12
test_miscs.py:
Test_404: v1.1.0-rc2
Test_CorrectOptionProcessing:
'*': v1.1.0
fastapi: v2.4.0
Test_MultipleAttacks:
'*': v1.2.1
fastapi: v2.4.0
Test_MultipleHighlight:
'*': v1.2.1
fastapi: v2.4.0
test_reports.py:
Test_Monitoring:
'*': v1.5.0-rc1
fastapi: v2.4.0
test_rules.py:
Test_CommandInjection:
'*': v1.2.1
fastapi: v2.4.0
Test_DiscoveryScan:
'*': v0.58.5
fastapi: v2.4.0
Test_HttpProtocol:
'*': v1.2.1
fastapi: v2.4.0
Test_JavaCodeInjection:
'*': v1.2.1
fastapi: v2.4.0
Test_JsInjection:
'*': v1.2.1
fastapi: v2.4.0
Test_LFI:
'*': v2.4.0
flask-poc: v1.5.2
uds-flask: v1.5.2
uwsgi-poc: v2.9.0
Test_NoSqli:
'*': v1.2.1
fastapi: v2.4.0
Test_PhpCodeInjection:
'*': v1.2.1
fastapi: v2.4.0
Test_RFI:
'*': v1.2.1
fastapi: v2.4.0
Test_SQLI:
'*': v1.3.0
fastapi: v2.4.0
Test_SSRF:
'*': v1.2.1
fastapi: v2.4.0
Test_Scanners:
'*': v1.2.1
fastapi: v2.4.0
Test_XSS:
'*': v1.3.0
fastapi: v2.4.0
test_telemetry.py:
Test_TelemetryMetrics:
'*': v1.14.0
fastapi: v2.4.0
test_truncation.py:
Test_Truncation: v3.3.0.dev
test_alpha.py:
Test_Basic:
'*': v1.1.0-rc2
fastapi: v2.4.0
test_asm_standalone.py:
Test_AppSecStandalone_NotEnabled: v2.12.3
Test_AppSecStandalone_UpstreamPropagation: irrelevant (was v2.12.3 for all, v2.17.1 for uwsgi-poc but will be replaced by V2)
Test_AppSecStandalone_UpstreamPropagation_V2: v3.2.0.dev
Test_IastStandalone_UpstreamPropagation: irrelevant (was v2.18.0.dev but will be replaced by V2)
Test_IastStandalone_UpstreamPropagation_V2:
'*': v3.2.0.dev
flask-poc: bug (APPSEC-57145)
uds-flask: bug (APPSEC-57145)
Test_SCAStandalone_Telemetry: irrelevant (was v2.19.0.dev but will be replaced by V2)
Test_SCAStandalone_Telemetry_V2: v3.2.0.dev
test_automated_login_events.py:
Test_Login_Events: irrelevant (was v2.10.0 but will be replaced by V2)
Test_Login_Events_Extended: irrelevant (was v2.10.0 but will be replaced by V2)
Test_V2_Login_Events: irrelevant (was v2.11.0 but will be replaced by V3)
Test_V2_Login_Events_Anon: irrelevant (was v2.11.0 but will be replaced by V3)
Test_V2_Login_Events_RC: irrelevant (was v2.11.0 but will be replaced by V3)
Test_V3_Auto_User_Instrum_Mode_Capability: v2.11.0
Test_V3_Login_Events: v2.20.0.dev
Test_V3_Login_Events_Anon: v2.20.0.dev
Test_V3_Login_Events_Blocking: v2.20.0.dev
Test_V3_Login_Events_RC: v2.11.0
test_automated_user_and_session_tracking.py:
Test_Automated_Session_Blocking:
'*': missing_feature (no auto instrumentation for session on non Django weblogs)
django-poc: v3.3.0.dev
django-py3.13: v3.3.0.dev
python3.12: v3.3.0.dev
Test_Automated_User_Blocking: v3.0.0.rc
Test_Automated_User_Tracking: v3.1.0.dev
test_blocking_addresses.py:
Test_BlockingGraphqlResolvers: missing_feature
Test_Blocking_client_ip:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Blocking_request_body:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Blocking_request_body_multipart:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Blocking_request_cookies:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Blocking_request_headers:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Blocking_request_method:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Blocking_request_path_params:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.13
Test_Blocking_request_query:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Blocking_request_uri:
'*': v1.16.1
django-poc: v1.15
fastapi: v2.4.0
flask-poc: v1.15
Test_Blocking_response_headers:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Blocking_response_status:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Blocking_user_id:
'*': v1.16.1
django-poc: v1.10
fastapi: v2.4.0
flask-poc: v1.10
Test_Suspicious_Request_Blocking: v2.4.0
test_client_ip.py:
Test_StandardTagsClientIp: v1.5.0
test_conf.py:
Test_ConfigurationVariables:
'*': v1.1.2
fastapi: v2.4.0
test_customconf.py:
Test_ConfRuleSet: v1.1.0-rc2
Test_CorruptedRules_Telemetry: missing_feature
Test_NoLimitOnWafRules: v1.1.0-rc2
test_event_tracking.py:
Test_CustomEvent: v1.10.0
Test_CustomEvent_Metrics: missing_feature
Test_UserLoginFailureEvent:
'*': v2.10.0
Test_UserLoginFailureEvent_Metrics: missing_feature
Test_UserLoginSuccessEvent:
'*': v2.10.0
Test_UserLoginSuccessEvent_Metrics: missing_feature
test_event_tracking_v2.py:
Test_UserLoginFailureEventV2_HeaderCollection: missing_feature
Test_UserLoginFailureEventV2_Libddwaf: missing_feature
Test_UserLoginFailureEventV2_Metrics: missing_feature
Test_UserLoginFailureEventV2_Tags: missing_feature
Test_UserLoginSuccessEventV2_HeaderCollection: missing_feature
Test_UserLoginSuccessEventV2_Libddwaf: missing_feature
Test_UserLoginSuccessEventV2_Metrics: missing_feature
Test_UserLoginSuccessEventV2_Tags: missing_feature
test_fingerprinting.py:
Test_Fingerprinting_Endpoint: v2.11.0
Test_Fingerprinting_Endpoint_Capability: v2.11.0
Test_Fingerprinting_Endpoint_Preprocessor: v2.11.0
Test_Fingerprinting_Header_And_Network: v2.11.0
Test_Fingerprinting_Header_And_Network_Preprocessor: v2.11.0
Test_Fingerprinting_Header_Capability: v2.11.0
Test_Fingerprinting_Network_Capability: v2.11.0
Test_Fingerprinting_Session: v2.17.0.dev
Test_Fingerprinting_Session_Capability: v2.17.0.dev
Test_Fingerprinting_Session_Preprocessor: v2.17.0.dev
test_identify.py:
Test_Basic: v1.5.0-rc1
test_ip_blocking_full_denylist.py:
Test_AppSecIPBlockingFullDenylist: v2.11.0
test_logs.py:
Test_Standardization: missing_feature
Test_StandardizationBlockMode: missing_feature
test_metastruct.py:
Test_SecurityEvents_Appsec_Metastruct_Disabled: irrelevant (no fallback will be implemented)
Test_SecurityEvents_Appsec_Metastruct_Enabled: v3.0.0.rc
Test_SecurityEvents_Iast_Metastruct_Disabled: irrelevant (no fallback will be implemented)
Test_SecurityEvents_Iast_Metastruct_Enabled: missing_feature
test_only_python.py:
Test_ImportError: v3.3.0.dev (was v2.20.0.dev but a regression was introduced in v3.2/v3.1)
test_rate_limiter.py:
Test_Main: v2.0.0
test_remote_config_rule_changes.py:
Test_BlockingActionChangesWithRemoteConfig: v2.10.1
Test_UpdateRuleFileWithRemoteConfig: v2.16.0-rc (v2.11.0 but added telemetry and span tag support in 2.16)
test_reports.py:
Test_ExtraTagsFromRule: v1.14.0
Test_Info: v1.1.0-rc2
Test_RequestHeaders: v1.1.0-rc2
Test_StatusCode: v1.1.0-rc2
test_request_blocking.py:
Test_AppSecRequestBlocking:
'*': v1.10.0
fastapi: v2.4.0
test_runtime_activation.py:
Test_RuntimeActivation: v2.10.1
Test_RuntimeDeactivation: v2.10.1
test_shell_execution.py:
Test_ShellExecution: missing_feature
test_suspicious_attacker_blocking.py:
Test_Suspicious_Attacker_Blocking: v2.11.0-rc
test_traces.py:
Test_AppSecEventSpanTags: v0.58.5
Test_AppSecObfuscator:
'*': v1.5.0-rc1
fastapi: v2.6.0
Test_CollectDefaultRequestHeader: v2.9.040
Test_CollectRespondHeaders:
'*': v1.4.0-rc1
fastapi: v2.4.0
Test_ExternalWafRequestsIdentification: v2.9.0
Test_RetainTraces: v1.1.0-rc2
test_user_blocking_full_denylist.py:
Test_UserBlocking_FullDenylist: v2.11.0
test_versions.py:
Test_Events: v0.58.5
debugger/:
test_debugger_exception_replay.py:
Test_Debugger_Exception_Replay:
'*': missing_feature
flask-poc: v3.4.0
uds-flask: v3.4.0
uwsgi-poc: v3.4.0
test_debugger_expression_language.py:
Test_Debugger_Expression_Language:
'*': missing_feature
flask-poc: v2.11.0
uds-flask: v2.11.0
uwsgi-poc: v2.11.0
test_debugger_inproduct_enablement.py:
Test_Debugger_InProduct_Enablement_Code_Origin: missing_feature
Test_Debugger_InProduct_Enablement_Dynamic_Instrumentation: missing_feature
Test_Debugger_InProduct_Enablement_Exception_Replay: missing_feature
test_debugger_pii.py:
Test_Debugger_PII_Redaction:
'*': missing_feature
flask-poc: v2.11.0
uds-flask: v2.11.0
uwsgi-poc: v2.11.0
test_debugger_probe_snapshot.py:
Test_Debugger_Probe_Snaphots:
'*': missing_feature
flask-poc: v2.11.0
uds-flask: v2.11.0
uwsgi-poc: v2.11.0
test_debugger_probe_status.py:
Test_Debugger_Probe_Statuses:
'*': missing_feature
flask-poc: v2.11.0
uds-flask: v2.11.0
uwsgi-poc: v2.11.0
test_debugger_symdb.py:
Test_Debugger_SymDb:
'*': missing_feature
flask-poc: v2.11.0
uds-flask: v2.11.0
uwsgi-poc: v2.11.0
test_debugger_telemetry.py:
Test_Debugger_Telemetry: v2.11.0
integrations/:
crossed_integrations/:
test_kafka.py:
Test_Kafka:
'*': irrelevant
flask-poc: v2.5.0
test_kinesis.py:
Test_Kinesis_PROPAGATION_VIA_MESSAGE_ATTRIBUTES:
'*': irrelevant
flask-poc: v2.6.0
test_rabbitmq.py:
Test_RabbitMQ_Trace_Context_Propagation:
'*': irrelevant
flask-poc: v0.1 # actual version unknown
test_sns_to_sqs.py:
Test_SNS_Propagation:
'*': irrelevant
flask-poc: v2.6.0
test_sqs.py:
Test_SQS_PROPAGATION_VIA_AWS_XRAY_HEADERS:
'*': irrelevant
flask-poc: v0.1 # actual version unknown
Test_SQS_PROPAGATION_VIA_MESSAGE_ATTRIBUTES:
'*': irrelevant
flask-poc: v2.6.0
test_db_integrations_sql.py:
Test_MsSql:
'*': missing_feature
flask-poc: v1.18.3
Test_MySql:
'*': missing_feature
flask-poc: v1.18.3
Test_Postgres:
'*': missing_feature
flask-poc: v1.18.3
test_dbm.py:
Test_Dbm:
'*': missing_feature (Missing on weblog)
flask-poc: v0.1
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Batch_Python_Aiomysql:
'*': missing_feature (Missing on weblog)
flask-poc: v2.9.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Batch_Python_MysqlConnector:
'*': missing_feature (Missing on weblog)
flask-poc: v2.9.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Batch_Python_Mysqldb:
'*': missing_feature (Missing on weblog)
flask-poc: v2.9.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Batch_Python_Psycopg:
'*': missing_feature (Missing on weblog)
flask-poc: v2.8.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Batch_Python_Pymysql:
'*': missing_feature (Missing on weblog)
flask-poc: v2.9.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Python_Aiomysql:
'*': missing_feature (Missing on weblog)
flask-poc: v2.9.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Python_Asyncpg:
'*': missing_feature (Missing on weblog)
flask-poc: v2.9.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Python_MysqlConnector:
'*': missing_feature (Missing on weblog)
flask-poc: v2.9.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Python_Mysqldb:
'*': missing_feature (Missing on weblog)
flask-poc: v2.9.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Python_Psycopg:
'*': missing_feature (Missing on weblog)
flask-poc: v2.8.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
Test_Dbm_Comment_Python_Pymysql:
'*': missing_feature (Missing on weblog)
flask-poc: v2.9.0
uds-flask: v2.9.0
uwsgi-poc: v2.9.0
test_dsm.py:
Test_DsmContext_Extraction_Base64:
'*': irrelevant
flask-poc: v2.8.0
Test_DsmContext_Injection_Base64:
'*': irrelevant
flask-poc: v2.8.0
Test_DsmHttp: missing_feature
Test_DsmKafka:
'*': irrelevant
flask-poc: v2.16.0
Test_DsmKinesis:
'*': irrelevant
flask-poc: v2.8.0
Test_DsmRabbitmq:
'*': irrelevant
flask-poc: v2.6.0
Test_DsmRabbitmq_FanoutExchange:
'*': irrelevant
flask-poc: missing_feature (endpoint not implemented)
Test_DsmRabbitmq_TopicExchange:
'*': irrelevant
flask-poc: missing_feature (endpoint not implemented)
Test_DsmSNS:
'*': irrelevant
flask-poc: v1.16.0
Test_DsmSQS:
'*': irrelevant
flask-poc: v1.16.0
Test_Dsm_Manual_Checkpoint_Inter_Process:
'*': irrelevant
flask-poc: v2.8.0
Test_Dsm_Manual_Checkpoint_Intra_Process:
'*': irrelevant
flask-poc: v2.8.0
test_inferred_proxy.py:
Test_AWS_API_Gateway_Inferred_Span_Creation:
'*': irrelevant
flask-poc: v3.1.0
Test_AWS_API_Gateway_Inferred_Span_Creation_With_Distributed_Context:
'*': irrelevant
flask-poc: v3.1.0
Test_AWS_API_Gateway_Inferred_Span_Creation_With_Error:
'*': irrelevant
flask-poc: v3.1.0
test_otel_drop_in.py:
Test_Otel_Drop_In: missing_feature
otel/:
test_context_propagation.py:
Test_Otel_Context_Propagation_Default_Propagator_Api:
'*': incomplete_test_app (endpoint not implemented)
flask-poc: v2.19.0
parametric/:
test_128_bit_traceids.py:
Test_128_Bit_Traceids: v2.6.0
test_config_consistency.py:
Test_Config_Dogstatsd: v3.3.0.dev
Test_Config_RateLimit: v2.15.0
Test_Config_Tags: v3.3.0.dev
Test_Config_TraceAgentURL: v2.0.0
Test_Config_TraceEnabled: v2.12.2
Test_Config_TraceLogDirectory: missing_feature
Test_Config_UnifiedServiceTagging: v2.12.2
Test_Stable_Config_Default: v3.2.0.dev
test_crashtracking.py:
Test_Crashtracking: v2.11.2
test_dynamic_configuration.py:
TestDynamicConfigSamplingRules: v2.9.0
TestDynamicConfigTracingEnabled: flaky (APMAPI-734)
TestDynamicConfigV1: missing_feature (failure 2.8.0)
TestDynamicConfigV1_EmptyServiceTargets: v2.18.1 # version unknown
TestDynamicConfigV1_ServiceTargets: missing_feature (failure 2.8.0)
TestDynamicConfigV2: v2.0.0
test_headers_b3.py:
Test_Headers_B3: v2.8.0
test_headers_b3multi.py:
Test_Headers_B3multi: v2.8.0
test_headers_baggage.py:
Test_Headers_Baggage: v2.16.0
test_headers_datadog.py:
Test_Headers_Datadog: v2.8.0
test_headers_none.py:
Test_Headers_None: v2.8.0
test_headers_precedence.py:
Test_Headers_Precedence: v2.8.0
test_headers_tracecontext.py:
Test_Headers_Tracecontext: v2.8.0
test_headers_tracestate_dd.py:
Test_Headers_Tracestate_DD: v2.8.0
test_library_tracestats.py:
Test_Library_Tracestats: missing_feature (failure 2.8.0)
test_otel_api_interoperability.py:
Test_Otel_API_Interoperability: missing_feature
test_otel_env_vars.py:
Test_Otel_Env_Vars: v2.9.0
test_otel_span_methods.py:
Test_Otel_Span_Methods: v2.8.0
test_otel_span_with_baggage.py:
Test_Otel_Span_With_Baggage: v2.18.0
test_otel_tracer.py:
Test_Otel_Tracer: v2.8.0
test_parametric_endpoints.py:
Test_Parametric_DDTrace_Baggage: v2.16.0
Test_Parametric_Otel_Baggage: v2.16.0
test_partial_flushing.py:
Test_Partial_Flushing: flaky (APMAPI-734)
test_process_discovery.py: missing_feature
test_sampling_delegation.py:
Test_Decisionless_Extraction: v2.8.0
test_sampling_span_tags.py:
Test_Sampling_Span_Tags: v2.8.0
test_span_events.py:
Test_Span_Events: missing_feature
test_span_links.py:
Test_Span_Links: v2.3.0
test_span_sampling.py:
Test_Span_Sampling: v2.8.0
test_telemetry.py:
Test_Consistent_Configs: missing_feature
Test_Defaults: v2.9.0
Test_Environment: v2.8.0
Test_Stable_Configuration_Origin: v3.2.0.dev
Test_TelemetryInstallSignature: v2.5.0
Test_TelemetrySCAEnvVar: v2.9.0
test_trace_sampling.py:
Test_Trace_Sampling_Basic: v1.9.0 # actual version unknown
Test_Trace_Sampling_Globs: v2.8.0
Test_Trace_Sampling_Globs_Feb2024_Revision: v2.8.0
Test_Trace_Sampling_Resource: v2.8.0
Test_Trace_Sampling_Tags: v2.8.0
Test_Trace_Sampling_Tags_Feb2024_Revision: v2.9.0
Test_Trace_Sampling_With_W3C: v2.8.0
test_tracer.py:
Test_Tracer: v2.8.0
Test_TracerSCITagging: v1.12.0
Test_TracerUniversalServiceTagging: v0.36.0
test_tracer_flare.py:
TestTracerFlareV1: missing_feature (failure 2.8.0)
remote_config/:
test_remote_configuration.py:
Test_RemoteConfigurationExtraServices: v2.1.0
Test_RemoteConfigurationUpdateSequenceASMDD: v2.9.0
Test_RemoteConfigurationUpdateSequenceASMDDNoCache: missing_feature
Test_RemoteConfigurationUpdateSequenceFeatures: v1.7.4
Test_RemoteConfigurationUpdateSequenceFeaturesNoCache: irrelevant (cache is implemented)
Test_RemoteConfigurationUpdateSequenceLiveDebugging: v2.8.0
serverless/:
span_pointers/:
aws/:
test_s3_span_pointers.py:
# NOTE: fastapi-based async things don't play well with moto
Test_CopyObject:
'*': missing_feature
django-poc: v2.15.0
flask-poc: v2.15.0
python3.12: v2.15.0
Test_MultipartUpload:
'*': missing_feature
django-poc: v2.15.0
flask-poc: v2.15.0
python3.12: v2.15.0
Test_PutObject:
'*': missing_feature
django-poc: v2.14.0
flask-poc: v2.14.0
python3.12: v2.14.0
stats/:
test_miscs.py:
Test_Miscs: missing_feature
test_stats.py:
Test_Client_Stats:
'*': v0.1 (real version unknown)
django-py3.13: bug (APMLP-364)
test_baggage.py:
Test_Baggage_Headers_Basic:
'*': irrelevant
fastapi: v2.16.0
Test_Baggage_Headers_Malformed:
'*': irrelevant
fastapi: v2.16.0
Test_Baggage_Headers_Malformed2:
'*': irrelevant
fastapi: v2.16.0
Test_Baggage_Headers_Max_Bytes:
'*': irrelevant
fastapi: v2.16.0
Test_Baggage_Headers_Max_Items:
'*': irrelevant
fastapi: v2.16.0
Test_Only_Baggage_Header:
'*': irrelevant
fastapi: v2.16.0
test_config_consistency.py:
Test_Config_ClientIPHeaderEnabled_False: v2.17.3
Test_Config_ClientIPHeader_Configured: v2.12.0
Test_Config_ClientIPHeader_Precedence: v2.12.0
Test_Config_ClientTagQueryString_Configured: v2.15.0
Test_Config_ClientTagQueryString_Empty: v2.12.0
Test_Config_HttpClientErrorStatuses_Default: missing_feature
Test_Config_HttpClientErrorStatuses_FeatureFlagCustom: missing_feature (xpassing but should fail, this environment variable is not supported)
Test_Config_HttpServerErrorStatuses_Default: v2.12.0
Test_Config_HttpServerErrorStatuses_FeatureFlagCustom: v2.15.0
Test_Config_IntegrationEnabled_False:
'*': irrelevant (kafka endpoint is not implemented)