-
Notifications
You must be signed in to change notification settings - Fork 428
/
Copy pathtest_fastapi_appsec_iast.py
1021 lines (861 loc) · 40.8 KB
/
test_fastapi_appsec_iast.py
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
import io
import json
import logging
import re
import sys
import typing
from fastapi import Cookie
from fastapi import Form
from fastapi import Header
from fastapi import Request
from fastapi import UploadFile
from fastapi import __version__ as _fastapi_version
from fastapi.responses import JSONResponse
import pytest
from starlette.responses import PlainTextResponse
from ddtrace.appsec._constants import IAST
from ddtrace.appsec._iast import oce
from ddtrace.appsec._iast._handlers import _on_iast_fastapi_patch
from ddtrace.appsec._iast._patch_modules import patch_iast
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
from ddtrace.appsec._iast.constants import VULN_HEADER_INJECTION
from ddtrace.appsec._iast.constants import VULN_INSECURE_COOKIE
from ddtrace.appsec._iast.constants import VULN_NO_HTTPONLY_COOKIE
from ddtrace.appsec._iast.constants import VULN_NO_SAMESITE_COOKIE
from ddtrace.appsec._iast.constants import VULN_SQL_INJECTION
from ddtrace.appsec._iast.constants import VULN_STACKTRACE_LEAK
from ddtrace.appsec._iast.constants import VULN_XSS
from ddtrace.contrib.internal.fastapi.patch import patch as patch_fastapi
from ddtrace.contrib.internal.sqlite3.patch import patch as patch_sqlite_sqli
from tests.appsec.iast.iast_utils import get_line_and_hash
from tests.appsec.iast.taint_sinks.test_stacktrace_leak import _load_text_stacktrace
from tests.utils import override_env
from tests.utils import override_global_config
TEST_FILE_PATH = "tests/appsec/integrations/fastapi_tests/test_fastapi_appsec_iast.py"
fastapi_version = tuple([int(v) for v in _fastapi_version.split(".")])
def _aux_appsec_prepare_tracer(tracer):
_on_iast_fastapi_patch()
patch_fastapi()
patch_sqlite_sqli()
oce.reconfigure()
# Hack: need to pass an argument to configure so that the processors are recreated
tracer._configure(api_version="v0.4")
def get_response_body(response):
return response.text
# The log contains "[IAST]" but "[IAST] create_context" or "[IAST] reset_context" are valid
IAST_VALID_LOG = re.compile(r"(?=.*\[IAST\] )(?!.*\[IAST\] (create_context|reset_context))")
@pytest.fixture(autouse=True)
def check_native_code_exception_in_each_fastapi_test(request, caplog, telemetry_writer):
if "skip_iast_check_logs" in request.keywords:
yield
else:
caplog.set_level(logging.DEBUG)
with override_env({"_DD_IAST_USE_ROOT_SPAN": "false"}), override_global_config(
dict(_iast_debug=True)
), caplog.at_level(logging.DEBUG):
yield
log_messages = [record.msg for record in caplog.get_records("call")]
for message in log_messages:
if IAST_VALID_LOG.search(message):
pytest.fail(message)
list_metrics_logs = list(telemetry_writer._logs)
assert len(list_metrics_logs) == 0
def test_query_param_source(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/index.html")
async def test_route(request: Request):
query_params = request.query_params.get("iast_queryparam")
ranges_result = get_tainted_ranges(query_params)
return JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/index.html?iast_queryparam=test1234",
headers={"Content-Type": "application/json"},
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "test1234"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 8
assert result["ranges_origin"] == "http.request.parameter"
def test_query_param_name_source_get(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/index.html")
async def test_route(request: Request):
query_params = [k for k in request.query_params.keys() if k == "iast_queryparam"][0]
ranges_result = get_tainted_ranges(query_params)
return JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
"ranges_origin_name": ranges_result[0].source.name,
"ranges_origin_value": ranges_result[0].source.value,
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/index.html?iast_queryparam=test1234",
headers={"Content-Type": "application/json"},
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "iast_queryparam"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 15
assert result["ranges_origin"] == "http.request.parameter.name"
assert result["ranges_origin_name"] == "iast_queryparam"
assert result["ranges_origin_value"] == "iast_queryparam"
def test_query_param_name_source_post(fastapi_application, client, tracer, test_spans):
@fastapi_application.post("/index.html")
async def test_route(request: Request):
form_data = await request.form()
query_params = [k for k in form_data.keys() if k == "iast_queryparam"][0]
ranges_result = get_tainted_ranges(query_params)
return JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
"ranges_origin_name": ranges_result[0].source.name,
"ranges_origin_value": ranges_result[0].source.value,
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.post(
"/index.html",
data={"iast_queryparam": "test1234"},
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "iast_queryparam"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 15
assert result["ranges_origin"] == "http.request.parameter.name"
assert result["ranges_origin_name"] == "iast_queryparam"
assert result["ranges_origin_value"] == "iast_queryparam"
def test_header_value_source(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/index.html")
async def test_route(request: Request):
query_params = request.headers.get("iast_header")
ranges_result = get_tainted_ranges(query_params)
return JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/index.html",
headers={"iast_header": "test1234"},
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "test1234"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 8
assert result["ranges_origin"] == "http.request.header"
def test_header_name_source(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/index.html")
async def test_route(request: Request):
query_params = [k for k in request.headers.keys() if k == "iast_header"][0]
ranges_result = get_tainted_ranges(query_params)
return JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
"ranges_origin_name": ranges_result[0].source.name,
"ranges_origin_value": ranges_result[0].source.value,
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/index.html",
headers={"iast_header": "test1234"},
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "iast_header"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 11
assert result["ranges_origin"] == "http.request.header.name"
assert result["ranges_origin_name"] == "iast_header"
assert result["ranges_origin_value"] == "iast_header"
@pytest.mark.skipif(sys.version_info < (3, 9), reason="typing.Annotated was introduced on 3.9")
@pytest.mark.skipif(fastapi_version < (0, 95, 0), reason="Header annotation doesn't work on fastapi 94 or lower")
def test_header_value_source_typing_param(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/index.html")
async def test_route(iast_header: typing.Annotated[str, Header()] = None):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
ranges_result = get_tainted_ranges(iast_header)
return JSONResponse(
{
"result": iast_header,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/index.html",
headers={"iast-header": "test1234"},
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "test1234"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 8
assert result["ranges_origin"] == "http.request.header"
def test_cookies_source(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/index.html")
async def test_route(request: Request):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
query_params = request.cookies.get("iast_cookie")
ranges_result = get_tainted_ranges(query_params)
return JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/index.html",
cookies={"iast_cookie": "test1234"},
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "test1234"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 8
assert result["ranges_origin"] == "http.request.cookie.value"
@pytest.mark.skipif(sys.version_info < (3, 9), reason="typing.Annotated was introduced on 3.9")
@pytest.mark.skipif(fastapi_version < (0, 95, 0), reason="Cookie annotation doesn't work on fastapi 94 or lower")
def test_cookies_source_typing_param(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/index.html")
async def test_route(iast_cookie: typing.Annotated[str, Cookie()] = "ddd"):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
ranges_result = get_tainted_ranges(iast_cookie)
return JSONResponse(
{
"result": iast_cookie,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/index.html",
cookies={"iast_cookie": "test1234"},
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "test1234"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 8
assert result["ranges_origin"] == "http.request.cookie.value"
def test_path_param_source(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/index.html/{item_id}")
async def test_route(item_id):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
ranges_result = get_tainted_ranges(item_id)
return JSONResponse(
{
"result": item_id,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/index.html/test1234/",
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "test1234"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 8
assert result["ranges_origin"] == "http.request.path.parameter"
def test_path_source(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/path_source/")
async def test_route(request: Request):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
path = request.url.path
ranges_result = get_tainted_ranges(path)
return JSONResponse(
{
"result": path,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/path_source/",
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "/path_source/"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 13
assert result["ranges_origin"] == "http.request.path"
def test_path_body_receive_source(fastapi_application, client, tracer, test_spans):
@fastapi_application.post("/index.html")
async def test_route(request: Request):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
body = await request.receive()
result = body["body"]
ranges_result = get_tainted_ranges(result)
return JSONResponse(
{
"result": str(result, encoding="utf-8"),
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.post(
"/index.html",
data='{"name": "yqrweytqwreasldhkuqwgervflnmlnli"}',
headers={"Content-Type": "application/json"},
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == '{"name": "yqrweytqwreasldhkuqwgervflnmlnli"}'
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 44
assert result["ranges_origin"] == "http.request.body"
def test_path_body_body_source(fastapi_application, client, tracer, test_spans):
@fastapi_application.post("/index.html")
async def test_route(request: Request):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
body = await request.body()
ranges_result = get_tainted_ranges(body)
return JSONResponse(
{
"result": str(body, encoding="utf-8"),
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.post(
"/index.html",
data='{"name": "yqrweytqwreasldhkuqwgervflnmlnli"}',
headers={"Content-Type": "application/json"},
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == '{"name": "yqrweytqwreasldhkuqwgervflnmlnli"}'
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 44
assert result["ranges_origin"] == "http.request.body"
@pytest.mark.skipif(sys.version_info < (3, 9), reason="typing.Annotated was introduced on 3.9")
@pytest.mark.skipif(fastapi_version < (0, 95, 0), reason="Default is mandatory on 94 or lower")
def test_path_body_body_source_formdata_latest(fastapi_application, client, tracer, test_spans):
@fastapi_application.post("/index.html")
async def test_route(path: typing.Annotated[str, Form()]):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
ranges_result = get_tainted_ranges(path)
return JSONResponse(
{
"result": path,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.post("/index.html", data={"path": "/var/log"})
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "/var/log"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 8
assert result["ranges_origin"] == "http.request.body"
def test_path_body_body_source_formdata_90(fastapi_application, client, tracer, test_spans):
@fastapi_application.post("/index.html")
async def test_route(path: str = Form(...)):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
ranges_result = get_tainted_ranges(path)
return JSONResponse(
{
"result": path,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.post("/index.html", data={"path": "/var/log"})
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "/var/log"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 8
assert result["ranges_origin"] == "http.request.body"
@pytest.mark.skip(reason="Pydantic not supported yet APPSEC-52941")
def test_path_body_source_pydantic(fastapi_application, client, tracer, test_spans):
from pydantic import BaseModel
class Item(BaseModel):
name: str
description: str | None = None
price: float | None = None
tax: float | None = None
@fastapi_application.post("/index")
async def test_route(item: Item):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
ranges_result = get_tainted_ranges(item.name)
return JSONResponse(
{
"result": item.name,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.post(
"/index", data='{"name": "yqrweytqwreasldhkuqwgervflnmlnli"}', headers={"Content-Type": "application/json"}
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["result"] == "test1234"
assert result["is_tainted"] == 1
assert result["ranges_start"] == 0
assert result["ranges_length"] == 8
assert result["ranges_origin"] == "http.request.body"
@pytest.mark.skipif(fastapi_version < (0, 65, 0), reason="UploadFile not supported")
def test_path_body_body_upload(fastapi_application, client, tracer, test_spans):
@fastapi_application.post("/uploadfile/")
async def create_upload_file(files: typing.List[UploadFile]):
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
ranges_result = get_tainted_ranges(files[0])
return JSONResponse(
{
"filenames": [file.filename for file in files],
"is_tainted": len(ranges_result),
}
)
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
# disable callback
_aux_appsec_prepare_tracer(tracer)
tmp = io.BytesIO(b"upload this")
resp = client.post(
"/uploadfile/",
files=(
("files", ("test.txt", tmp)),
("files", ("test2.txt", tmp)),
),
)
assert resp.status_code == 200
result = json.loads(get_response_body(resp))
assert result["filenames"] == ["test.txt", "test2.txt"]
assert result["is_tainted"] == 0
def test_fastapi_sqli_path_param(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/index.html/{param_str}")
async def test_route(param_str):
import sqlite3
from ddtrace.appsec._iast._taint_tracking._taint_objects import is_pyobject_tainted
from ddtrace.appsec._iast._taint_tracking.aspects import add_aspect
assert is_pyobject_tainted(param_str)
con = sqlite3.connect(":memory:")
cur = con.cursor()
# label test_fastapi_sqli_path_parameter
cur.execute(add_aspect("SELECT 1 FROM ", param_str))
with override_global_config(
dict(_iast_enabled=True, _iast_deduplication_enabled=False, _iast_request_sampling=100.0)
):
# disable callback
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/index.html/sqlite_master/",
)
assert resp.status_code == 200
span = test_spans.pop_traces()[1][0]
assert span.get_metric(IAST.ENABLED) == 1.0
loaded = json.loads(span.get_tag(IAST.JSON))
assert loaded["sources"] == [
{"origin": "http.request.path.parameter", "name": "param_str", "value": "sqlite_master"}
]
line, hash_value = get_line_and_hash(
"test_fastapi_sqli_path_parameter", VULN_SQL_INJECTION, filename=TEST_FILE_PATH
)
vulnerability = loaded["vulnerabilities"][0]
assert vulnerability["type"] == VULN_SQL_INJECTION
assert vulnerability["evidence"] == {
"valueParts": [
{"value": "SELECT "},
{"redacted": True},
{"value": " FROM "},
{"value": "sqlite_master", "source": 0},
]
}
assert vulnerability["location"]["line"] == line
assert vulnerability["location"]["path"] == TEST_FILE_PATH
assert vulnerability["hash"] == hash_value
def test_fasapi_insecure_cookie(fastapi_application, client, tracer, test_spans):
@fastapi_application.route("/insecure_cookie/", methods=["GET"])
def insecure_cookie(request: Request):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
query_params = request.query_params.get("iast_queryparam")
ranges_result = get_tainted_ranges(query_params)
response = JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
response.set_cookie(key="insecure", value=query_params, secure=False, httponly=True, samesite="strict")
return response
with override_global_config(
dict(_iast_enabled=True, _iast_deduplication_enabled=False, _iast_request_sampling=100.0)
):
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/insecure_cookie/?iast_queryparam=insecure",
)
assert resp.status_code == 200
span = test_spans.pop_traces()[0][0]
assert span.get_metric(IAST.ENABLED) == 1.0
loaded = json.loads(span.get_tag(IAST.JSON))
assert len(loaded["vulnerabilities"]) == 1
vulnerability = loaded["vulnerabilities"][0]
assert vulnerability["type"] == VULN_INSECURE_COOKIE
assert "path" not in vulnerability["location"].keys()
assert "line" not in vulnerability["location"].keys()
assert vulnerability["location"]["spanId"]
assert vulnerability["hash"]
def test_fasapi_insecure_cookie_empty(fastapi_application, client, tracer, test_spans):
@fastapi_application.route("/insecure_cookie/", methods=["GET"])
def insecure_cookie(request: Request):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
query_params = request.query_params.get("iast_queryparam")
ranges_result = get_tainted_ranges(query_params)
response = JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
response.set_cookie(key="insecure", value="", secure=False, httponly=True, samesite="strict")
return response
with override_global_config(
dict(_iast_enabled=True, _iast_deduplication_enabled=False, _iast_request_sampling=100.0)
):
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/insecure_cookie/?iast_queryparam=insecure",
)
assert resp.status_code == 200
span = test_spans.pop_traces()[0][0]
assert span.get_metric(IAST.ENABLED) == 1.0
loaded = span.get_tag(IAST.JSON)
assert loaded is None
def test_fasapi_no_http_only_cookie(fastapi_application, client, tracer, test_spans):
@fastapi_application.route("/insecure_cookie/", methods=["GET"])
def insecure_cookie(request: Request):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
query_params = request.query_params.get("iast_queryparam")
ranges_result = get_tainted_ranges(query_params)
response = JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
response.set_cookie(key="insecure", value=query_params, secure=True, httponly=False, samesite="strict")
return response
with override_global_config(
dict(_iast_enabled=True, _iast_deduplication_enabled=False, _iast_request_sampling=100.0)
):
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/insecure_cookie/?iast_queryparam=insecure",
)
assert resp.status_code == 200
span = test_spans.pop_traces()[0][0]
assert span.get_metric(IAST.ENABLED) == 1.0
loaded = json.loads(span.get_tag(IAST.JSON))
assert len(loaded["vulnerabilities"]) == 1
vulnerability = loaded["vulnerabilities"][0]
assert vulnerability["type"] == VULN_NO_HTTPONLY_COOKIE
assert "path" not in vulnerability["location"].keys()
assert "line" not in vulnerability["location"].keys()
assert vulnerability["location"]["spanId"]
assert vulnerability["hash"]
def test_fasapi_no_http_only_cookie_empty(fastapi_application, client, tracer, test_spans):
@fastapi_application.route("/insecure_cookie/", methods=["GET"])
def insecure_cookie(request: Request):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
query_params = request.query_params.get("iast_queryparam")
ranges_result = get_tainted_ranges(query_params)
response = JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
response.set_cookie(key="insecure", value="", secure=True, httponly=False, samesite="strict")
return response
with override_global_config(dict(_iast_enabled=True, _iast_request_sampling=100.0)):
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/insecure_cookie/?iast_queryparam=insecure",
)
assert resp.status_code == 200
span = test_spans.pop_traces()[0][0]
assert span.get_metric(IAST.ENABLED) == 1.0
loaded = span.get_tag(IAST.JSON)
assert loaded is None
def test_fasapi_no_samesite_cookie(fastapi_application, client, tracer, test_spans):
@fastapi_application.route("/insecure_cookie/", methods=["GET"])
def insecure_cookie(request: Request):
from ddtrace.appsec._iast._taint_tracking import origin_to_str
from ddtrace.appsec._iast._taint_tracking._taint_objects import get_tainted_ranges
query_params = request.query_params.get("iast_queryparam")
ranges_result = get_tainted_ranges(query_params)
response = JSONResponse(
{
"result": query_params,
"is_tainted": len(ranges_result),
"ranges_start": ranges_result[0].start,
"ranges_length": ranges_result[0].length,
"ranges_origin": origin_to_str(ranges_result[0].source.origin),
}
)
response.set_cookie(key="insecure", value=query_params, secure=True, httponly=True, samesite="none")
return response
with override_global_config(
dict(_iast_enabled=True, _iast_deduplication_enabled=False, _iast_request_sampling=100.0)
):
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/insecure_cookie/?iast_queryparam=insecure",
)
assert resp.status_code == 200
span = test_spans.pop_traces()[0][0]
assert span.get_metric(IAST.ENABLED) == 1.0
loaded = json.loads(span.get_tag(IAST.JSON))
assert len(loaded["vulnerabilities"]) == 1
vulnerability = loaded["vulnerabilities"][0]
assert vulnerability["type"] == VULN_NO_SAMESITE_COOKIE
assert "path" not in vulnerability["location"].keys()
assert "line" not in vulnerability["location"].keys()
assert vulnerability["location"]["spanId"]
assert vulnerability["hash"]
def test_fastapi_header_injection(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/header_injection/")
async def header_injection(request: Request):
from ddtrace.appsec._iast._taint_tracking._taint_objects import is_pyobject_tainted
tainted_string = request.headers.get("test")
assert is_pyobject_tainted(tainted_string)
result_response = JSONResponse(content={"message": "OK"})
# label test_fastapi_header_injection
result_response.headers["Header-Injection"] = tainted_string
result_response.headers["Vary"] = tainted_string
result_response.headers["Foo"] = "bar"
return result_response
with override_global_config(
dict(_iast_enabled=True, _iast_deduplication_enabled=False, _iast_request_sampling=100.0)
):
_aux_appsec_prepare_tracer(tracer)
patch_iast({"header_injection": True})
resp = client.get(
"/header_injection/",
headers={"test": "test_injection_header"},
)
assert resp.status_code == 200
span = test_spans.pop_traces()[0][0]
assert span.get_metric(IAST.ENABLED) == 1.0
iast_tag = span.get_tag(IAST.JSON)
assert iast_tag is not None
loaded = json.loads(iast_tag)
line, hash_value = get_line_and_hash(
"test_fastapi_header_injection", VULN_HEADER_INJECTION, filename=TEST_FILE_PATH
)
assert len(loaded["vulnerabilities"]) == 1
vulnerability = loaded["vulnerabilities"][0]
assert vulnerability["type"] == VULN_HEADER_INJECTION
assert vulnerability["hash"] == hash_value
assert vulnerability["location"]["line"] == line
assert vulnerability["location"]["path"] == TEST_FILE_PATH
assert vulnerability["location"]["spanId"]
def test_fastapi_header_injection_inline_response(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/header_injection_inline_response/", response_class=PlainTextResponse)
async def header_injection_inline_response(request: Request):
from ddtrace.appsec._iast._taint_tracking._taint_objects import is_pyobject_tainted
tainted_string = request.headers.get("test")
assert is_pyobject_tainted(tainted_string)
return PlainTextResponse(
content="OK",
headers={"Header-Injection": tainted_string, "Vary": tainted_string, "Foo": "bar"},
)
with override_global_config(
dict(_iast_enabled=True, _iast_deduplication_enabled=False, _iast_request_sampling=100.0)
):
_aux_appsec_prepare_tracer(tracer)
patch_iast({"header_injection": True})
resp = client.get(
"/header_injection_inline_response/",
headers={"test": "test_injection_header"},
)
assert resp.status_code == 200
span = test_spans.pop_traces()[0][0]
assert span.get_metric(IAST.ENABLED) == 1.0
iast_tag = span.get_tag(IAST.JSON)
assert iast_tag is not None
loaded = json.loads(iast_tag)
assert len(loaded["vulnerabilities"]) == 1
vulnerability = loaded["vulnerabilities"][0]
assert vulnerability["type"] == VULN_HEADER_INJECTION
def test_fastapi_stacktrace_leak(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/stacktrace_leak/", response_class=PlainTextResponse)
async def stacktrace_leak_inline_response(request: Request):
return PlainTextResponse(
content=_load_text_stacktrace(),
)
with override_global_config(dict(_iast_enabled=True, _deduplication_enabled=False, _iast_request_sampling=100.0)):
_aux_appsec_prepare_tracer(tracer)
resp = client.get(
"/stacktrace_leak/",
)
assert resp.status_code == 200
span = test_spans.pop_traces()[0][0]
assert span.get_metric(IAST.ENABLED) == 1.0
iast_tag = span.get_tag(IAST.JSON)
assert iast_tag is not None
loaded = json.loads(iast_tag)
assert len(loaded["vulnerabilities"]) == 1
vulnerability = loaded["vulnerabilities"][0]
assert vulnerability["type"] == VULN_STACKTRACE_LEAK
def test_fastapi_xss(fastapi_application, client, tracer, test_spans):
@fastapi_application.get("/index.html")
async def test_route(request: Request):
from fastapi.responses import HTMLResponse
from jinja2 import Template
query_params = request.query_params.get("iast_queryparam")
template = Template("<p>{{ user_input|safe }}</p>")