-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresultado.log
6199 lines (5302 loc) · 330 KB
/
resultado.log
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
DEBU[0000] {HORUSEC_CLI} Config file running on path: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/horusec-config.json
WARN[0000] {HORUSEC_CLI} Config file not found
DEBU[0000] Set log file to /tmp/horusec-2022-03-22-16-51-01.log
DEBU[0000] {HORUSEC_CLI} The current configuration for this analysis are:{
"is_timeout": false,
"log_level": "debug",
"config_file_path": "/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/horusec-config.json",
"log_file_path": "/tmp/horusec-2022-03-22-16-51-01.log",
"horusec_api_uri": "http://0.0.0.0:8000",
"repository_authorization": "00000000-0000-0000-0000-000000000000",
"cert_path": "",
"repository_name": "example2",
"print_output_type": "",
"json_output_file_path": "",
"project_path": "/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities",
"custom_rules_path": "",
"container_bind_project_path": "",
"timeout_in_seconds_request": 300,
"timeout_in_seconds_analysis": 600,
"monitor_retry_in_seconds": 15,
"return_error_if_found_vulnerability": false,
"enable_git_history_analysis": false,
"cert_insecure_skip_verify": false,
"enable_commit_author": false,
"disable_docker": false,
"enable_information_severity": false,
"enable_owasp_dependency_check": false,
"enable_shell_check": false,
"severities_to_ignore": [
"INFO"
],
"files_or_paths_to_ignore": [
"*tmp*",
"**/.vscode/**"
],
"false_positive_hashes": null,
"risk_accept_hashes": null,
"show_vulnerabilities_types": [
"Vulnerability"
],
"tools_config": {
"Bandit": {
"istoignore": false
},
"Brakeman": {
"istoignore": false
},
"BundlerAudit": {
"istoignore": false
},
"Checkov": {
"istoignore": false
},
"DotnetCli": {
"istoignore": false
},
"Flawfinder": {
"istoignore": false
},
"GitLeaks": {
"istoignore": false
},
"GoSec": {
"istoignore": false
},
"HorusecEngine": {
"istoignore": false
},
"MixAudit": {
"istoignore": false
},
"Nancy": {
"istoignore": false
},
"NpmAudit": {
"istoignore": false
},
"OwaspDependencyCheck": {
"istoignore": false
},
"PhpCS": {
"istoignore": false
},
"Safety": {
"istoignore": false
},
"SecurityCodeScan": {
"istoignore": false
},
"Semgrep": {
"istoignore": false
},
"ShellCheck": {
"istoignore": false
},
"Sobelow": {
"istoignore": false
},
"TfSec": {
"istoignore": false
},
"Trivy": {
"istoignore": false
},
"YarnAudit": {
"istoignore": false
}
},
"headers": {},
"work_dir": {
"go": [],
"csharp": [],
"ruby": [],
"python": [],
"java": [],
"kotlin": [],
"javaScript": [],
"leaks": [],
"hcl": [],
"php": [],
"c": [],
"yaml": [],
"generic": [],
"elixir": [],
"shell": [],
"dart": [],
"nginx": []
},
"custom_images": {
"c": "",
"csharp": "",
"elixir": "",
"generic": "",
"go": "",
"hcl": "",
"javascript": "",
"leaks": "",
"php": "",
"python": "",
"ruby": "",
"shell": ""
},
"version": "v2.8.0-beta.1"
}
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/FETCH_HEAD]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/HEAD]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/branches]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/config]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/description]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/applypatch-msg.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/commit-msg.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/fsmonitor-watchman.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/post-update.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/pre-applypatch.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/pre-commit.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/pre-merge-commit.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/pre-push.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/pre-rebase.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/pre-receive.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/prepare-commit-msg.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/hooks/update.sample]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/index]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/info]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/info/exclude]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/logs]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/logs/HEAD]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/logs/refs]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/logs/refs/heads]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/logs/refs/heads/main]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/logs/refs/remotes]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/logs/refs/remotes/origin]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/logs/refs/remotes/origin/HEAD]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/objects]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/objects/info]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/objects/pack]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/objects/pack/pack-b9766859f30122bc008e92eb52f57b17a14384d7.idx]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/objects/pack/pack-b9766859f30122bc008e92eb52f57b17a14384d7.pack]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/packed-refs]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/refs]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/refs/heads]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/refs/heads/main]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/refs/remotes]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/refs/remotes/origin]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/refs/remotes/origin/HEAD]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.git/refs/tags]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/CODEOWNERS]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/ISSUE_TEMPLATE]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/ISSUE_TEMPLATE/bug_report.md]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/ISSUE_TEMPLATE/feature_request.md]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/ISSUE_TEMPLATE/improvement.md]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/ISSUE_TEMPLATE/support_request.md]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/PULL_REQUEST_TEMPLATE.md]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/workflows]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/workflows/dco.yaml]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/workflows/license.yaml]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.github/workflows/security.yml]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.gitignore]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/java/example1/.gitignore]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/java/example2/.gitignore]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/ruby/example1/.gitignore]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/ruby/example1/public/apple-touch-icon-precomposed.png]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/ruby/example1/public/apple-touch-icon.png]
DEBU[0000] {HORUSEC_CLI} The file or folder was ignored to send analysis:[/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/ruby/example1/public/favicon.ico]
WARN[0000] {HORUSEC_CLI} When starting the analysis WE SKIP A TOTAL OF 62 FILES that are not considered to be analyzed. To see more details use flag --log-level=debug
WARN[0000] Horusec will return a timeout after 600 seconds. This time can be customized in the cli settings.
WARN[0000] {HORUSEC_CLI} PLEASE DON'T REMOVE ".horusec" FOLDER BEFORE THE ANALYSIS FINISH! Don’t worry, we’ll remove it after the analysis ends automatically! Project sent to folder in location: [/home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.horusec/79a2a64c-ba32-4200-93fb-b122dde61fe9]
DEBU[0000] {HORUSEC_CLI} Running HorusecEngine - Nginx in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running HorusecEngine - YAML in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running HorusecEngine - Swift in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running HorusecEngine - Dart in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running HorusecEngine - Kotlin in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running HorusecEngine - Leaks in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running HorusecEngine - JavaScript in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running HorusecEngine - C# in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} HorusecEngine - Nginx is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running HorusecEngine - Java in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running Flawfinder - C in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running Sobelow - Elixir in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Searching for files with mix.lock extension on /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.horusec/79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] Found files of extension mix.lock on elixir/example1
DEBU[0000] {HORUSEC_CLI} Using path elixir/example1 as workdir to run tool Sobelow
DEBU[0000] {HORUSEC_CLI} HorusecEngine - Swift is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} HorusecEngine - YAML is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running MixAudit - Elixir in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Searching for files with mix.lock extension on /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.horusec/79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] Found files of extension mix.lock on elixir/example1
DEBU[0000] {HORUSEC_CLI} Using path elixir/example1 as workdir to run tool MixAudit
DEBU[0000] {HORUSEC_CLI} HorusecEngine - Dart is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} HorusecEngine - Kotlin is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running Checkov - HCL in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running TfSec - HCL in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} HorusecEngine - C# is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} The tool was ignored for run in this analysis: Nancy
DEBU[0000] {HORUSEC_CLI} Running GoSec - Go in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} HorusecEngine - JavaScript is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} The tool was ignored for run in this analysis: ShellCheck
DEBU[0000] {HORUSEC_CLI} The tool was ignored for run in this analysis: OwaspDependencyCheck
DEBU[0000] {HORUSEC_CLI} Running Semgrep - Generic in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running Trivy - Generic in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running Safety - Python in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Searching for files with requirements.txt extension on /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.horusec/79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] Found files of extension requirements.txt on python/example2
DEBU[0000] {HORUSEC_CLI} Using path python/example2 as workdir to run tool Safety
DEBU[0000] {HORUSEC_CLI} Running Bandit - Python in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running PhpCS - PHP in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running BundlerAudit - Ruby in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Searching for files with Gemfile.lock extension on /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.horusec/79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] Found files of extension Gemfile.lock on ruby/example1
DEBU[0000] {HORUSEC_CLI} Using path ruby/example1 as workdir to run tool SecurityCodeScan
DEBU[0000] {HORUSEC_CLI} Running Brakeman - Ruby in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Searching for files with Gemfile name on /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.horusec/79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] Found file Gemfile on ruby/example1/Gemfile
DEBU[0000] {HORUSEC_CLI} Using path ruby/example1 as workdir to run tool Brakeman
DEBU[0000] {HORUSEC_CLI} HorusecEngine - Java is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running NpmAudit - JavaScript in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Searching for files with package-lock.json extension on /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.horusec/79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Running YarnAudit - JavaScript in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Searching for files with yarn.lock extension on /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.horusec/79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] Found files of extension package-lock.json on javascript/example1
DEBU[0000] {HORUSEC_CLI} Using path javascript/example1 as workdir to run tool NpmAudit
DEBU[0000] Found files of extension yarn.lock on javascript/example2
DEBU[0000] {HORUSEC_CLI} Using path javascript/example2 as workdir to run tool YarnAudit
DEBU[0000] {HORUSEC_CLI} Running DotnetCli - C# in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Searching for files with *.sln extension on /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.horusec/79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] Found files of extension *.sln on csharp/example1
DEBU[0000] {HORUSEC_CLI} Using path csharp/example1 as workdir to run tool DotnetCli
DEBU[0000] {HORUSEC_CLI} Running SecurityCodeScan - C# in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] {HORUSEC_CLI} Searching for files with .sln extension on /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/.horusec/79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0000] Found files of extension .sln on csharp/example1
DEBU[0000] {HORUSEC_CLI} Using path csharp/example1 as workdir to run tool SecurityCodeScan
DEBU[0001] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:9812c2a2608bac11e6a625a424952c68152cdfd45d9406de4db82453e9962325 image:docker.io/horuszup/horusec-c:v1.0.1]]
DEBU[0001] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:9812c2a2608bac11e6a625a424952c68152cdfd45d9406de4db82453e9962325 image:docker.io/horuszup/horusec-c:v1.0.1]]
DEBU[0001] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-c:v1.0.1]]
DEBU[0001] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-c:v1.0.1]]
DEBU[0001] {HORUSEC_CLI} Flawfinder - C is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0001] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:b9bb51f6a699a9e9a310193d5a10635f5fff7e57563c75d5a110b2f4c723b8bb image:docker.io/horuszup/horusec-elixir:v1.1.0]]
DEBU[0001] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:b9bb51f6a699a9e9a310193d5a10635f5fff7e57563c75d5a110b2f4c723b8bb image:docker.io/horuszup/horusec-elixir:v1.1.0]]
DEBU[0001] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:2fc5faaba349514e778353cb7fe7f286927e2569e1df1c935b309e7f8b975feb image:docker.io/horuszup/horusec-hcl:v1.1.0]]
DEBU[0001] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:2fc5faaba349514e778353cb7fe7f286927e2569e1df1c935b309e7f8b975feb image:docker.io/horuszup/horusec-hcl:v1.1.0]]
DEBU[0001] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:a1de2fbbdc72ba75ce66f9371fda826562e56714f6dd6f73a837b0db3b1343ec image:docker.io/horuszup/horusec-elixir:v1.1.0]]
DEBU[0001] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:a1de2fbbdc72ba75ce66f9371fda826562e56714f6dd6f73a837b0db3b1343ec image:docker.io/horuszup/horusec-elixir:v1.1.0]]
DEBU[0002] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:2f26a0340e3ffd3cb0e44d0d7351343bb38d2a088dcc785ceee4976b6c540193 image:docker.io/horuszup/horusec-hcl:v1.1.0]]
DEBU[0002] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:2f26a0340e3ffd3cb0e44d0d7351343bb38d2a088dcc785ceee4976b6c540193 image:docker.io/horuszup/horusec-hcl:v1.1.0]]
DEBU[0002] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:1991eefe468b46a62ba70407b77461eb110a51130a01c17c012b9f8ba9734757 image:docker.io/horuszup/horusec-js:v1.2.0]]
DEBU[0002] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:1991eefe468b46a62ba70407b77461eb110a51130a01c17c012b9f8ba9734757 image:docker.io/horuszup/horusec-js:v1.2.0]]
DEBU[0002] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:5f1371e0373611a68ac49c526c8d772a742393a3ad1f503b4066e1589504fb1d image:docker.io/horuszup/horusec-go:v1.2.1]]
DEBU[0002] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:5f1371e0373611a68ac49c526c8d772a742393a3ad1f503b4066e1589504fb1d image:docker.io/horuszup/horusec-go:v1.2.1]]
DEBU[0002] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-hcl:v1.1.0]]
DEBU[0002] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-hcl:v1.1.0]]
DEBU[0002] {HORUSEC_CLI} TfSec - HCL is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0002] {HORUSEC_CLI} HorusecEngine - Leaks is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0003] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:fc414979b10259242446ed4a79de4df287eeb8098ae56600cf11887d61f44618 image:docker.io/horuszup/horusec-ruby:v1.1.1]]
DEBU[0003] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:fc414979b10259242446ed4a79de4df287eeb8098ae56600cf11887d61f44618 image:docker.io/horuszup/horusec-ruby:v1.1.1]]
DEBU[0003] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:6818a94057b9d2c42283a3da4a3bb6e16b53c0d80489bf4c82c6b6eff2f48c49 image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0003] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:6818a94057b9d2c42283a3da4a3bb6e16b53c0d80489bf4c82c6b6eff2f48c49 image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0003] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:0e3c5eb62d43f58cf5fc98313cc326683e742ffa0ba38d0bebad27419fc2e418 image:docker.io/horuszup/horusec-python:v1.0.0]]
DEBU[0003] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:0e3c5eb62d43f58cf5fc98313cc326683e742ffa0ba38d0bebad27419fc2e418 image:docker.io/horuszup/horusec-python:v1.0.0]]
DEBU[0003] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:5c13764cd03fb750fc7646b4f577b9aec5a7b7db396ab7e275fb89ed1a07e1e6 image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0003] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:5c13764cd03fb750fc7646b4f577b9aec5a7b7db396ab7e275fb89ed1a07e1e6 image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0003] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:46b7dbe59f7cbddf75468e5fb2a17d1a47ecb4d161a256d56d20393d761e305a image:docker.io/horuszup/horusec-ruby:v1.1.1]]
DEBU[0003] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:46b7dbe59f7cbddf75468e5fb2a17d1a47ecb4d161a256d56d20393d761e305a image:docker.io/horuszup/horusec-ruby:v1.1.1]]
DEBU[0004] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:d971c2f0ca9a58ca6765d3293e8bf7b913d751bb3460970c640add288930dead image:docker.io/horuszup/horusec-csharp:v1.2.0]]
DEBU[0004] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:d971c2f0ca9a58ca6765d3293e8bf7b913d751bb3460970c640add288930dead image:docker.io/horuszup/horusec-csharp:v1.2.0]]
DEBU[0004] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:4018f8f7265ff815cb49f4bc09a55904c7b2f590559705611d34fde285aa33f7 image:docker.io/horuszup/horusec-python:v1.0.0]]
DEBU[0004] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:4018f8f7265ff815cb49f4bc09a55904c7b2f590559705611d34fde285aa33f7 image:docker.io/horuszup/horusec-python:v1.0.0]]
DEBU[0004] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:f9ccf429e4ab016859142d8a2608eacedad30411a9078970be875580fc6f4e0a image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0004] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:f9ccf429e4ab016859142d8a2608eacedad30411a9078970be875580fc6f4e0a image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0004] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:a9838b5af6535347d34fe629cf69c3ff9ed7321bdd533bf65ca9b2bec36b11da image:docker.io/horuszup/horusec-csharp:v1.2.0]]
DEBU[0004] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:a9838b5af6535347d34fe629cf69c3ff9ed7321bdd533bf65ca9b2bec36b11da image:docker.io/horuszup/horusec-csharp:v1.2.0]]
DEBU[0004] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:773ad5a5d172f98fb29b026158dc548a9e611003797665b54f1b5f5196392d43 image:docker.io/horuszup/horusec-php:v1.0.1]]
DEBU[0004] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:773ad5a5d172f98fb29b026158dc548a9e611003797665b54f1b5f5196392d43 image:docker.io/horuszup/horusec-php:v1.0.1]]
DEBU[0004] {HORUSEC_CLI} Docker create new container: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:0e5edc5c5bd6c9ff62d03d30976d55bd2842213a9168ae5193686408b24114bb image:docker.io/horuszup/horusec-js:v1.2.0]]
DEBU[0004] {HORUSEC_CLI} Docker wait container up...[map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 containerId:0e5edc5c5bd6c9ff62d03d30976d55bd2842213a9168ae5193686408b24114bb image:docker.io/horuszup/horusec-js:v1.2.0]]
DEBU[0004] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-elixir:v1.1.0]]
DEBU[0004] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-elixir:v1.1.0]]
DEBU[0004] {HORUSEC_CLI} MixAudit - Elixir is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0005] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-php:v1.0.1]]
DEBU[0005] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-php:v1.0.1]]
DEBU[0005] {HORUSEC_CLI} PhpCS - PHP is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0005] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-python:v1.0.0]]
DEBU[0005] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-python:v1.0.0]]
DEBU[0005] {HORUSEC_CLI} Bandit - Python is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0005] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0005] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0005] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-js:v1.2.0]]
DEBU[0005] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-js:v1.2.0]]
DEBU[0005] {HORUSEC_CLI} NpmAudit - JavaScript is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0006] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-ruby:v1.1.1]]
DEBU[0006] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-ruby:v1.1.1]]
DEBU[0006] {HORUSEC_CLI} Brakeman - Ruby is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0006] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-go:v1.2.1]]
DEBU[0006] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-js:v1.2.0]]
DEBU[0006] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-js:v1.2.0]]
DEBU[0006] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-go:v1.2.1]]
DEBU[0006] {HORUSEC_CLI} GoSec - Go is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0006] {HORUSEC_CLI} YarnAudit - JavaScript is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0007] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-hcl:v1.1.0]]
DEBU[0007] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-hcl:v1.1.0]]
DEBU[0007] {HORUSEC_CLI} Checkov - HCL is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0009] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-elixir:v1.1.0]]
DEBU[0009] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-elixir:v1.1.0]]
DEBU[0009] {HORUSEC_CLI} Sobelow - Elixir is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0010] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-ruby:v1.1.1]]
DEBU[0010] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-ruby:v1.1.1]]
DEBU[0010] {HORUSEC_CLI} BundlerAudit - Ruby is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0010] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-python:v1.0.0]]
DEBU[0010] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-python:v1.0.0]]
DEBU[0010] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0010] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0010] {HORUSEC_CLI} Semgrep - Generic is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0010] {HORUSEC_CLI} Safety - Python is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0010] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0010] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-generic:v1.1.0]]
DEBU[0010] {HORUSEC_CLI} Trivy - Generic is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0057] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-csharp:v1.2.0]]
DEBU[0057] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-csharp:v1.2.0]]
DEBU[0057] {HORUSEC_CLI} DotnetCli - C# is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
DEBU[0060] {HORUSEC_CLI} Docker read container output: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-csharp:v1.2.0]]
DEBU[0060] {HORUSEC_CLI} Docker Finished analysis with SUCCESS: [map[analysisId:79a2a64c-ba32-4200-93fb-b122dde61fe9 image:docker.io/horuszup/horusec-csharp:v1.2.0]]
DEBU[0060] {HORUSEC_CLI} SecurityCodeScan - C# is finished in analysisID: 79a2a64c-ba32-4200-93fb-b122dde61fe9
==================================================================================
HORUSEC ENDED THE ANALYSIS WITH STATUS OF "success" AND WITH THE FOLLOWING RESULTS:
==================================================================================
Analysis StartedAt: 2022-03-22 16:51:01
Analysis FinishedAt: 2022-03-22 16:52:01
==================================================================================
Language: YAML
Severity: CRITICAL
Line: 0
Column: 0
SecurityTool: HorusecEngine
Confidence: HIGH
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/yaml/example1/example.yaml
Code:
RuleID: HS-KUBERNETES-4
Details: Capability System Admin
CAP_SYS_ADMIN is the most privileged capability and should always be avoided.
Type: Vulnerability
ReferenceHash: 18040dc10b672acad7bbb4634c32fa084fd283f770beec86fa1d16dd69954a6e
==================================================================================
Language: Java
Severity: CRITICAL
Line: 14
Column: 4
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/java/example2/build.gradle
Code: compileOnly 'org.apache.logging.log4j:log4j-api:2.14.0'
RuleID: HS-JAVA-150
Details: Remote code injection Apache Log4j
Log4j versions prior to 2.17.1 are subject to a remote code execution vulnerability via the ldap JNDI parser, uncontrolled recursion from self-referential lookups and some other vulnerabilities. For more information checkout the CVE-2021-44228 (https://nvd.nist.gov/vuln/detail/CVE-2021-44228), CVE-2021-45046 (https://nvd.nist.gov/vuln/detail/CVE-2021-45046), CVE-2021-45105 (https://nvd.nist.gov/vuln/detail/CVE-2021-45105) and CVE-2021-44832 (https://nvd.nist.gov/vuln/detail/CVE-2021-44832) advisories.
Type: Vulnerability
ReferenceHash: 71878e3c29364755dfbd8e68ee8f0028b5bfb1bed91fa45b80137d83eec3c918
==================================================================================
Language: HCL
Severity: CRITICAL
Line: 20
Column:
SecurityTool: TfSec
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/hcl/example1/main.tf
Code: code beetween line 20 and 20.
RuleID: aws-vpc-no-public-ingress-sgr
Details: aws-vpc-no-public-ingress-sgr -> [Resource 'aws_security_group_rule.my-rule' defines a fully open ingress security group rule.]
Type: Vulnerability
ReferenceHash: 69fd52a63b5da396b817869763af1d2d92489b16c8ba8b241c078a3a4c0a9299
==================================================================================
Language: HCL
Severity: CRITICAL
Line: 25
Column:
SecurityTool: TfSec
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/hcl/example1/main.tf
Code: code beetween line 25 and 25.
RuleID: aws-elbv2-http-not-used
Details: aws-elbv2-http-not-used -> [Resource 'aws_alb_listener.my-alb-listener' uses plain HTTP instead of HTTPS.]
Type: Vulnerability
ReferenceHash: a912db3bb0a67dfd4356d5720b8a441058df95acb40848eecc3edd244ba38cfd
==================================================================================
Language: HCL
Severity: CRITICAL
Line: 28
Column:
SecurityTool: TfSec
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/hcl/example1/main.tf
Code: code beetween line 28 and 30.
RuleID: aws-rds-no-classic-resources
Details: aws-rds-no-classic-resources -> [Resource 'aws_db_security_group.my-group' uses EC2 Classic. Use a VPC instead.]
Type: Vulnerability
ReferenceHash: 5b060e08471e670fcb625fa046a354493d217a192856ddddbb51abde848d4fd3
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 1
Column: 0
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/leaks/example1/deployments/certificates/server-key.txt
Code: -----BEGIN RSA PRIVATE KEY-----
RuleID: HS-LEAKS-12
Details: Asymmetric Private Key
Found SSH and/or x.509 Cerficates among the files of your project, make sure you want this kind of information inside your Git repo, since it can be missused by someone with access to any kind of copy. For more information checkout the CWE-312 (https://cwe.mitre.org/data/definitions/312.html) advisory.
Type: Vulnerability
ReferenceHash: e5544276cd4ed447af777447168b533f2f38df4e5fc2dc1d9a1b3ce2e6bc8625
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 17
Column: 0
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/python/example1/main.py
Code: password = 'thisisnotapassword' #nohorus
RuleID: HS-LEAKS-26
Details: Hard-coded password
The software contains hard-coded credentials, such as a password or cryptographic key, which it uses for its own inbound authentication, outbound communication to external components, or encryption of internal data. For more information checkout the CWE-798 (https://cwe.mitre.org/data/definitions/798.html) advisory.
Type: Vulnerability
ReferenceHash: 1bfd01873dfaad9fadf2a8a8856dbbf9e31b184664c78e2b72c2308dc7e51517
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 1
Column: 0
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/leaks/example1/deployments/certificates/ca-key.txt
Code: -----BEGIN RSA PRIVATE KEY-----
RuleID: HS-LEAKS-12
Details: Asymmetric Private Key
Found SSH and/or x.509 Cerficates among the files of your project, make sure you want this kind of information inside your Git repo, since it can be missused by someone with access to any kind of copy. For more information checkout the CWE-312 (https://cwe.mitre.org/data/definitions/312.html) advisory.
Type: Vulnerability
ReferenceHash: 246450edd913a7a210708106ff2061c542d3ae46ca118d07914c0aec183c4bf9
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 26
Column: 33
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/leaks/example2/deployments/docker-compose.yaml
Code: HORUSEC_DATABASE_SQL_URI: "postgresql://root:root@127.0.0.1:5432/horusec_db?sslmode=disable"
RuleID: HS-LEAKS-27
Details: Password found in a hardcoded URL
A password was found in a hardcoded URL, this can lead to not only the leak of this password but also a failure point to some more sophisticated CSRF and SSRF attacks. Check CWE-352 (https://cwe.mitre.org/data/definitions/352.html) and CWE-918 (https://cwe.mitre.org/data/definitions/918.html) for more details.
Type: Vulnerability
ReferenceHash: eab730ca2150002cc7c15004a79a5fded384e0db93e598f07cfbfe33e1fc69ac
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 1
Column: 0
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/leaks/example1/deployments/certificates/client-key.txt
Code: -----BEGIN RSA PRIVATE KEY-----
RuleID: HS-LEAKS-12
Details: Asymmetric Private Key
Found SSH and/or x.509 Cerficates among the files of your project, make sure you want this kind of information inside your Git repo, since it can be missused by someone with access to any kind of copy. For more information checkout the CWE-312 (https://cwe.mitre.org/data/definitions/312.html) advisory.
Type: Vulnerability
ReferenceHash: acc04e51009e301c4aaa6b71b78a95e943c78c3a9f8f795fd7fb2fd3cab46eeb
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 20
Column: 19
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/javascript/example3/config.js
Code: "server": "postgres://postgres:postgres@127.0.0.1",
RuleID: HS-LEAKS-27
Details: Password found in a hardcoded URL
A password was found in a hardcoded URL, this can lead to not only the leak of this password but also a failure point to some more sophisticated CSRF and SSRF attacks. Check CWE-352 (https://cwe.mitre.org/data/definitions/352.html) and CWE-918 (https://cwe.mitre.org/data/definitions/918.html) for more details.
Type: Vulnerability
ReferenceHash: 55447e5d2bbce43db4bb121c2dfc3ee5a7a6f9368839f0a88dd52e24b0aee1e4
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 28
Column: 19
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/javascript/example3/config.js
Code: "server": "postgres://postgres:postgres@10.211.55.70",
RuleID: HS-LEAKS-27
Details: Password found in a hardcoded URL
A password was found in a hardcoded URL, this can lead to not only the leak of this password but also a failure point to some more sophisticated CSRF and SSRF attacks. Check CWE-352 (https://cwe.mitre.org/data/definitions/352.html) and CWE-918 (https://cwe.mitre.org/data/definitions/918.html) for more details.
Type: Vulnerability
ReferenceHash: a9c2e1931f2d1c82b24007f32c69a8dd8d61563832726079695df0c27fe276a5
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 36
Column: 19
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/javascript/example3/config.js
Code: "server": "postgres://postgres:postgres@postgres_db",
RuleID: HS-LEAKS-27
Details: Password found in a hardcoded URL
A password was found in a hardcoded URL, this can lead to not only the leak of this password but also a failure point to some more sophisticated CSRF and SSRF attacks. Check CWE-352 (https://cwe.mitre.org/data/definitions/352.html) and CWE-918 (https://cwe.mitre.org/data/definitions/918.html) for more details.
Type: Vulnerability
ReferenceHash: 7c490532f6c54af8141c2b9259cdea6cc7b4ad06e36aa4d05f6dedbd3c5b5249
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 26
Column: 1
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/go/example2/main.go
Code: password := "password"
RuleID: HS-LEAKS-26
Details: Hard-coded password
The software contains hard-coded credentials, such as a password or cryptographic key, which it uses for its own inbound authentication, outbound communication to external components, or encryption of internal data. For more information checkout the CWE-798 (https://cwe.mitre.org/data/definitions/798.html) advisory.
Type: Vulnerability
ReferenceHash: a47bdda283dd0f887407923561c82049e04f016f00abfe012727a23d3e1d1bb8
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 32
Column: 20
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/go/example2/main.go
Code: URI := fmt.Sprint("postgresql://root:root@postgresql:5432/horusecDB?sslmode=disable")
RuleID: HS-LEAKS-27
Details: Password found in a hardcoded URL
A password was found in a hardcoded URL, this can lead to not only the leak of this password but also a failure point to some more sophisticated CSRF and SSRF attacks. Check CWE-352 (https://cwe.mitre.org/data/definitions/352.html) and CWE-918 (https://cwe.mitre.org/data/definitions/918.html) for more details.
Type: Vulnerability
ReferenceHash: ce613fce503ac68746d53d41b69aef75415131633832bf0b3e34c2862ef7f899
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 1
Column: 0
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/leaks/example1/deployments/certificates/client-cert.txt
Code: -----BEGIN CERTIFICATE-----
RuleID: HS-LEAKS-12
Details: Asymmetric Private Key
Found SSH and/or x.509 Cerficates among the files of your project, make sure you want this kind of information inside your Git repo, since it can be missused by someone with access to any kind of copy. For more information checkout the CWE-312 (https://cwe.mitre.org/data/definitions/312.html) advisory.
Type: Vulnerability
ReferenceHash: 545bd73af7e020094c0bbc7a072775a6232c0e1aecceb6587aae4d04ce661371
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 17
Column: 0
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/python/example2/main.py
Code: password = 'thisisnotapassword' #nohusky
RuleID: HS-LEAKS-26
Details: Hard-coded password
The software contains hard-coded credentials, such as a password or cryptographic key, which it uses for its own inbound authentication, outbound communication to external components, or encryption of internal data. For more information checkout the CWE-798 (https://cwe.mitre.org/data/definitions/798.html) advisory.
Type: Vulnerability
ReferenceHash: 2a9648727ebb520d93185f55bc03b78462b27f246d3e4d25b398a3706729e809
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 41
Column: 58
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/elixir/example1/test/support/data_case.ex
Code: assert {:error, changeset} = Accounts.create_user(%{password: "short"})
RuleID: HS-LEAKS-26
Details: Hard-coded password
The software contains hard-coded credentials, such as a password or cryptographic key, which it uses for its own inbound authentication, outbound communication to external components, or encryption of internal data. For more information checkout the CWE-798 (https://cwe.mitre.org/data/definitions/798.html) advisory.
Type: Vulnerability
ReferenceHash: 646a847a16d643cf90d480389da9ed9ee67808334af02984bb34faf054fe098b
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 61
Column: 2
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/elixir/example1/config/dev.exs
Code: password: "postgres",
RuleID: HS-LEAKS-26
Details: Hard-coded password
The software contains hard-coded credentials, such as a password or cryptographic key, which it uses for its own inbound authentication, outbound communication to external components, or encryption of internal data. For more information checkout the CWE-798 (https://cwe.mitre.org/data/definitions/798.html) advisory.
Type: Vulnerability
ReferenceHash: a54edfc6111a18b7e19b8db04966832601aef4d95a333b5f5af3c5915595049c
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 24
Column: 7
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/javascript/example3/dummy.js
Code: "password": "admin"
RuleID: HS-LEAKS-26
Details: Hard-coded password
The software contains hard-coded credentials, such as a password or cryptographic key, which it uses for its own inbound authentication, outbound communication to external components, or encryption of internal data. For more information checkout the CWE-798 (https://cwe.mitre.org/data/definitions/798.html) advisory.
Type: Vulnerability
ReferenceHash: 2a6f7e5439ec1605c5bd1bbdf27b95e4842982f7cb18a6b2e1ee8ef41bebbb5b
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 28
Column: 7
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/javascript/example3/dummy.js
Code: "password": "asdfpiuw981"
RuleID: HS-LEAKS-26
Details: Hard-coded password
The software contains hard-coded credentials, such as a password or cryptographic key, which it uses for its own inbound authentication, outbound communication to external components, or encryption of internal data. For more information checkout the CWE-798 (https://cwe.mitre.org/data/definitions/798.html) advisory.
Type: Vulnerability
ReferenceHash: 5bd35a7ecb9c3805680039289d8bcc7519d50af21cf4da618a1f8cff64bee2c4
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 46
Column: 12
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/swift/example1/example/example/Source/Exercises/Key-Management/Hard-Coded-Keys/BrokenCryptographyExerciseVC.swift
Code: let password = "b@nkP@ssword123"
RuleID: HS-LEAKS-26
Details: Hard-coded password
The software contains hard-coded credentials, such as a password or cryptographic key, which it uses for its own inbound authentication, outbound communication to external components, or encryption of internal data. For more information checkout the CWE-798 (https://cwe.mitre.org/data/definitions/798.html) advisory.
Type: Vulnerability
ReferenceHash: 05f2dc65de713837fbfd5236a677179f5bf6e381bccdf4a03b84f068fbdc9493
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 1
Column: 0
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/leaks/example1/deployments/certificates/ca.txt
Code: -----BEGIN CERTIFICATE-----
RuleID: HS-LEAKS-12
Details: Asymmetric Private Key
Found SSH and/or x.509 Cerficates among the files of your project, make sure you want this kind of information inside your Git repo, since it can be missused by someone with access to any kind of copy. For more information checkout the CWE-312 (https://cwe.mitre.org/data/definitions/312.html) advisory.
Type: Vulnerability
ReferenceHash: 6c7ab9f1889c7d150de71c6f81b1d69ee84af271fca2ca3225809270bdccbcf0
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 164
Column: 8
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/kotlin/example1/src/main/kotlin/Hello.kt
Code: val password = "secret1234"
RuleID: HS-LEAKS-26
Details: Hard-coded password
The software contains hard-coded credentials, such as a password or cryptographic key, which it uses for its own inbound authentication, outbound communication to external components, or encryption of internal data. For more information checkout the CWE-798 (https://cwe.mitre.org/data/definitions/798.html) advisory.
Type: Vulnerability
ReferenceHash: 3580c4fcac48e456d603adb404e6bea30ef6657112b4e6871daaa1422079aebe
==================================================================================
Language: Leaks
Severity: CRITICAL
Line: 1
Column: 0
SecurityTool: HorusecEngine
Confidence: MEDIUM
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/leaks/example1/deployments/certificates/server-cert.txt
Code: -----BEGIN CERTIFICATE-----
RuleID: HS-LEAKS-12
Details: Asymmetric Private Key
Found SSH and/or x.509 Cerficates among the files of your project, make sure you want this kind of information inside your Git repo, since it can be missused by someone with access to any kind of copy. For more information checkout the CWE-312 (https://cwe.mitre.org/data/definitions/312.html) advisory.
Type: Vulnerability
ReferenceHash: 669dd3ed7697bf4911b307e69085975f189685550e20153749d6be45ae1a390b
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 20
Column: 15
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: echo "bbbb" . $_POST['b'];
RuleID: 7d731faa
Details: Easy XSS detected because of direct user input with $_POST on echo
PHPCS_SecurityAudit.BadFunctions.EasyXSS.EasyXSSerr
Type: Vulnerability
ReferenceHash: dded403532905de2a3c1a0f497ee45b55ef13f2f7f7a755b765f950603d796f7
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 22
Column: 10
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: db_query($_GET['a']);
RuleID: 32604f5b
Details: Potential SQL injection found in db_query()
PHPCS_SecurityAudit.Drupal7.SQLi.D7DbQuerySQLi
Type: Vulnerability
ReferenceHash: d5574ae760980195a9688bfa225a95c94c24ab054119817656e5d9df4d2a2f9e
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 24
Column: 1
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: preg_replace("/.*/ei", $_GET['a'], 'aaaaaaa');
RuleID: 94c1d724
Details: User input and /e modifier found in preg_replace, remote code execution possible.
PHPCS_SecurityAudit.BadFunctions.PregReplace.PregReplaceUserInputE
Type: Vulnerability
ReferenceHash: 3bf02ad2ea013d54986d2e7ee20a07b9be4ce0d3095226da84222d1256fc9724
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 25
Column: 1
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: preg_replace($_GET['b'], $_GET['a'], $_GET['c']);
RuleID: 23a0e01a
Details: User input found in preg_replace, /e modifier could be used for malicious intent.
PHPCS_SecurityAudit.BadFunctions.PregReplace.PregReplaceUserInput
Type: Vulnerability
ReferenceHash: ce9d2f0c10366e6b32f768f9ac602665a97fc81ceb10a22a20e505b850ea26ec
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 38
Column: 1
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: `$_GET`;
RuleID: e73da300
Details: System execution with backticks detected with dynamic parameter directly from user input
PHPCS_SecurityAudit.BadFunctions.Backticks.ErrSystemExec
Type: Vulnerability
ReferenceHash: 10e8d4651bc8e93678d411e821215a0e6a1f85615ec2ad0c2ade43b17347ee62
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 41
Column: 1
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: assert($_GET);
RuleID: 45496417
Details: Assert eval function assert() detected with dynamic parameter directly from user input
PHPCS_SecurityAudit.BadFunctions.Asserts.ErrFunctionHandling
Type: Vulnerability
ReferenceHash: 6b9f1a6400540057db2071bfb7ddaed4e7294107c23ac2ff598c75da8fc4c306
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 43
Column: 1
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: exec($_GET);
RuleID: 7cdf7b60
Details: System program execution function exec() detected with dynamic parameter directly from user input
PHPCS_SecurityAudit.BadFunctions.SystemExecFunctions.ErrSystemExec
Type: Vulnerability
ReferenceHash: 227a48dec73ea75a32145d4f00eede1f448efc128b6fde54c6eb1432aac87e40
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 45
Column: 1
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: mysql_query($_GET);
RuleID: 023b104b
Details: SQL function mysql_query() detected with dynamic parameter directly from user input
PHPCS_SecurityAudit.BadFunctions.SQLFunctions.ErrSQLFunction
Type: Vulnerability
ReferenceHash: 9f1a03d182e2fc0ae1e786b69ee6801b0c131c688563e5b651a597acc70ca1cf
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 50
Column: 36
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: openssl_public_encrypt($i, $e, $k, OPENSSL_PKCS1_PADDING);
RuleID: 396fe71a
Details: Bad use of openssl_public_encrypt without OPENSSL_PKCS1_OAEP_PADDING
PHPCS_SecurityAudit.BadFunctions.CryptoFunctions.ErrPCKS1Crypto
Type: Vulnerability
ReferenceHash: 0f72b6536032d3ebd2d8fe6b16cd75d74826055f8fc9297b8a252486b77b77f6
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 58
Column: 1
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: include('abc.xyz');
RuleID: 82583e95
Details: The file extension '.xyz' that is not specified by --extensions has been used in a include/require function. Please add it to the scan process.
PHPCS_SecurityAudit.Misc.IncludeMismatch.ErrMiscIncludeMismatch
Type: Vulnerability
ReferenceHash: 61082ccb3171a80930a5d5bf4c4692b7212a409f4b6664fffa8477b982bc8d96
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 62
Column: 15
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: print("aaa" . $_GET['a']);
RuleID: 3ee495d3
Details: Easy XSS detected because of direct user input with $_GET on print
PHPCS_SecurityAudit.BadFunctions.EasyXSS.EasyXSSerr
Type: Vulnerability
ReferenceHash: f1b0a38e0bb845630803eeb18549273f33085b2113711d439bf6af6be5f439b3
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 63
Column: 6
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: echo($_GET['a']);
RuleID: 12c4ed18
Details: Easy XSS detected because of direct user input with $_GET on echo
PHPCS_SecurityAudit.BadFunctions.EasyXSS.EasyXSSerr
Type: Vulnerability
ReferenceHash: 9d37b1d0829e666e83da642acf6bdec16bd74d07df65fc621c7ae5922743b5cb
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 64
Column: 6
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: echo $_GET['a'];
RuleID: 12c4ed18
Details: Easy XSS detected because of direct user input with $_GET on echo
PHPCS_SecurityAudit.BadFunctions.EasyXSS.EasyXSSerr
Type: Vulnerability
ReferenceHash: d848d915108ddef30d2c260a49bc849436a7b62300098029f367c23d960df701
==================================================================================
Language: PHP
Severity: CRITICAL
Line: 67
Column: 8
SecurityTool: PhpCS
Confidence: LOW
File: /home/wilian/go/src/github.com/ZupIT/horusec-examples-vulnerabilities/php/example2/tool-examples/phpcs-security-audit.php
Code: echo a($_GET['b']);
RuleID: 12c4ed18
Details: Easy XSS detected because of direct user input with $_GET on echo
PHPCS_SecurityAudit.BadFunctions.EasyXSS.EasyXSSerr
Type: Vulnerability
ReferenceHash: c2cee07b84cb8a5309cebba4a03fb092088584f8c8a87a18b7c6308052628d40
==================================================================================