forked from DefectDojo/sample-scan-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrashtest_security_v20200308_full.json
2037 lines (2037 loc) · 118 KB
/
crashtest_security_v20200308_full.json
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
{
"message": "scan_findings_retrieved",
"data": {
"findings": {
"commandinjection": [
{
"service_type": "commandinjection",
"finding_description_slug": "command-injection",
"information": "Found command injection in parameter \"ip\" with method \"post\" for URL \"https://dvwa.dev.crashtest.cloud/vulnerabilities/exec/\", with payload \"; echo crashtest-security$((12*12))\"",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T22:29:41.770703Z"
}
],
"csrf": [],
"cve": [],
"deserialization": [
{
"service_type": "deserialization",
"finding_description_slug": "insecure-deserialization",
"information": "Found insecure deserialization for method \"get\" with parameter \"data\" on \"https://dvwa.dev.crashtest.cloud/vulnerabilities/deserialize/\" with payload \"phpinfo();\"",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T22:26:56.842838Z"
}
],
"fileinclusion": [
{
"service_type": "fileinclusion",
"finding_description_slug": "local-file-inclusion",
"information": "Found file inclusion with method \"get\" for parameter \"page\" on \"https://dvwa.dev.crashtest.cloud/vulnerabilities/fi/.\" with payload \"/etc/passwd\"",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T21:28:48.623009Z"
}
],
"fingerprinting": [
{
"service_type": "fingerprinting",
"finding_description_slug": "fingerprint-web-application-framework",
"information": "Found PHP running in version 5.5.9.",
"cve_findings": [
{
"authentication": "NONE",
"availability": "PARTIAL",
"complexity": "LOW",
"confidentiality": "PARTIAL",
"cve_id": "CVE-2016-4072",
"cvss": 7.5,
"information": "The Phar extension in PHP before 5.5.34, 5.6.x before 5.6.20, and 7.x before 7.0.5 allows remote attackers to execute arbitrary code via a crafted filename, as demonstrated by mishandling of \\0 characters by the phar_analyze_path function in ext/phar/phar.c.",
"integrity": "PARTIAL",
"product": "php",
"vector": "NETWORK",
"version": "5.5.9"
},
{
"authentication": "NONE",
"availability": "PARTIAL",
"complexity": "LOW",
"confidentiality": "PARTIAL",
"cve_id": "CVE-2016-4073",
"cvss": 7.5,
"information": "Multiple integer overflows in the mbfl_strcut function in ext/mbstring/libmbfl/mbfl/mbfilter.c in PHP before 5.5.34, 5.6.x before 5.6.20, and 7.x before 7.0.5 allow remote attackers to cause a denial of service (application crash) or possibly execute arbitrary code via a crafted mb_strcut call.",
"integrity": "PARTIAL",
"product": "php",
"vector": "NETWORK",
"version": "5.5.9"
},
{
"authentication": "NONE",
"availability": "COMPLETE",
"complexity": "LOW",
"confidentiality": "COMPLETE",
"cve_id": "CVE-2014-0185",
"cvss": 7.2,
"information": "sapi/fpm/fpm/fpm_unix.c in the FastCGI Process Manager (FPM) in PHP before 5.4.28 and 5.5.x before 5.5.12 uses 0666 permissions for the UNIX socket, which allows local users to gain privileges via a crafted FastCGI client.",
"integrity": "COMPLETE",
"product": "php",
"vector": "LOCAL",
"version": "5.5.9"
}
],
"product": "PHP",
"version": "5.5.9",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:24.569411Z"
},
{
"service_type": "fingerprinting",
"finding_description_slug": "fingerprint-web-server",
"information": "The webserver is running Apache 2.4.7",
"cve_findings": [
{
"authentication": "NONE",
"availability": "PARTIAL",
"complexity": "MEDIUM",
"confidentiality": "PARTIAL",
"cve_id": "CVE-2018-1312",
"cvss": 6.8,
"information": "In Apache httpd 2.2.0 to 2.4.29, when generating an HTTP Digest authentication challenge, the nonce sent to prevent reply attacks was not correctly generated using a pseudo-random seed. In a cluster of servers using a common Digest authentication configuration, HTTP requests could be replayed across servers by an attacker without detection.",
"integrity": "PARTIAL",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "NONE",
"complexity": "MEDIUM",
"confidentiality": "NONE",
"cve_id": "CVE-2014-8109",
"cvss": 4.3,
"information": "mod_lua.c in the mod_lua module in the Apache HTTP Server 2.3.x and 2.4.x through 2.4.10 does not support an httpd configuration in which the same Lua authorization provider is used with different arguments within different contexts, which allows remote attackers to bypass intended access restrictions in opportunistic circumstances by leveraging multiple Require directives, as demonstrated by a configuration that specifies authorization for one group to access a certain directory, and authorization for a second group to access a second directory.",
"integrity": "PARTIAL",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "NONE",
"complexity": "MEDIUM",
"confidentiality": "NONE",
"cve_id": "CVE-2015-3185",
"cvss": 4.3,
"information": "The ap_some_auth_required function in server/request.c in the Apache HTTP Server 2.4.x before 2.4.14 does not consider that a Require directive may be associated with an authorization setting rather than an authentication setting, which allows remote attackers to bypass intended access restrictions in opportunistic circumstances by leveraging the presence of a module that relies on the 2.2 API behavior.",
"integrity": "PARTIAL",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "NONE",
"complexity": "LOW",
"confidentiality": "PARTIAL",
"cve_id": "CVE-2016-0736",
"cvss": 5,
"information": "In Apache HTTP Server versions 2.4.0 to 2.4.23, mod_session_crypto was encrypting its data/cookie using the configured ciphers with possibly either CBC or ECB modes of operation (AES256-CBC by default), hence no selectable or builtin authenticated encryption. This made it vulnerable to padding oracle attacks, particularly with CBC.",
"integrity": "NONE",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "PARTIAL",
"complexity": "LOW",
"confidentiality": "NONE",
"cve_id": "CVE-2016-2161",
"cvss": 5,
"information": "In Apache HTTP Server versions 2.4.0 to 2.4.23, malicious input to mod_auth_digest can cause the server to crash, and each instance continues to crash even for subsequently valid requests.",
"integrity": "NONE",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "PARTIAL",
"complexity": "MEDIUM",
"confidentiality": "PARTIAL",
"cve_id": "CVE-2017-15715",
"cvss": 6.8,
"information": "In Apache httpd 2.4.0 to 2.4.29, the expression specified in <FilesMatch> could match '$' to a newline character in a malicious filename, rather than matching only the end of the filename. This could be exploited in environments where uploads of some files are are externally blocked, but only by matching the trailing portion of the filename.",
"integrity": "PARTIAL",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "SINGLE",
"availability": "NONE",
"complexity": "MEDIUM",
"confidentiality": "NONE",
"cve_id": "CVE-2018-1283",
"cvss": 3.5,
"information": "In Apache httpd 2.4.0 to 2.4.29, when mod_session is configured to forward its session data to CGI applications (SessionEnv on, not the default), a remote user may influence their content by using a \"Session\" header. This comes from the \"HTTP_SESSION\" variable name used by mod_session to forward its data to CGIs, since the prefix \"HTTP_\" is also used by the Apache HTTP Server to pass HTTP header fields, per CGI specifications.",
"integrity": "PARTIAL",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "NONE",
"complexity": "LOW",
"confidentiality": "NONE",
"cve_id": "CVE-2018-17199",
"cvss": 5,
"information": "In Apache HTTP Server 2.4 release 2.4.37 and prior, mod_session checks the session expiry time before decoding the session. This causes session expiry time to be ignored for mod_session_cookie sessions since the expiry time is loaded when the session is decoded.",
"integrity": "PARTIAL",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "SINGLE",
"availability": "PARTIAL",
"complexity": "MEDIUM",
"confidentiality": "PARTIAL",
"cve_id": "CVE-2019-0217",
"cvss": 6,
"information": "In Apache HTTP Server 2.4 release 2.4.38 and prior, a race condition in mod_auth_digest when running in a threaded server could allow a user with valid credentials to authenticate using another username, bypassing configured access control restrictions.",
"integrity": "PARTIAL",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "NONE",
"complexity": "LOW",
"confidentiality": "PARTIAL",
"cve_id": "CVE-2019-0220",
"cvss": 5,
"information": "A vulnerability was found in Apache HTTP Server 2.4.0 to 2.4.38. When the path component of a request URL contains multiple consecutive slashes ('/'), directives such as LocationMatch and RewriteRule must account for duplicates in regular expressions while other aspects of the servers processing will implicitly collapse them.",
"integrity": "NONE",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "NONE",
"complexity": "MEDIUM",
"confidentiality": "NONE",
"cve_id": "CVE-2019-10092",
"cvss": 4.3,
"information": "In Apache HTTP Server 2.4.0-2.4.39, a limited cross-site scripting issue was reported affecting the mod_proxy error page. An attacker could cause the link on the error page to be malformed and instead point to a page of their choice. This would only be exploitable where a server was set up with proxying enabled but was misconfigured in such a way that the Proxy Error page was displayed.",
"integrity": "PARTIAL",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "NONE",
"complexity": "MEDIUM",
"confidentiality": "PARTIAL",
"cve_id": "CVE-2019-10098",
"cvss": 5.8,
"information": "In Apache HTTP server 2.4.0 to 2.4.39, Redirects configured with mod_rewrite that were intended to be self-referential might be fooled by encoded newlines and redirect instead to an unexpected URL within the request URL.",
"integrity": "PARTIAL",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "NONE",
"complexity": "LOW",
"confidentiality": "PARTIAL",
"cve_id": "CVE-2015-3184",
"cvss": 5,
"information": "mod_authz_svn in Apache Subversion 1.7.x before 1.7.21 and 1.8.x before 1.8.14, when using Apache httpd 2.4.x, does not properly restrict anonymous access, which allows remote anonymous users to read hidden files via the path name.",
"integrity": "NONE",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "NONE",
"complexity": "LOW",
"confidentiality": "NONE",
"cve_id": "CVE-2016-8743",
"cvss": 5,
"information": "Apache HTTP Server, in all releases prior to 2.2.32 and 2.4.25, was liberal in the whitespace accepted from requests and sent in response lines and headers. Accepting these different behaviors represented a security concern when httpd participates in any chain of proxies or interacts with back-end application servers, either through mod_proxy or using conventional CGI mechanisms, and may result in request smuggling, response splitting and cache pollution.",
"integrity": "PARTIAL",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "PARTIAL",
"complexity": "LOW",
"confidentiality": "NONE",
"cve_id": "CVE-2017-15710",
"cvss": 5,
"information": "In Apache httpd 2.0.23 to 2.0.65, 2.2.0 to 2.2.34, and 2.4.0 to 2.4.29, mod_authnz_ldap, if configured with AuthLDAPCharsetConfig, uses the Accept-Language header value to lookup the right charset encoding when verifying the user's credentials. If the header value is not present in the charset conversion table, a fallback mechanism is used to truncate it to a two characters value to allow a quick retry (for example, 'en-US' is truncated to 'en'). A header value of less than two characters forces an out of bound write of one NUL byte to a memory location that is not part of the string. In the worst case, quite unlikely, the process would crash which could be used as a Denial of Service attack. In the more likely case, this memory is already reserved for future use and the issue has no effect at all.",
"integrity": "NONE",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "PARTIAL",
"complexity": "LOW",
"confidentiality": "NONE",
"cve_id": "CVE-2014-3523",
"cvss": 5,
"information": "Memory leak in the winnt_accept function in server/mpm/winnt/child.c in the WinNT MPM in the Apache HTTP Server 2.4.x before 2.4.10 on Windows, when the default AcceptFilter is enabled, allows remote attackers to cause a denial of service (memory consumption) via crafted requests.",
"integrity": "NONE",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
},
{
"authentication": "NONE",
"availability": "PARTIAL",
"complexity": "MEDIUM",
"confidentiality": "NONE",
"cve_id": "CVE-2014-0117",
"cvss": 4.3,
"information": "The mod_proxy module in the Apache HTTP Server 2.4.x before 2.4.10, when a reverse proxy is enabled, allows remote attackers to cause a denial of service (child-process crash) via a crafted HTTP Connection header. Per vendor advisory http://httpd.apache.org/security/vulnerabilities_24.html\n\"A flaw was found in mod_proxy in httpd versions 2.4.6 to 2.4.9.\"",
"integrity": "NONE",
"product": "apache",
"vector": "NETWORK",
"version": "2.4.7"
}
],
"product": "Apache",
"version": "2.4.7",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:24.569411Z"
}
],
"fuzzer": [
{
"service_type": "fuzzer",
"finding_description_slug": "fuzzer",
"information": "Retrieved https://dvwa.dev.crashtest.cloud/about.php by using a GET request on the URL without prior knowledge.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:30.323619Z"
},
{
"service_type": "fuzzer",
"finding_description_slug": "fuzzer",
"information": "Retrieved https://dvwa.dev.crashtest.cloud/CHANGELOG.md by using a GET request on the URL without prior knowledge.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:30.323619Z"
},
{
"service_type": "fuzzer",
"finding_description_slug": "fuzzer",
"information": "Retrieved https://dvwa.dev.crashtest.cloud/config/ by using a GET request on the URL without prior knowledge.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:30.323619Z"
},
{
"service_type": "fuzzer",
"finding_description_slug": "fuzzer",
"information": "Retrieved https://dvwa.dev.crashtest.cloud/docs/ by using a GET request on the URL without prior knowledge.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:30.323619Z"
},
{
"service_type": "fuzzer",
"finding_description_slug": "fuzzer",
"information": "Retrieved https://dvwa.dev.crashtest.cloud/.git/ by using a GET request on the URL without prior knowledge.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:30.32362Z"
},
{
"service_type": "fuzzer",
"finding_description_slug": "fuzzer",
"information": "Retrieved https://dvwa.dev.crashtest.cloud/instructions.php by using a GET request on the URL without prior knowledge.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:30.32362Z"
},
{
"service_type": "fuzzer",
"finding_description_slug": "fuzzer",
"information": "Retrieved https://dvwa.dev.crashtest.cloud/phpinfo.php by using a GET request on the URL without prior knowledge.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:30.32362Z"
},
{
"service_type": "fuzzer",
"finding_description_slug": "fuzzer",
"information": "Retrieved https://dvwa.dev.crashtest.cloud/php.ini by using a GET request on the URL without prior knowledge.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:30.32362Z"
},
{
"service_type": "fuzzer",
"finding_description_slug": "fuzzer",
"information": "Retrieved https://dvwa.dev.crashtest.cloud/README.md by using a GET request on the URL without prior knowledge.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:30.32362Z"
},
{
"service_type": "fuzzer",
"finding_description_slug": "fuzzer",
"information": "Retrieved https://dvwa.dev.crashtest.cloud/setup.php by using a GET request on the URL without prior knowledge.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:30.32362Z"
}
],
"portscan": [
{
"service_type": "portscan",
"finding_description_slug": "portscan",
"information": "Found open port \"80/tcp\" with service name \"Apache httpd\"",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:36.792873Z"
},
{
"service_type": "portscan",
"finding_description_slug": "portscan",
"information": "Found open port \"443/tcp\" with service name \"Apache httpd\"",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:15:36.792874Z"
}
],
"sqlinjection": [
{
"service_type": "sqlinjection",
"finding_description_slug": "sql-injection",
"information": "Found boolean-based blind sqlinjection for parameter id (GET) on https://dvwa.dev.crashtest.cloud/vulnerabilities/sqli/ with payload Submit=Submit&id=xyz' AND 4685=4685 AND 'tSYr'='tSYr",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T21:20:46.651287Z"
},
{
"service_type": "sqlinjection",
"finding_description_slug": "sql-injection",
"information": "Found boolean-based blind sqlinjection for parameter username (GET) on https://dvwa.dev.crashtest.cloud/vulnerabilities/brute/ with payload Login=Login&password=Crashtest123!&username=-4028' OR 8531=8531 AND 'sbti'='sbti",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T21:56:48.138785Z"
}
],
"ssl": [
{
"service_type": "ssl",
"finding_description_slug": "ssl-sweet32",
"information": "64 bit block ciphers are used which are vulnerable to SWEET32 birthday attack. 3DES ciphers should be disabled.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022658Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-poodle-ssl",
"information": "The detected SSL version is vulnerable to SSL POODLE",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022658Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-protocol-version",
"information": "TLS 1.1 is offered by the server. This version of TLS is deprecated. You should use TLS 1.2 or TLS 1.3",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-order",
"information": "There is no cipher order configured. There should be a cipher order from strongest to weakest to prevent clients from using weaker ciphers before trying stronger ones first.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-protocol-version",
"information": "SSLv3 is offered by the server. SSLv3 is insecure and should not be used. TLS 1.2 or TLS 1.3 should be used instead.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-trust",
"information": "The CN or SAN in the certificate does not match the tested URL",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-cookie-httponly",
"information": "The cookie with the name PHPSESSID does not have the flag httponly set. This may leak sensitive information. This was found on URL https://dvwa.dev.crashtest.cloud/.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-cookie-secure",
"information": "The cookie with the name PHPSESSID does not have the flag secure set. This may leak sensitive information. This was found on URL https://dvwa.dev.crashtest.cloud/.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-rc4",
"information": "The detected cipher uses the encryption algorithm RC4 which is vulnerable for various attacks",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-cipherlist-average",
"information": "The server is configured to use average ciphers like SEED + 128+256 Bit CBC ciphers (AES, CAMELLIA and ARIA) which are deprecated",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-crl-ocsp",
"information": "Neither CRL nor OCSP URI provided",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-cbc-ssl3",
"information": "BEAST SSL3: The BEAST attack leverages weakness in the cipher block chaining (CBC) which allows man in the middle attacks.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-trust",
"information": "There is no subject alt name defined. Browsers are complaining.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-general",
"information": "The cipher that got negotiated (DHE-RSA-AES256-SHA256, 1024 bit DH (cbc) (matching cipher in list missing)) could not be found in the list of ciphers that the server advertised",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-algorithm",
"information": "Weak signature algorithm MD5 is used. You should use SHA-256, SHA-384 or SHA-512 instead",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.022659Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-cipherlist-low",
"information": "Low ciphers like DES, RC2, RC4 are used by the server. You should use a stronger cipher.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.02266Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-x-content-type-options",
"information": "The X-Content-Type-Options header is not set for URL https://dvwa.dev.crashtest.cloud/.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.02266Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-content-security-policy",
"information": "The Content-Security-Policy header is not set for URL https://dvwa.dev.crashtest.cloud/.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.02266Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-x-frame-options",
"information": "The X-Frame-Options header is not set for URL https://dvwa.dev.crashtest.cloud/.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.02266Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-protocol-version",
"information": "TLS 1.0 is offered by the server. This version of TLS is deprecated. You should use TLS 1.2 or TLS 1.3",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.02266Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-cipherlist-3des-idea",
"information": "Cipher suits based on DES (Data Encryption Standard) and IDEA (International Data Encryption Algorithm) are not recommended for general use in TLS. In TLS 1.2 and TLS 1.3 DES and IDEA are removed. You should use TLS 1.2 or TLS 1.3.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.179766Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-logjam-common-primes",
"information": "LOGJAM vulnerability detected CVE-2015-4000",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.179766Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-beast",
"information": "VULNERABLE -- but also supports higher protocols TLSv1.1 TLSv1.2 (likely mitigated)",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.179767Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-referrer-policy",
"information": "The Referrer-Policy header is not set for URL https://dvwa.dev.crashtest.cloud/.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.179767Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-x-xss-protection",
"information": "The X-XSS-Protection header is not set for URL https://dvwa.dev.crashtest.cloud/.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.179767Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-hsts",
"information": "HSTS is not offered by the server.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.179767Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-cbc-tls1",
"information": "BEAST TLS1: The BEAST attack leverages weakness in the cipher block chaining (CBC) which allows man in the middle attacks.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.179767Z"
},
{
"service_type": "ssl",
"finding_description_slug": "ssl-key-size",
"information": "The certificate key size is RSA 1024 bits.",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:23:19.179767Z"
}
],
"xss": [
{
"service_type": "xss",
"finding_description_slug": "xss",
"information": "Found possible XSS vulnerability on site dvwa.dev.crashtest.cloud/vulnerabilities/xss_s/. The parameter 'txtName' seems vulnerable for payload '<svg 864ea340-0c78-45c3-848c-6cbd50a61450 \"ons>'",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:18:31.602261Z"
},
{
"service_type": "xss",
"finding_description_slug": "xss",
"information": "Found possible XSS vulnerability on site dvwa.dev.crashtest.cloud/vulnerabilities/xss_r/. The parameter 'name' seems vulnerable for payload '<svg c228bff3-bfb8-4143-8bde-31d3f363895f \"ons>'",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:21:08.709214Z"
},
{
"service_type": "xss",
"finding_description_slug": "xss",
"information": "Found possible XSS vulnerability on site dvwa.dev.crashtest.cloud/vulnerabilities/deserialize/. The parameter 'data' seems vulnerable for payload '<svg f7482fa8-695c-4622-a9a2-6d85898463b3 \"ons>'",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:22:09.726367Z"
},
{
"service_type": "xss",
"finding_description_slug": "xss",
"information": "Found possible XSS vulnerability on site dvwa.dev.crashtest.cloud/vulnerabilities/nosql/. The parameter 'text' seems vulnerable for payload '<svg 87b87ddb-d7b9-4245-842b-9ae8cfd22c6a \"ons>'",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:31:56.970251Z"
},
{
"service_type": "xss",
"finding_description_slug": "xss",
"information": "Found possible XSS vulnerability on site dvwa.dev.crashtest.cloud/vulnerabilities/nosql/. The parameter 'title' seems vulnerable for payload '<svg 7b2ce902-f15b-41d2-b306-74011d8d442e \"ons>'",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T20:31:56.970251Z"
}
],
"xxe": [
{
"service_type": "xxe",
"finding_description_slug": "xxe",
"information": "Found XXE in parameter \"xml\" with method \"get\" for URL \"https://dvwa.dev.crashtest.cloud/vulnerabilities/xxe/\", with payload \"<?xml version='1.0' encoding='utf-8'?><!DOCTYPE creds [<!ELEMENT user ANY ><!ELEMENT pass ANY ><!ENTITY user SYSTEM 'file:///etc/passwd'>]><creds><user>%26user;</user><pass>%26user;</pass></creds>\"",
"details": {
"request": {
"has_findings": false
}
},
"created_at": "2020-03-04T21:36:44.784334Z"
}
]
},
"descriptions": [
{
"exploitability": 2.2,
"impact": 3.6,
"baseScore": 5.9,
"title": "SSL SWEET32",
"slug": "ssl-sweet32",
"description": "The server uses short block sizes, which makes it vulnerable to hit the same hash for multiple inputs. By observing the data for a longer period of time, an attacker can recover secure HTTP cookies.",
"reference_owasp": "https://www.owasp.org/index.php/Testing_for_Weak_SSL/TLS_Ciphers,_Insufficient_Transport_Layer_Protection_(OTG-CRYPST-001)",
"reference_resolution": "https://wiki.crashtest-security.com/prevent-ssl-sweet32",
"cvssAttackVector": 1,
"cvssAttackComplexity": 2,
"cvssPrivilegesRequired": 1,
"cvssUserInteraction": 1,
"cvssScope": 1,
"cvssConfidentiality": 3,
"cvssIntegrity": 1,
"cvssAvailability": 1,
"cvssExploitCodeMaturity": 0,
"cvssRemediationLevel": 0,
"cvssReportConfidence": 0,
"cvssConfidentialityRequirement": 0,
"cvssIntegrityRequirement": 0,
"cvssAvailabilityRequirement": 0,
"cvssModifiedAttackVector": 0,
"cvssModifiedAttackComplexity": 0,
"cvssModifiedPrivilegesRequired": 0,
"cvssModifiedUserInteraction": 0,
"cvssModifiedScope": 0,
"cvssModifiedConfidentiality": 0,
"cvssModifiedIntegrity": 0,
"cvssModifiedAvailability": 0,
"how_to_fix": "SWEET32 attacks can be prevented by using cipher suites with large block sizes. More details on what block sizes are considered large enough can be found in the knowledge database (see Recommendations)"
},
{
"exploitability": 2.2,
"impact": 5.2,
"baseScore": 7.4,
"title": "Certificate Revocation",
"slug": "ssl-crl-ocsp",
"description": "The webserver is badly configured regarding revoked certificates. Certificate Revocation Lists (CRLs) and the Online Certificate Status Protocol (OCSP) make sure, that users can verify the integraty of a server certificate.",
"reference_owasp": "https://www.owasp.org/index.php/Testing_for_Weak_SSL/TLS_Ciphers,_Insufficient_Transport_Layer_Protection_(OTG-CRYPST-001)",
"reference_resolution": "https://wiki.crashtest-security.com/renew-tls-certificates",
"cvssAttackVector": 1,
"cvssAttackComplexity": 2,
"cvssPrivilegesRequired": 1,
"cvssUserInteraction": 1,
"cvssScope": 1,
"cvssConfidentiality": 3,
"cvssIntegrity": 3,
"cvssAvailability": 1,
"cvssExploitCodeMaturity": 0,
"cvssRemediationLevel": 0,
"cvssReportConfidence": 0,
"cvssConfidentialityRequirement": 0,
"cvssIntegrityRequirement": 0,
"cvssAvailabilityRequirement": 0,
"cvssModifiedAttackVector": 0,
"cvssModifiedAttackComplexity": 0,
"cvssModifiedPrivilegesRequired": 0,
"cvssModifiedUserInteraction": 0,
"cvssModifiedScope": 0,
"cvssModifiedConfidentiality": 0,
"cvssModifiedIntegrity": 0,
"cvssModifiedAvailability": 0,
"how_to_fix": "The webserver is badly configured regarding revoked certificates. Certificate Revocation Lists (CRLs) and the Online Certificate Status Protocol (OCSP) make sure, that users can verify the integrity of a server certificate. If the certificate is compromised, these techniques allow the user, respectively the used certificate authority (CA) to revoke the compromised certificate. Therefore one can issue a new (valid) certificate and the compromised certificate (used by an attacker) will produce warnings when a user accesses their website. OCSP is the newer method to revoke certificates, as it allows certificate authorities to revoke certificates much faster without the need to update complete revocation lists potentially containing thousands of certificates. More details on how to enable OCSP can be found in the knowledge database (see Recommendations)"
},
{
"exploitability": 1.6,
"impact": 1.4,
"baseScore": 3.1,
"title": "SSL Cipher Block Chaining SSL3",
"slug": "ssl-cbc-ssl3",
"description": "The webserver is configured to allow connections encrypted with SSL V3 in Cipher Block Chaining Mode (CBC). Connections using this settings contain predictable information that allow an attacker to break the encryption using the BEAST attack.",
"reference_owasp": "https://www.owasp.org/index.php/Testing_for_Weak_SSL/TLS_Ciphers,_Insufficient_Transport_Layer_Protection_(OTG-CRYPST-001)",
"reference_resolution": "https://wiki.crashtest-security.com/disable-deprecated-ssl-protocol-versions",
"cvssAttackVector": 1,
"cvssAttackComplexity": 2,
"cvssPrivilegesRequired": 1,
"cvssUserInteraction": 2,
"cvssScope": 1,
"cvssConfidentiality": 2,
"cvssIntegrity": 1,
"cvssAvailability": 1,
"cvssExploitCodeMaturity": 0,
"cvssRemediationLevel": 0,
"cvssReportConfidence": 0,
"cvssConfidentialityRequirement": 0,
"cvssIntegrityRequirement": 0,
"cvssAvailabilityRequirement": 0,
"cvssModifiedAttackVector": 0,
"cvssModifiedAttackComplexity": 0,
"cvssModifiedPrivilegesRequired": 0,
"cvssModifiedUserInteraction": 0,
"cvssModifiedScope": 0,
"cvssModifiedConfidentiality": 0,
"cvssModifiedIntegrity": 0,
"cvssModifiedAvailability": 0,
"how_to_fix": "The webserver is using a deprecated SSL/TLS version and needs to be updated. The webserver needs to be configured to use strong and trusted certificates. In addition they need to be configured to use the newest version of SSL and TLS as well as strong cipher suites. More details on how to configure these certificates can be found in the knowledge database (see Recommendations)More details on how to fix this problem can be found in the knowledge database (see Recommendations)"
},
{
"exploitability": 3.9,
"impact": 2.5,
"baseScore": 6.5,
"title": "Content-Security-Policy Header",
"slug": "ssl-content-security-policy",
"description": "The Content-Security-Policy header tells the browser which domains are whitelisted to download further resources such as scripts, images or stylesheets from. This can prevent various XSS and other Cross-Site-Scripting attacks.",
"reference_owasp": "https://www.owasp.org/index.php/Testing_for_Weak_SSL/TLS_Ciphers,_Insufficient_Transport_Layer_Protection_(OTG-CRYPST-001)",
"reference_resolution": "https://wiki.crashtest-security.com/enable-security-headers",
"cvssAttackVector": 1,
"cvssAttackComplexity": 1,
"cvssPrivilegesRequired": 1,
"cvssUserInteraction": 1,
"cvssScope": 1,
"cvssConfidentiality": 2,
"cvssIntegrity": 2,
"cvssAvailability": 1,
"cvssExploitCodeMaturity": 0,
"cvssRemediationLevel": 0,
"cvssReportConfidence": 0,
"cvssConfidentialityRequirement": 0,
"cvssIntegrityRequirement": 0,