-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprolog-smell.csv
We can't make this file beautiful and searchable because it's too large.
15176 lines (15176 loc) · 686 KB
/
prolog-smell.csv
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
d449e502f432278f772bd672ec785d7c.py, hardcoded secret, 16
d449e502f432278f772bd672ec785d7c.py, use of shell arguments, 49
d449e502f432278f772bd672ec785d7c.py, sql injection, 22
1059524.py, ignoring except block, 87
289814198f43976aff9b.py, DEBUG True in deployment, 28
9372073.py, use of shell arguments, 4
5421a7fb52c2b61967cc.py, use of http without tls, 10
5421a7fb52c2b61967cc.py, ignoring except block, 40
5421a7fb52c2b61967cc.py, ignoring except block, 47
5421a7fb52c2b61967cc.py, ignoring except block, 50
0a509faf231cff3cdec7.py, hardcoded secret, 55
0a509faf231cff3cdec7.py, DEBUG True in deployment, 56
671f90c15ec6331598e5.py, hardcoded secret, 26
671f90c15ec6331598e5.py, use of http without tls, 19
6555809.py, hardcoded secret, 142
6555809.py, hardcoded secret, 142
844944.py, hardcoded secret, 9
844944.py, hardcoded secret, 10
844944.py, use of shell arguments, 13
844944.py, use of shell arguments, 14
844944.py, use of shell arguments, 15
1234843.py, hardcoded secret, 19
1234843.py, ignoring except block, 67
1234843.py, ignoring except block, 87
2972461.py, use of shell arguments, 42
2972461.py, use of shell arguments, 43
2972461.py, use of shell arguments, 44
1027906.py, shell injection, 11
1dab9f563fcce7ec66f2.py, use of http without tls, 15
4e97eb41e2b9a80cd5de.py, hardcoded secret, 31
4e97eb41e2b9a80cd5de.py, hardcoded secret, 31
3941973.py, hardcoded secret, 62
01c6f26da1a877f0f3003bc776a2311a.py, use of shell arguments, 62
4deac45790fa339b537a.py, use of shell arguments, 29
4deac45790fa339b537a.py, use of shell arguments, 32
4deac45790fa339b537a.py, use of shell arguments, 33
c211c1af232974f00564.py, use of shell arguments, 63
c211c1af232974f00564.py, ignoring except block, 52
1985703.py, hardcoded secret, 38
1985703.py, hardcoded secret, 39
1985703.py, hardcoded secret, 40
9356eb0550ac16818730.py, use of shell arguments, 25
9356eb0550ac16818730.py, use of shell arguments, 28
9356eb0550ac16818730.py, use of shell arguments, 28
9356eb0550ac16818730.py, use of shell arguments, 32
1835fe063c38c01cf10a141736d14a9b.py, ignoring except block, 211
d1351610477840bbbb72.py, shell injection, 52
d1351610477840bbbb72.py, shell injection, 56
8171599.py, hardcoded secret, 11
3917654.py, use of shell arguments, 144
3527546.py, hardcoded secret, 105
3527546.py, sql injection, 25
3527546.py, sql injection, 33
3527546.py, sql injection, 61
3527546.py, sql injection, 74
3527546.py, sql injection, 80
2325034.py, use of http without tls, 396
1085780.py, use of http without tls, 6
1085780.py, ignoring except block, 16
75071170d3b96ebe4493.py, use of http without tls, 113
75071170d3b96ebe4493.py, use of http without tls, 160
75071170d3b96ebe4493.py, use of http without tls, 167
8827718.py, use of shell arguments, 9
7116554.py, ignoring except block, 10
4514450.py, hardcoded secret, 4
155b6af97fdbd217ddca3f9f919ee02a.py, hardcoded secret, 200
155b6af97fdbd217ddca3f9f919ee02a.py, use of shell arguments, 176
b900be34c58b1f3fa7467b4876f2b5b3.py, empty password, 63
b900be34c58b1f3fa7467b4876f2b5b3.py, use of http without tls, 9
b900be34c58b1f3fa7467b4876f2b5b3.py, use of shell arguments, 70
b900be34c58b1f3fa7467b4876f2b5b3.py, use of shell arguments, 72
b900be34c58b1f3fa7467b4876f2b5b3.py, hardcoded secret, 92
b900be34c58b1f3fa7467b4876f2b5b3.py, hardcoded secret, 92
b900be34c58b1f3fa7467b4876f2b5b3.py, hardcoded secret, 92
b900be34c58b1f3fa7467b4876f2b5b3.py, ignoring except block, 33
c71f241125ed879d4af7.py, use of shell arguments, 72
1172549.py, use of http without tls, 556
1172549.py, use of http without tls, 632
1172549.py, hardcoded secret, 620
3f22c5ed5dabf1815f16efa8fa53d476.py, hardcoded secret, 204
f6131a8fa84c16ccc206.py, use of shell arguments, 13
f6131a8fa84c16ccc206.py, ignoring except block, 250
aeab43fab80d315932b32df0ec862920.py, hardcoded secret, 6
d11452963fb0570fb461.py, use of http without tls, 7
1288160dad16cc473a53.py, use of http without tls, 3
8044909.py, use of shell arguments, 205
8044909.py, use of shell arguments, 250
8044909.py, ignoring except block, 157
8044909.py, ignoring except block, 161
8044909.py, ignoring except block, 308
ee765f0abc8f1de6934c.py, shell injection, 25
ee765f0abc8f1de6934c.py, shell injection, 25
3385357.py, use of http without tls, 123
3385357.py, hardcoded secret, 53
3385357.py, DEBUG True in deployment, 126
61cab8fbd02351d3047e.py, hardcoded secret, 33
85a3eab09fefbb3bee5d.py, shell injection, 22
85a3eab09fefbb3bee5d.py, shell injection, 58
85a3eab09fefbb3bee5d.py, shell injection, 59
2049083.py, use of http without tls, 23
2049083.py, shell injection, 71
2049083.py, bad file permission, 84
2049083.py, ignoring except block, 56
5143963.py, use of tmp directory, 49
6880761.py, shell injection, 12
6880761.py, shell injection, 12
6880761.py, shell injection, 18
6880761.py, shell injection, 18
6880761.py, shell injection, 28
6880761.py, shell injection, 28
6880761.py, shell injection, 49
6880761.py, shell injection, 49
6880761.py, shell injection, 64
6880761.py, shell injection, 64
1855468.py, hardcoded secret, 16
3083085.py, hardcoded secret, 27
3083085.py, use of http without tls, 25
3083085.py, use of http without tls, 54
3083085.py, use of http without tls, 70
3083085.py, shell injection, 34
3083085.py, shell injection, 80
3083085.py, shell injection, 81
3083085.py, shell injection, 84
8a7297838593287195b0.py, use of shell arguments, 27
8a7297838593287195b0.py, hardcoded secret, 12
7625935.py, shell injection, 34
7625935.py, use of shell arguments, 70
821667.py, shell injection, 105
821667.py, shell injection, 106
821667.py, ignoring except block, 114
7e6422a491d93e1e3219.py, use of tmp directory, 49
ed6d9ffe27839e2ffd168ec77a826b38.py, shell injection, 15
ed6d9ffe27839e2ffd168ec77a826b38.py, shell injection, 22
ed6d9ffe27839e2ffd168ec77a826b38.py, shell injection, 26
ed6d9ffe27839e2ffd168ec77a826b38.py, shell injection, 30
ed6d9ffe27839e2ffd168ec77a826b38.py, shell injection, 34
ed6d9ffe27839e2ffd168ec77a826b38.py, use of shell arguments, 39
28d385a68dddc1064f3a.py, hardcoded secret, 4
28d385a68dddc1064f3a.py, hardcoded secret, 4
08df2a3b9b0f8c56873a60eef1706a1e.py, use of shell arguments, 8
08df2a3b9b0f8c56873a60eef1706a1e.py, use of shell arguments, 9
c577716bd2f15b9ca330b15443e8bfbe.py, use of tmp directory, 11
c577716bd2f15b9ca330b15443e8bfbe.py, use of tmp directory, 40
c577716bd2f15b9ca330b15443e8bfbe.py, use of tmp directory, 56
c577716bd2f15b9ca330b15443e8bfbe.py, use of tmp directory, 59
c577716bd2f15b9ca330b15443e8bfbe.py, shell injection, 11
c577716bd2f15b9ca330b15443e8bfbe.py, shell injection, 59
2894704.py, ignoring except block, 39
bb640cebefcc550f357c.py, use of tmp directory, 77
1d7cb531bb8fff8c228b7710126bcc33.py, use of shell arguments, 19
1d7cb531bb8fff8c228b7710126bcc33.py, use of shell arguments, 29
096f3b651b268b7af4c8c32475fa23d1.py, use of http without tls, 10
096f3b651b268b7af4c8c32475fa23d1.py, shell injection, 26
096f3b651b268b7af4c8c32475fa23d1.py, shell injection, 29
71dc46d292ecfdc37e4e.py, use of http without tls, 9
2974887f3fab071c11a0.py, empty password, 40
2974887f3fab071c11a0.py, use of http without tls, 38
2974887f3fab071c11a0.py, use of shell arguments, 240
b7991ab491384e3c3331.py, use of shell arguments, 40
814870.py, hardcoded secret, 2
814870.py, hardcoded secret, 11
814870.py, hardcoded secret, 13
814870.py, hardcoded secret, 18
814870.py, hardcoded secret, 18
25e42a0d29e5c12785d0.py, use of shell arguments, 51
4d6b7ea38a28681a513a.py, use of http without tls, 6
4d6b7ea38a28681a513a.py, use of http without tls, 15
fc0e98c8c486be80d5a5.py, use of http without tls, 3
d3652f98218a5e486005.py, use of http without tls, 9
d3652f98218a5e486005.py, shell injection, 63
4e9362acdc5db33ae16c.py, hardcoded secret, 25
4e9362acdc5db33ae16c.py, hardcoded secret, 26
4e9362acdc5db33ae16c.py, empty password, 22
4e9362acdc5db33ae16c.py, hardcoded secret, 45
4e9362acdc5db33ae16c.py, DEBUG True in deployment, 53
566362.py, hardcoded secret, 6
5675359.py, shell injection, 26
5675359.py, shell injection, 31
5675359.py, shell injection, 32
5675359.py, shell injection, 41
5675359.py, shell injection, 49
2032745.py, use of http without tls, 67
2788978.py, ignoring except block, 11
4659409.py, hardcoded secret, 9
4659409.py, hardcoded secret, 9
36834b68b7b4d6366f38.py, hardcoded secret, 55
36834b68b7b4d6366f38.py, use of http without tls, 106
1355170.py, ignoring except block, 38
13623f68e36fdad4cb67.py, use of http without tls, 125
13623f68e36fdad4cb67.py, use of tmp directory, 154
13623f68e36fdad4cb67.py, use of tmp directory, 155
13623f68e36fdad4cb67.py, use of http without tls, 184
13623f68e36fdad4cb67.py, hardcoded secret, 209
13623f68e36fdad4cb67.py, hardcoded secret, 118
13623f68e36fdad4cb67.py, shell injection, 129
13623f68e36fdad4cb67.py, shell injection, 151
13623f68e36fdad4cb67.py, shell injection, 206
13623f68e36fdad4cb67.py, shell injection, 209
13623f68e36fdad4cb67.py, ignoring except block, 194
13623f68e36fdad4cb67.py, sql injection, 104
cc77dd554d73f866f085.py, use of shell arguments, 31
cc77dd554d73f866f085.py, ignoring except block, 26
759737dc06b290a009352d3307782a2b.py, use of http without tls, 9
b77f6d62a595ae329e41.py, use of shell arguments, 9
b77f6d62a595ae329e41.py, ignoring except block, 66
46e5d3154cda92ce3e0f.py, shell injection, 38
2735065.py, use of http without tls, 4
0cbadce5816b6ab10eb2.py, hardcoded secret, 54
0cbadce5816b6ab10eb2.py, hardcoded secret, 54
0cbadce5816b6ab10eb2.py, hardcoded secret, 64
0f347c8d789402a09f2e.py, shell injection, 5
937a24bffda881edb5ff5680571c5714.py, sql injection, 54
6165148.py, use of http without tls, 12
6165148.py, shell injection, 47
6165148.py, shell injection, 56
1331656.py, hardcoded secret, 1
1331656.py, hardcoded secret, 7
5079405.py, use of http without tls, 34
69da10ec6f22c6d7b92deefdb4a4f475.py, ignoring except block, 21
69da10ec6f22c6d7b92deefdb4a4f475.py, ignoring except block, 72
8777429.py, use of http without tls, 17
8777429.py, use of http without tls, 28
ec92808750a3577a0d68.py, hardcoded secret, 2
ec92808750a3577a0d68.py, use of http without tls, 5
7719991351343a92aa7b654d2b36c8db.py, use of shell arguments, 66
7381407.py, use of shell arguments, 99
c648d753e7d0176ff172.py, use of http without tls, 3
6502fbf55ecdf988aa247ef7f60a9546.py, use of tmp directory, 39
6502fbf55ecdf988aa247ef7f60a9546.py, use of tmp directory, 79
3978536.py, shell injection, 30
3978536.py, shell injection, 30
267147.py, shell injection, 6
a6eb692e5a0af7cc266b.py, use of shell arguments, 132
3272957.py, use of shell arguments, 34
3272957.py, ignoring except block, 11
3272957.py, sql injection, 63
3272957.py, sql injection, 67
3272957.py, sql injection, 76
a7733a15cbf6c0cd9fba.py, shell injection, 57
d1406b58daaf790b465b.py, use of shell arguments, 6
1572219.py, hardcoded secret, 6
1572219.py, hardcoded secret, 7
1572219.py, hardcoded secret, 9
1572219.py, use of http without tls, 13
867064.py, ignoring except block, 13
2689784.py, use of http without tls, 14
2689784.py, use of shell arguments, 20
79d38da49cb4f4a511d74d780e53743a.py, use of shell arguments, 59
79d38da49cb4f4a511d74d780e53743a.py, use of shell arguments, 64
79d38da49cb4f4a511d74d780e53743a.py, use of shell arguments, 76
79d38da49cb4f4a511d74d780e53743a.py, use of shell arguments, 77
79d38da49cb4f4a511d74d780e53743a.py, use of shell arguments, 78
79d38da49cb4f4a511d74d780e53743a.py, use of shell arguments, 79
79d38da49cb4f4a511d74d780e53743a.py, use of shell arguments, 82
79d38da49cb4f4a511d74d780e53743a.py, use of shell arguments, 87
79d38da49cb4f4a511d74d780e53743a.py, use of shell arguments, 93
79d38da49cb4f4a511d74d780e53743a.py, use of shell arguments, 95
504eb5482fc73f046f6b.py, use of shell arguments, 38
2246766.py, use of shell arguments, 97
772171.py, sql injection, 20
772171.py, sql injection, 25
772171.py, sql injection, 31
2016e4de9a2465cef920.py, shell injection, 48
2016e4de9a2465cef920.py, shell injection, 58
2016e4de9a2465cef920.py, ignoring except block, 71
9492439.py, use of http without tls, 10
9492439.py, hardcoded secret, 45
b0e95087771dbefa386f.py, use of http without tls, 10
b0e95087771dbefa386f.py, use of tmp directory, 79
b0e95087771dbefa386f.py, use of tmp directory, 87
b0e95087771dbefa386f.py, shell injection, 43
b0e95087771dbefa386f.py, shell injection, 83
b0e95087771dbefa386f.py, shell injection, 88
b0e95087771dbefa386f.py, shell injection, 91
b0e95087771dbefa386f.py, shell injection, 94
b0e95087771dbefa386f.py, shell injection, 103
b0e95087771dbefa386f.py, shell injection, 104
b0e95087771dbefa386f.py, shell injection, 105
ce648166902041fbc613.py, DEBUG True in deployment, 80
3363569.py, use of shell arguments, 6
6800eae10ce082bb78f0b7a2cca5cbc2.py, hardcoded secret, 5
6800eae10ce082bb78f0b7a2cca5cbc2.py, use of tmp directory, 26
5855334.py, use of shell arguments, 42
4745061.py, use of http without tls, 4
9de837d2ccc24b483a2e.py, hardcoded secret, 13
9de837d2ccc24b483a2e.py, use of http without tls, 14
9de837d2ccc24b483a2e.py, use of http without tls, 15
4230847.py, hardcoded secret, 29
a5d0cab4bde185b38404.py, hardcoded secret, 40
a5d0cab4bde185b38404.py, hardcoded secret, 41
a5d0cab4bde185b38404.py, use of shell arguments, 141
a5d0cab4bde185b38404.py, hardcoded secret, 193
a5d0cab4bde185b38404.py, hardcoded secret, 193
254d896a262d7438dff7.py, use of shell arguments, 16
47a0c3d70644b2c0ac8c.py, hardcoded secret, 6
47a0c3d70644b2c0ac8c.py, hardcoded secret, 11
3984959.py, use of http without tls, 40
cec4596ca6a846f16b39.py, use of http without tls, 37
5dba231746499e11d5c916162c5cc51e.py, hardcoded secret, 17
5dba231746499e11d5c916162c5cc51e.py, hardcoded secret, 18
5dba231746499e11d5c916162c5cc51e.py, use of http without tls, 69
5dba231746499e11d5c916162c5cc51e.py, use of shell arguments, 112
4199233.py, use of http without tls, 22
5568593.py, shell injection, 16
29e04da9a0410fd672d1e29b65908808.py, shell injection, 33
29e04da9a0410fd672d1e29b65908808.py, shell injection, 34
29e04da9a0410fd672d1e29b65908808.py, shell injection, 61
4488436.py, hardcoded secret, 17
4488436.py, use of http without tls, 52
4488436.py, shell injection, 30
4488436.py, shell injection, 34
4488436.py, shell injection, 76
d03a49767c7c307be5ed.py, use of http without tls, 8
1709069.py, use of shell arguments, 63
1709069.py, use of shell arguments, 64
943949.py, use of http without tls, 13
943949.py, use of http without tls, 34
943949.py, use of http without tls, 38
943949.py, use of http without tls, 49
943949.py, use of http without tls, 49
943949.py, use of shell arguments, 55
943949.py, use of shell arguments, 57
943949.py, shell injection, 76
943949.py, shell injection, 79
943949.py, ignoring except block, 28
765526.py, use of http without tls, 72
765526.py, use of shell arguments, 68
e4c862c8b7a64fd40ba69648e497eaf0.py, use of shell arguments, 54
4173534.py, use of http without tls, 197
4173534.py, use of http without tls, 198
4173534.py, use of http without tls, 199
4173534.py, use of http without tls, 200
e488235d732b7becda81.py, hardcoded secret, 70
b53cc1e0482411e4b53d74bd12a485c1.py, use of http without tls, 4
b53cc1e0482411e4b53d74bd12a485c1.py, use of http without tls, 4
b53cc1e0482411e4b53d74bd12a485c1.py, use of http without tls, 4
f884a43c59e26199591ec4e234d069f5.py, ignoring except block, 79
f884a43c59e26199591ec4e234d069f5.py, ignoring except block, 301
5289693.py, use of http without tls, 45
5289693.py, use of shell arguments, 18
3c8e39647224be97daab.py, hardcoded secret, 40
5e82d57c915efafa769f.py, use of shell arguments, 32
5e82d57c915efafa769f.py, shell injection, 39
5e82d57c915efafa769f.py, hardcoded secret, 62
5e82d57c915efafa769f.py, hardcoded secret, 83
5e82d57c915efafa769f.py, hardcoded secret, 109
5e82d57c915efafa769f.py, hardcoded secret, 134
5e82d57c915efafa769f.py, hardcoded secret, 139
5e82d57c915efafa769f.py, hardcoded secret, 144
5e82d57c915efafa769f.py, hardcoded secret, 147
5e82d57c915efafa769f.py, hardcoded secret, 175
d19926abee9e8fd5c799e03a8a64a03b.py, use of shell arguments, 112
c65184841c246a484768b4c252880fe3.py, empty password, 10
c65184841c246a484768b4c252880fe3.py, empty password, 11
c65184841c246a484768b4c252880fe3.py, empty password, 12
2e0cbef7d50e8e7ef2d2.py, shell injection, 52
a7eb492db4f35b66e591.py, no use of cert validation, 28
a7eb492db4f35b66e591.py, hardcoded secret, 28
5ba3bd5c0f665c40828ba191fe50eec9.py, shell injection, 5
6198335.py, hardcoded secret, 7
6198335.py, hardcoded secret, 7
6198335.py, sql injection, 67
d0a8bb6e15cb6c9a3472d424c344ce73.py, hardcoded secret, 174
d0a8bb6e15cb6c9a3472d424c344ce73.py, hardcoded secret, 174
d0a8bb6e15cb6c9a3472d424c344ce73.py, hardcoded secret, 163
d0a8bb6e15cb6c9a3472d424c344ce73.py, hardcoded secret, 163
749788.py, use of http without tls, 27
749788.py, use of http without tls, 98
749788.py, use of http without tls, 128
749788.py, use of http without tls, 186
0efcacfb43827ba3a6bac3356315c419.py, hardcoded secret, 34
5a9a8dd4822b1178129f58b185186c75.py, shell injection, 12
5a9a8dd4822b1178129f58b185186c75.py, shell injection, 18
5a9a8dd4822b1178129f58b185186c75.py, shell injection, 24
5a9a8dd4822b1178129f58b185186c75.py, shell injection, 33
8e63614cad93f6ecbf560d2934a537a5.py, hardcoded secret, 10
8e63614cad93f6ecbf560d2934a537a5.py, hardcoded secret, 11
8e63614cad93f6ecbf560d2934a537a5.py, hardcoded secret, 11
8e63614cad93f6ecbf560d2934a537a5.py, hardcoded secret, 24
8224244.py, ignoring except block, 60
477698.py, use of shell arguments, 44
722ccf16dff7f0030e5d971ea5486d61.py, use of shell arguments, 25
7543d651b84a94b639ff.py, use of http without tls, 71
5620075.py, hardcoded secret, 7
5620075.py, hardcoded secret, 11
3840816.py, hardcoded secret, 44
0db840f27f1f0fd0747f13ab80d0ca37.py, use of http without tls, 6
976c7978bbcef99f3456cc36d57352e7.py, exec used, 54
b09f45e112b226b97a36.py, use of shell arguments, 7
b09f45e112b226b97a36.py, use of shell arguments, 16
f17242d1b76c068834c2.py, shell injection, 34
f17242d1b76c068834c2.py, shell injection, 35
3397251.py, hardcoded secret, 6
3397251.py, hardcoded secret, 10
3397251.py, hardcoded secret, 10
8169809.py, use of http without tls, 6
51b247080976cb41fe93.py, empty password, 2
5490d8c0f86a0fff99e0b3e0d34205ad.py, use of shell arguments, 232
956145752a649054bd50.py, use of shell arguments, 30
956145752a649054bd50.py, use of shell arguments, 34
1022880.py, use of shell arguments, 133
1022880.py, shell injection, 22
b26bc0333cc18660d07baeb923ce9021.py, use of shell arguments, 195
b26bc0333cc18660d07baeb923ce9021.py, shell injection, 246
b26bc0333cc18660d07baeb923ce9021.py, shell injection, 250
2343062.py, use of http without tls, 13
2343062.py, use of http without tls, 37
2343062.py, use of http without tls, 38
2343062.py, use of http without tls, 78
2343062.py, use of shell arguments, 9
2343062.py, use of shell arguments, 10
2343062.py, use of shell arguments, 11
dbcc5201c86765d2a0c2.py, use of http without tls, 4
5761d36b3db9a9b15970f974de416e59.py, ignoring except block, 13
2692960.py, use of shell arguments, 106
2692960.py, ignoring except block, 29
2692960.py, ignoring except block, 80
947731.py, hardcoded secret, 29
947731.py, ignoring except block, 94
5175896.py, hardcoded secret, 66
5945865.py, use of shell arguments, 5
be88f2a3e1526a07d01c392bde49d902.py, use of http without tls, 24
be88f2a3e1526a07d01c392bde49d902.py, hardcoded secret, 87
b4ea0034839ccbc2aa03.py, hardcoded secret, 4
b4ea0034839ccbc2aa03.py, hardcoded secret, 5
b4ea0034839ccbc2aa03.py, hardcoded secret, 7
b4ea0034839ccbc2aa03.py, hardcoded secret, 7
1310549.py, hardcoded secret, 47
1310549.py, hardcoded secret, 47
37269d09d37f18a70c9ec867b442ac52.py, empty password, 11
37269d09d37f18a70c9ec867b442ac52.py, empty password, 12
37269d09d37f18a70c9ec867b442ac52.py, empty password, 13
37269d09d37f18a70c9ec867b442ac52.py, use of shell arguments, 75
1140516.py, hardcoded secret, 25
71613d11783d6ed03f25.py, hardcoded secret, 27
3757975.py, use of shell arguments, 20
40ce1cda9afd6a922fbe.py, use of http without tls, 33
40ce1cda9afd6a922fbe.py, use of http without tls, 39
a20ae638601d2fac476e.py, use of shell arguments, 109
a20ae638601d2fac476e.py, shell injection, 110
9768713.py, use of http without tls, 61
5041434.py, hardcoded secret, 19
098f399d69f230521ef530baca832e76.py, use of http without tls, 32
660185.py, hardcoded secret, 25
b17732fe8eb828be8328.py, hardcoded secret, 7
b17732fe8eb828be8328.py, hardcoded secret, 8
06b38554103aa7120337.py, shell injection, 60
3308963.py, use of shell arguments, 13
4d7afed1dadb457bba977bd3757c1e29.py, use of tmp directory, 49
4d7afed1dadb457bba977bd3757c1e29.py, use of tmp directory, 85
2251516.py, use of http without tls, 13
e7c9aae63fb7973e4d64cff969a78ae8.py, ignoring except block, 46
1443543.py, use of shell arguments, 16
5360542.py, use of shell arguments, 98
5360542.py, use of shell arguments, 99
7781996.py, hardcoded secret, 5
7781996.py, hardcoded secret, 6
5985681.py, ignoring except block, 77
5985681.py, ignoring except block, 82
5985681.py, ignoring except block, 106
5985681.py, ignoring except block, 111
4091897.py, shell injection, 81
867589.py, shell injection, 22
c67039252268ec5e66ba.py, use of shell arguments, 38
c67039252268ec5e66ba.py, hardcoded secret, 255
2392540.py, hardcoded secret, 123
2392540.py, hardcoded secret, 123
2392540.py, hardcoded secret, 113
2392540.py, hardcoded secret, 116
28431.py, use of http without tls, 15
1d7b138b9c4e80231f6f.py, shell injection, 146
1d7b138b9c4e80231f6f.py, shell injection, 150
1d7b138b9c4e80231f6f.py, shell injection, 154
1d7b138b9c4e80231f6f.py, shell injection, 162
1d7b138b9c4e80231f6f.py, use of shell arguments, 171
1082570.py, use of http without tls, 20
1082570.py, use of http without tls, 26
d8e679ebfeb9748e8e55.py, use of http without tls, 10
d8e679ebfeb9748e8e55.py, use of shell arguments, 41
e3fde11eb4586064ab39df21bcdbaab3.py, shell injection, 6
e3fde11eb4586064ab39df21bcdbaab3.py, shell injection, 30
9b7787a607a5a676c6d8.py, use of http without tls, 26
3362848.py, shell injection, 6
3362848.py, shell injection, 7
3362848.py, shell injection, 18
1ddc318b4124ed152f6d.py, shell injection, 80
99b4064cbbcbf6a73963.py, ignoring except block, 43
2ae8f7df344f85fb4431.py, use of http without tls, 26
2ae8f7df344f85fb4431.py, use of http without tls, 27
2ae8f7df344f85fb4431.py, use of http without tls, 29
2ae8f7df344f85fb4431.py, use of http without tls, 30
2ae8f7df344f85fb4431.py, use of http without tls, 32
2ae8f7df344f85fb4431.py, use of http without tls, 33
2ae8f7df344f85fb4431.py, use of http without tls, 35
2ae8f7df344f85fb4431.py, use of http without tls, 36
2ae8f7df344f85fb4431.py, use of http without tls, 37
2ae8f7df344f85fb4431.py, use of http without tls, 38
2ae8f7df344f85fb4431.py, use of http without tls, 39
2ae8f7df344f85fb4431.py, use of http without tls, 40
2ae8f7df344f85fb4431.py, use of http without tls, 41
2ae8f7df344f85fb4431.py, use of http without tls, 42
2ae8f7df344f85fb4431.py, use of http without tls, 43
2ae8f7df344f85fb4431.py, use of http without tls, 44
2ae8f7df344f85fb4431.py, use of shell arguments, 91
818005.py, ignoring except block, 104
5849790.py, sql injection, 95
1337245.py, use of http without tls, 30
1337245.py, use of http without tls, 39
3fe71eaf7bbaf9993e62.py, use of shell arguments, 17
3fe71eaf7bbaf9993e62.py, use of shell arguments, 18
beebf6d7bbacfbb91704f66c28dcc537.py, use of http without tls, 5
c9eb067454ba16cdc03818e8f2ec26b4.py, use of shell arguments, 197
c9eb067454ba16cdc03818e8f2ec26b4.py, hardcoded secret, 132
c9eb067454ba16cdc03818e8f2ec26b4.py, hardcoded secret, 151
10375900.py, use of shell arguments, 22
10375900.py, shell injection, 120
10375900.py, shell injection, 126
8659759.py, ignoring except block, 43
8659759.py, ignoring except block, 54
2297990.py, ignoring except block, 35
2742c5e147d49a804b408bfed3d32d07.py, use of shell arguments, 32
283e032fb1bb5f59256fd5b96f8b8e6c.py, use of http without tls, 71
072712792c46aa192797.py, shell injection, 68
d68467b87bc50e04c41e.py, hardcoded secret, 83
d68467b87bc50e04c41e.py, shell injection, 56
d68467b87bc50e04c41e.py, shell injection, 70
e4ab42297b1d9a78c164.py, hardcoded secret, 1
e4ab42297b1d9a78c164.py, hardcoded secret, 2
4448541.py, use of shell arguments, 35
756144.py, use of http without tls, 20
756144.py, use of http without tls, 26
756144.py, use of http without tls, 28
756144.py, use of http without tls, 28
09c421e3ff13e1245316.py, use of shell arguments, 7
09c421e3ff13e1245316.py, ignoring except block, 47
4573849.py, use of http without tls, 9
4573849.py, ignoring except block, 12
4573849.py, ignoring except block, 31
28bfea18037155b26aae.py, hardcoded secret, 218
28bfea18037155b26aae.py, use of shell arguments, 265
8d931c29cf4562851ece7e39b7ec3b3d.py, use of shell arguments, 8
7228939.py, hardcoded secret, 25
7228939.py, hardcoded secret, 26
7228939.py, DEBUG True in deployment, 117
31eee50b9aaebf387b380f70054575c5.py, use of tmp directory, 72
31eee50b9aaebf387b380f70054575c5.py, use of tmp directory, 73
08f51440d2cecc95d371.py, shell injection, 7
863301.py, hardcoded secret, 30
481baecf0674171597ea3c70a81a6333.py, hardcoded secret, 81
287370.py, use of http without tls, 19
287370.py, hardcoded secret, 45
2352388.py, DEBUG True in deployment, 19
3893296.py, hardcoded secret, 4
4730736.py, hardcoded secret, 45
4730736.py, use of shell arguments, 9
4730736.py, ignoring except block, 30
410b7803bc7bcd69fb20.py, hardcoded secret, 12
410b7803bc7bcd69fb20.py, hardcoded secret, 12
2879122.py, use of shell arguments, 19
5204e649f6a7b0541b232f1f0f9fc8ba.py, hardcoded secret, 136
11143783.py, shell injection, 24
11143783.py, shell injection, 24
11143783.py, shell injection, 26
11143783.py, shell injection, 26
11143783.py, use of shell arguments, 42
5311181.py, use of shell arguments, 23
5311181.py, ignoring except block, 16
1230498.py, use of shell arguments, 452
1230498.py, ignoring except block, 181
bc901de8b7e59cbeb190.py, hardcoded secret, 10
bc901de8b7e59cbeb190.py, hardcoded secret, 11
0b92b9ca837a0f5474c732876220db78.py, DEBUG True in deployment, 110
bf27da3f38272a76c801.py, DEBUG True in deployment, 33
bf27da3f38272a76c801.py, ignoring except block, 19
1716699.py, use of shell arguments, 86
1716699.py, use of shell arguments, 87
1716699.py, use of shell arguments, 88
1716699.py, use of shell arguments, 88
9a632bbb0acb445f4f3a.py, use of shell arguments, 23
9a632bbb0acb445f4f3a.py, shell injection, 25
0306734dfe17076dfd34e09660c198c0.py, ignoring except block, 123
0306734dfe17076dfd34e09660c198c0.py, ignoring except block, 143
0306734dfe17076dfd34e09660c198c0.py, ignoring except block, 156
0306734dfe17076dfd34e09660c198c0.py, ignoring except block, 216
5a3e7b3631b073db5529722f857f54aa.py, shell injection, 57
5a3e7b3631b073db5529722f857f54aa.py, ignoring except block, 59
5c422d709c93615341a21009f800222e.py, hardcoded secret, 20
5c422d709c93615341a21009f800222e.py, shell injection, 36
5c422d709c93615341a21009f800222e.py, shell injection, 48
5c422d709c93615341a21009f800222e.py, shell injection, 49
8049698.py, use of shell arguments, 5
6925159.py, hardcoded secret, 7
6925159.py, hardcoded secret, 15
27e6a9ecbe86fd02ee0d42dc19e79e7a.py, use of shell arguments, 19
8347533.py, use of http without tls, 120
562a8f71dc62264a04572770375f4bba.py, hardcoded secret, 14
122f258ba6eaa23dd9c5.py, hardcoded secret, 135
122f258ba6eaa23dd9c5.py, hardcoded secret, 178
2991773.py, use of http without tls, 21
2991773.py, use of shell arguments, 272
2991773.py, shell injection, 275
4057289.py, use of http without tls, 13
1701845.py, hardcoded secret, 36
94565e6629792264ba0b22ff707e088c.py, use of shell arguments, 41
778260a1f0553575be99.py, shell injection, 39
36e652488563ab23ea04.py, use of shell arguments, 125
2031484.py, use of http without tls, 32
2031484.py, use of http without tls, 40
1964cd4247d6dbd01037.py, use of shell arguments, 659
9266443.py, use of http without tls, 6
e3433ebba20c92b63111.py, hardcoded secret, 98
edd68921d49f2daf86a31017c50c0be7.py, use of tmp directory, 133
7784506.py, hardcoded secret, 26
7784506.py, use of http without tls, 9
7784506.py, use of http without tls, 13
7784506.py, use of http without tls, 16
7784506.py, use of http without tls, 17
7784506.py, hardcoded secret, 34
735379e9c853171713ca.py, use of shell arguments, 141
735379e9c853171713ca.py, use of shell arguments, 144
9601190.py, use of shell arguments, 14
9601190.py, use of shell arguments, 16
9601190.py, shell injection, 51
631ecb98f93046a9a454.py, empty password, 9
631ecb98f93046a9a454.py, empty password, 10
631ecb98f93046a9a454.py, empty password, 11
9233941.py, shell injection, 20
9233941.py, shell injection, 29
5154370.py, hardcoded secret, 5
4707775.py, use of http without tls, 19
4707775.py, use of http without tls, 20
4707775.py, shell injection, 82
4707775.py, shell injection, 82
4707775.py, use of shell arguments, 85
cd9a1a7c969c06eaae8b.py, hardcoded secret, 262
cd9a1a7c969c06eaae8b.py, hardcoded secret, 610
cd9a1a7c969c06eaae8b.py, ignoring except block, 149
cd9a1a7c969c06eaae8b.py, ignoring except block, 817
467661.py, use of http without tls, 54
467661.py, use of http without tls, 58
cfe83564d62da0ff2bc0f3f82e5ebb49.py, hardcoded secret, 31
cfe83564d62da0ff2bc0f3f82e5ebb49.py, empty password, 39
cfe83564d62da0ff2bc0f3f82e5ebb49.py, use of http without tls, 38
cfe83564d62da0ff2bc0f3f82e5ebb49.py, use of http without tls, 42
cfe83564d62da0ff2bc0f3f82e5ebb49.py, use of http without tls, 47
cfe83564d62da0ff2bc0f3f82e5ebb49.py, use of shell arguments, 53
cfe83564d62da0ff2bc0f3f82e5ebb49.py, use of shell arguments, 54
cfe83564d62da0ff2bc0f3f82e5ebb49.py, use of shell arguments, 55
cfe83564d62da0ff2bc0f3f82e5ebb49.py, shell injection, 114
4499367.py, ignoring except block, 129
3800082.py, use of http without tls, 23
3800082.py, use of shell arguments, 152
3800082.py, shell injection, 246
1048927.py, shell injection, 22
1e5404260b7e3a8ba4ba0a0d62c0cf75.py, use of shell arguments, 73
1e5404260b7e3a8ba4ba0a0d62c0cf75.py, use of shell arguments, 91
1e5404260b7e3a8ba4ba0a0d62c0cf75.py, use of shell arguments, 124
5065738.py, hardcoded secret, 17
5065738.py, hardcoded secret, 184
5f1baad30024a898e9f2115ac9b0c631.py, hardcoded secret, 99
5f1baad30024a898e9f2115ac9b0c631.py, ignoring except block, 50
4083086.py, use of http without tls, 5
4083086.py, use of http without tls, 5
5614326.py, DEBUG True in deployment, 107
638201ac0cc12828d3cde69035a25336.py, empty password, 6
638201ac0cc12828d3cde69035a25336.py, empty password, 8
b4afaf9648ec986928a9.py, shell injection, 49
22111f7a97f490640efee46bcac2c7df.py, shell injection, 27
22111f7a97f490640efee46bcac2c7df.py, shell injection, 36
22111f7a97f490640efee46bcac2c7df.py, hardcoded secret, 38
22111f7a97f490640efee46bcac2c7df.py, hardcoded secret, 38
f2608cbe54403edb0b13.py, use of shell arguments, 15
f2608cbe54403edb0b13.py, use of shell arguments, 15
2942799.py, use of shell arguments, 6
2942799.py, use of shell arguments, 8
2942799.py, use of shell arguments, 16
1242589.py, use of shell arguments, 14
1242589.py, use of shell arguments, 15
1242589.py, shell injection, 64
1242589.py, shell injection, 302
1242589.py, shell injection, 351
1242589.py, shell injection, 366
1242589.py, shell injection, 381
106c49a3ae6d420937aa.py, ignoring except block, 18
106c49a3ae6d420937aa.py, ignoring except block, 21
f77f094032110a7b51e7.py, use of shell arguments, 43
3996eca3acd12e4c3d40.py, shell injection, 44
9722045.py, hardcoded secret, 46
9722045.py, hardcoded secret, 47
9722045.py, hardcoded secret, 47
9722045.py, hardcoded secret, 50
9722045.py, hardcoded secret, 50
9722045.py, hardcoded secret, 51
9722045.py, hardcoded secret, 51
2605617.py, use of http without tls, 8
1825401.py, shell injection, 14
53939.py, use of http without tls, 50
3422682.py, use of http without tls, 6
856268.py, use of http without tls, 361
856268.py, use of http without tls, 365
fb180c58c94526e2c40b.py, hardcoded secret, 23
fb180c58c94526e2c40b.py, hardcoded secret, 23
3a96a407e16dae155744.py, use of tmp directory, 13
3a96a407e16dae155744.py, use of tmp directory, 46
3a96a407e16dae155744.py, use of tmp directory, 59
3a96a407e16dae155744.py, use of tmp directory, 62
3a96a407e16dae155744.py, shell injection, 13
3a96a407e16dae155744.py, shell injection, 62
1202516.py, shell injection, 6
6194556.py, hardcoded secret, 17
6194556.py, hardcoded secret, 18
9167711.py, hardcoded secret, 112
9167711.py, use of http without tls, 17
9167711.py, use of http without tls, 134
d002b0534b649f9c7af0.py, hardcoded secret, 39
d002b0534b649f9c7af0.py, hardcoded secret, 144
d002b0534b649f9c7af0.py, use of shell arguments, 257
34828a5e9dc41940f506.py, hardcoded secret, 389
6b9bae1310f2ee6b47ba3663bdcb1ded.py, use of shell arguments, 30
5166022.py, exec used, 107
5166022.py, ignoring except block, 34
6a19c73b5c96ad391856.py, use of shell arguments, 12
6201049.py, shell injection, 116
6201049.py, shell injection, 126
6201049.py, shell injection, 140
6201049.py, shell injection, 146
bb73f21ed2f3b46bc1c2ca48ec2c1cf5.py, hardcoded secret, 111
bb73f21ed2f3b46bc1c2ca48ec2c1cf5.py, use of shell arguments, 83
ce5ebb37390ab0ae56c9e6e80128fdc2.py, ignoring except block, 49
8917867.py, use of http without tls, 37
bcd8b4002b6cbf77dd89.py, use of http without tls, 9
bcd8b4002b6cbf77dd89.py, use of tmp directory, 46
5382778.py, ignoring except block, 40
5382778.py, ignoring except block, 76
5382778.py, ignoring except block, 83
771dabe22b34d59728bddcf87b26cf54.py, shell injection, 35
769d9e3a991dc2f443a2e105b0157117.py, hardcoded secret, 8
769d9e3a991dc2f443a2e105b0157117.py, hardcoded secret, 9
769d9e3a991dc2f443a2e105b0157117.py, hardcoded secret, 9
d2c38170d4beceeb32dc.py, hardcoded secret, 11
d2c38170d4beceeb32dc.py, hardcoded secret, 46
d2c38170d4beceeb32dc.py, hardcoded secret, 50
8451974.py, use of shell arguments, 41
8451974.py, use of shell arguments, 45
a9cc03df1777c52d217f.py, hardcoded secret, 185
9010523.py, hardcoded secret, 105
9010523.py, hardcoded secret, 106
705cd764ac782c1ab461.py, use of shell arguments, 6
4403456.py, use of shell arguments, 102
4403456.py, use of shell arguments, 107
4403456.py, use of shell arguments, 109
2c7b95beed642248487a.py, hardcoded secret, 69
2c7b95beed642248487a.py, hardcoded secret, 80
5104071.py, use of tmp directory, 44
5104071.py, use of tmp directory, 45
5104071.py, ignoring except block, 13
5104071.py, ignoring except block, 31
af82990e1bc3d29fc75b.py, use of shell arguments, 20
820a20821a1b5ee09ae6.py, shell injection, 84
3034305.py, use of http without tls, 9
ea813e3ce31b40f30c15.py, use of shell arguments, 49
000769db6848429c9b3eac30361d9140.py, hardcoded secret, 27
5050586.py, hardcoded secret, 52
4471462.py, use of shell arguments, 60
2872d7f994d192188970408980267e6e.py, ignoring except block, 34
8006132.py, use of http without tls, 17
8006132.py, use of http without tls, 52
8006132.py, use of http without tls, 60
23e1ec416bf884dcd7f0e635ce5f2724.py, use of shell arguments, 169
23e1ec416bf884dcd7f0e635ce5f2724.py, use of shell arguments, 169
2fe3c30b2b848a9e199e591ac3485adc.py, hardcoded secret, 99
db43cc6687e737d982d3d1c56472c6b9.py, hardcoded secret, 44
db43cc6687e737d982d3d1c56472c6b9.py, use of shell arguments, 595
db43cc6687e737d982d3d1c56472c6b9.py, use of shell arguments, 596
db43cc6687e737d982d3d1c56472c6b9.py, shell injection, 138
db43cc6687e737d982d3d1c56472c6b9.py, ignoring except block, 193
db43cc6687e737d982d3d1c56472c6b9.py, ignoring except block, 200
22b54b207c903f4f868e.py, ignoring except block, 20
4690569.py, use of shell arguments, 36
4690569.py, shell injection, 9
cd66e8b8ccf5bef2cdae.py, use of shell arguments, 16
9308b931479a4fac7e46c22face4657f.py, use of http without tls, 25
7b96bba85ed81aba864a.py, use of tmp directory, 7
3990769.py, hardcoded secret, 17
4438713.py, ignoring except block, 18
4438713.py, ignoring except block, 27
4438713.py, ignoring except block, 29
4438713.py, ignoring except block, 36
e530dc9767d8f83c08f3582c71a5cbc8.py, use of shell arguments, 135
4700585.py, use of shell arguments, 92
4700585.py, hardcoded secret, 123
f97205b73610dd30254652e7817f99cb.py, use of http without tls, 15
e3b32c674d9e86ba581f.py, use of http without tls, 77
1363730.py, hardcoded secret, 11
915259.py, use of shell arguments, 6
915259.py, use of shell arguments, 7
fced13607956dea58baaf8c271e658ef.py, hardcoded secret, 7
fced13607956dea58baaf8c271e658ef.py, hardcoded secret, 8
d76eb4f4eea0320bb35dcd1b2a4575ee.py, use of shell arguments, 297
d76eb4f4eea0320bb35dcd1b2a4575ee.py, use of shell arguments, 298
d76eb4f4eea0320bb35dcd1b2a4575ee.py, use of shell arguments, 301
d76eb4f4eea0320bb35dcd1b2a4575ee.py, hardcoded secret, 144
d76eb4f4eea0320bb35dcd1b2a4575ee.py, hardcoded secret, 254
83c88ea930a4b88cf6d91e9cdecbe145.py, use of http without tls, 12
a0514b2e283a882d9ef3.py, use of shell arguments, 145
a0514b2e283a882d9ef3.py, use of shell arguments, 147
a0514b2e283a882d9ef3.py, use of shell arguments, 153
a0514b2e283a882d9ef3.py, use of shell arguments, 156
a0514b2e283a882d9ef3.py, hardcoded secret, 97
a0514b2e283a882d9ef3.py, hardcoded secret, 98
a0514b2e283a882d9ef3.py, hardcoded secret, 99
a0514b2e283a882d9ef3.py, shell injection, 153
a0514b2e283a882d9ef3.py, shell injection, 156
e2af6270cc9563cca197.py, hardcoded secret, 31
ce3f130b1d6dcf1b1a71.py, use of shell arguments, 9
ce3f130b1d6dcf1b1a71.py, use of shell arguments, 99
bda10fa55df5723e27da.py, hardcoded secret, 39
bda10fa55df5723e27da.py, hardcoded secret, 42
bda10fa55df5723e27da.py, hardcoded secret, 43
bda10fa55df5723e27da.py, hardcoded secret, 44
0b2fed983394742e33eee0416c4e2fce.py, hardcoded secret, 37
0b2fed983394742e33eee0416c4e2fce.py, hardcoded secret, 37
0b2fed983394742e33eee0416c4e2fce.py, hardcoded secret, 41
91fa9b990e46b6b624704e9a1c7495c8.py, hardcoded secret, 30
5565622.py, hardcoded secret, 11
5565622.py, hardcoded secret, 11
5565622.py, use of http without tls, 20
5565622.py, use of http without tls, 27
5565622.py, DEBUG True in deployment, 40
4282679.py, ignoring except block, 169
4282679.py, ignoring except block, 497
fda9fd2a7a1e0bc458650ec4c3a0bf93.py, use of shell arguments, 236
6a01cbe55657121a1f3d.py, shell injection, 12
6a01cbe55657121a1f3d.py, shell injection, 16
6a01cbe55657121a1f3d.py, ignoring except block, 74
e0623245b95817b7b204.py, use of http without tls, 29
9184003.py, shell injection, 7
9184003.py, shell injection, 7
9184003.py, ignoring except block, 24
cbaee720f474ca5b62e756e96c50e0b6.py, hardcoded secret, 169
3f94abcb9b8c862776c3a2e2d7da43ea.py, use of shell arguments, 73
3f94abcb9b8c862776c3a2e2d7da43ea.py, ignoring except block, 19
2232505.py, use of shell arguments, 8
5799103.py, ignoring except block, 155
5799103.py, ignoring except block, 175
5799103.py, ignoring except block, 228
5799103.py, ignoring except block, 232
f4184a80952f040b6bb1.py, use of http without tls, 3
1031142.py, use of shell arguments, 5
e97f25f19f57e26d589417717c26c0f2.py, use of http without tls, 81
e97f25f19f57e26d589417717c26c0f2.py, use of http without tls, 84
464760.py, hardcoded secret, 176
4491981.py, use of shell arguments, 85
4491981.py, use of shell arguments, 87
4491981.py, use of shell arguments, 87
4491981.py, use of shell arguments, 87
4491981.py, use of shell arguments, 87
4491981.py, ignoring except block, 79
2cf6eecaf382af7b08b8.py, ignoring except block, 25
2cf6eecaf382af7b08b8.py, ignoring except block, 41
edab93737fc5a4926d34ee9ce17b4436.py, ignoring except block, 50
edab93737fc5a4926d34ee9ce17b4436.py, ignoring except block, 58
3f941f191f58f046125949505738537e.py, use of shell arguments, 23
028386b860b75e4f5472.py, shell injection, 65
0a1d1997089559062dda.py, hardcoded secret, 92
8163233.py, use of tmp directory, 101
8163233.py, use of tmp directory, 102
946c4d9aa7a74828bc12.py, use of shell arguments, 7
2760477.py, hardcoded secret, 29
2760477.py, shell injection, 18
db023a9c8e5361f897ddfbc7e48f82b8.py, DEBUG True in deployment, 17
701cc1022d6156741470.py, use of shell arguments, 8
2607abf0e3431b6f133861bbe1bb694e.py, hardcoded secret, 17
2607abf0e3431b6f133861bbe1bb694e.py, hardcoded secret, 17
2607abf0e3431b6f133861bbe1bb694e.py, use of http without tls, 16
2607abf0e3431b6f133861bbe1bb694e.py, no use of cert validation, 38
2607abf0e3431b6f133861bbe1bb694e.py, hardcoded secret, 91
2607abf0e3431b6f133861bbe1bb694e.py, hardcoded secret, 105
2607abf0e3431b6f133861bbe1bb694e.py, ignoring except block, 100
67044.py, use of shell arguments, 34
57e49e477ce7cee6182b.py, use of shell arguments, 11
57e49e477ce7cee6182b.py, use of shell arguments, 12
12546e6e36607a63e254.py, shell injection, 62
12546e6e36607a63e254.py, shell injection, 70
2a1afba4ee127cce50a0.py, use of http without tls, 23
4022368.py, hardcoded secret, 8
4022368.py, hardcoded secret, 8
4022368.py, use of http without tls, 18
d18dcb68abd22ed7b513540e88201890.py, DEBUG True in deployment, 39
d2d2f7dec6932d932fed.py, use of http without tls, 8
d2d2f7dec6932d932fed.py, use of shell arguments, 58
5504767.py, use of shell arguments, 98
5504767.py, use of shell arguments, 102
5504767.py, hardcoded ip address, 105
ca8b429504c96ee738d62a798172b046.py, ignoring except block, 103
ca8b429504c96ee738d62a798172b046.py, ignoring except block, 125
8329584.py, use of shell arguments, 7
1078469.py, DEBUG True in deployment, 76
9d7288f70414cd170901.py, use of shell arguments, 13
549e059335d6efbae709e567ed081799.py, use of shell arguments, 42
c26b2dd5c2bdeaf6d7479a68bd7023bb.py, use of tmp directory, 21
2a4a0f9b525096633ca2.py, use of http without tls, 15
1113175.py, ignoring except block, 9
7a4989490300d1298ba0.py, ignoring except block, 7
079b36898d39eeb1824977c6c2f6d51e.py, hardcoded secret, 71
079b36898d39eeb1824977c6c2f6d51e.py, hardcoded secret, 71
0332f2dc9534bdf412ff3f664e9513c0.py, hardcoded secret, 12
0332f2dc9534bdf412ff3f664e9513c0.py, use of http without tls, 13
2173954.py, hardcoded secret, 3
f2eea1608d48b42f6324.py, use of http without tls, 16
7f5124f9992038d6c1ed00e1ed52772f.py, use of shell arguments, 21
7f5124f9992038d6c1ed00e1ed52772f.py, use of shell arguments, 22
167828e51d8f2b6fad75.py, empty password, 8
167828e51d8f2b6fad75.py, empty password, 10
b1aa2c0f604ed92b9b3afaa6db18e5fd.py, hardcoded secret, 22
b1aa2c0f604ed92b9b3afaa6db18e5fd.py, hardcoded secret, 22
b1aa2c0f604ed92b9b3afaa6db18e5fd.py, use of http without tls, 21
b1aa2c0f604ed92b9b3afaa6db18e5fd.py, use of http without tls, 29
b1aa2c0f604ed92b9b3afaa6db18e5fd.py, shell injection, 173
b1aa2c0f604ed92b9b3afaa6db18e5fd.py, shell injection, 173
b1aa2c0f604ed92b9b3afaa6db18e5fd.py, shell injection, 175
b1aa2c0f604ed92b9b3afaa6db18e5fd.py, shell injection, 175
89edf288a15fde45682a.py, use of shell arguments, 69
89edf288a15fde45682a.py, use of shell arguments, 70
9cfb8246e3f138910d1d.py, use of shell arguments, 5
1705072.py, hardcoded secret, 6
930067.py, ignoring except block, 80
930067.py, ignoring except block, 89
5604018.py, use of shell arguments, 92
5604018.py, hardcoded secret, 118
c489761a11ec2db184c5.py, use of http without tls, 44
c489761a11ec2db184c5.py, use of http without tls, 194
c489761a11ec2db184c5.py, hardcoded secret, 95
826420.py, hardcoded secret, 28
826420.py, hardcoded secret, 29
826420.py, hardcoded secret, 29
826420.py, hardcoded secret, 30
826420.py, use of http without tls, 71
68728e34d37e4abce80355c5456e3fda.py, hardcoded secret, 17
68728e34d37e4abce80355c5456e3fda.py, use of http without tls, 18
68728e34d37e4abce80355c5456e3fda.py, use of shell arguments, 9
68728e34d37e4abce80355c5456e3fda.py, use of shell arguments, 10
68728e34d37e4abce80355c5456e3fda.py, use of shell arguments, 11
39c53f824daef7d363db.py, use of http without tls, 29
39c53f824daef7d363db.py, use of shell arguments, 24
39c53f824daef7d363db.py, use of shell arguments, 25
39c53f824daef7d363db.py, use of shell arguments, 26
1518335.py, use of http without tls, 67
1518335.py, hardcoded secret, 66
1518335.py, hardcoded secret, 68
1518335.py, hardcoded secret, 70
1518335.py, hardcoded secret, 72
1518335.py, hardcoded secret, 73
1518335.py, hardcoded secret, 75
1518335.py, hardcoded secret, 78
1518335.py, hardcoded secret, 79
1518335.py, hardcoded secret, 83
1518335.py, hardcoded secret, 85
1518335.py, hardcoded secret, 87
cf4b324f8955bc56ce0ff9399d9fdea6.py, ignoring except block, 44
2731539.py, hardcoded secret, 13
2731539.py, hardcoded secret, 14
2731539.py, empty password, 9
2731539.py, use of http without tls, 32
10cd35b2872628246140.py, use of shell arguments, 55
9939825.py, use of http without tls, 34
244146.py, ignoring except block, 15
244146.py, ignoring except block, 79
4461862.py, use of shell arguments, 28
4461862.py, ignoring except block, 33
2970125.py, use of shell arguments, 41
2970125.py, shell injection, 10
2970125.py, shell injection, 16
2970125.py, shell injection, 16
2970125.py, shell injection, 30
2970125.py, shell injection, 30
0a2ac74d800a2eff9540.py, use of http without tls, 35
053b89bd6975f89f043871335dce8c5b.py, hardcoded secret, 6
053b89bd6975f89f043871335dce8c5b.py, hardcoded secret, 6
053b89bd6975f89f043871335dce8c5b.py, hardcoded secret, 7
e6aef007cec06a593d7a.py, use of shell arguments, 77
da85e4146a359c158bbb.py, use of tmp directory, 15
da85e4146a359c158bbb.py, use of tmp directory, 15
5252169.py, shell injection, 3
5252169.py, shell injection, 11
5252169.py, shell injection, 21
5252169.py, shell injection, 29
2550880.py, ignoring except block, 25
e972345a37686b9b1362.py, use of tmp directory, 26
e972345a37686b9b1362.py, use of http without tls, 133
e972345a37686b9b1362.py, hardcoded secret, 395
e972345a37686b9b1362.py, hardcoded secret, 395
e972345a37686b9b1362.py, shell injection, 278
7273731.py, use of http without tls, 50
7273731.py, use of http without tls, 53
7273731.py, sql injection, 39
1550790.py, use of shell arguments, 5
26a33ce1e82092b4d2dbdf18c3610fde.py, use of shell arguments, 123
6650285.py, use of shell arguments, 10
3938253.py, shell injection, 39