-
Notifications
You must be signed in to change notification settings - Fork 3
/
new-results.xml
1467 lines (1134 loc) · 44.7 KB
/
new-results.xml
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
<?xml version="1.0"?>
<report>
<results>
<result>
<host ip="192.168.0.104" name="192.168.0.104" />
<date>
<start>Tue Dec 14 00:14:38 2010</start>
<end>Tue Dec 14 00:45:40 2010</end>
</date>
<ports>
<port portid="111" protocol="udp">
<service conf="3" method="nessus" name="sunrpc" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.11111</id>
<data>
RPC program #100000 version 2 'portmapper' (portmap sunrpc rpcbind) is running on this port
</data>
</information>
</port>
<port portid="111" protocol="tcp">
<service conf="3" method="nessus" name="sunrpc" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.11111</id>
<data>
RPC program #100000 version 2 'portmapper' (portmap sunrpc rpcbind) is running on this port
</data>
</information>
</port>
<port portid="22" protocol="tcp">
<service conf="3" method="nessus" name="ssh" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.100259</id>
<data>
Overview:
The remote SSH Server supports the following SSH Protocol Versions:
1.99
2.0
SSHv2 Fingerprint: 2a:3a:58:16:72:eb:fb:e7:cc:9e:24:a7:02:d7:3e:34
Risk factor : None
</data>
</information>
<information>
<severity>Security Hole</severity>
<id>1.3.6.1.4.1.25623.1.0.100584</id>
<data>
Overview:
OpenSSH is prone to a vulnerability that allows attackers to hijack
forwarded X connections.
Successfully exploiting this issue may allow an attacker run arbitrary
shell commands with the privileges of the user running the affected
application.
This issue affects OpenSSH 4.3p2
other versions may also be affected.
NOTE: This issue affects the portable version of OpenSSH and may not
affect OpenSSH running on OpenBSD.
Solution:
Updates are available. Please see the references for more information.
References:
http://www.securityfocus.com/bid/28444
http://support.apple.com/kb/HT3137
http://www.openbsd.org/errata41.html
http://www.openbsd.org/errata42.html
http://www.openbsd.org/errata43.html
http://www.openssh.com/txt/release-5.0
http://www.openssh.com
http://sourceforge.net/project/shownotes.php?release_id=590180
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=463011
http://www.securityfocus.com/archive/1/492447
http://aix.software.ibm.com/aix/efixes/security/ssh_advisory.asc
http://support.avaya.com/elmodocs2/security/ASA-2008-205.htm
http://www.globus.org/mail_archive/security-announce/2008/04/msg00000.html
http://support.attachmate.com/techdocs/2374.html#Security_Updates_in_7.0_SP1
http://sunsolve.sun.com/search/document.do?assetkey=1-66-237444-1
CVE : CVE-2008-1483
BID : 28444
</data>
</information>
<information>
<severity>Security Warning</severity>
<id>1.3.6.1.4.1.25623.1.0.100153</id>
<data>
Overview: The host is installed with OpenSSH and is prone to information
disclosure vulnerability.
Vulnerability Insight:
The flaw is caused due to the improper handling of errors within an SSH session
encrypted with a block cipher algorithm in the Cipher-Block Chaining 'CBC' mode.
Impact:
Successful exploits will allow attackers to obtain four bytes of plaintext from
an encrypted session.
Impact Level: Application
Affected Software/OS:
Versions prior to OpenSSH 5.2 are vulnerable. Various versions of SSH Tectia
are also affected.
Fix: Upgrade to higher version
http://www.openssh.com/portable.html
References:
http://www.securityfocus.com/bid/32319
Risk factor: Medium
CVE : CVE-2008-5161
BID : 32319
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10267</id>
<data>
Remote SSH version : SSH-2.0-OpenSSH_4.3
Remote SSH supported authentication : publickey,gssapi-with-mic,password
</data>
</information>
<information>
<severity>Log Message</severity>
<id>1.3.6.1.4.1.25623.1.0.50282</id>
<data>
This script will, if given a userid/password or
key to the remote system, login to that system,
determine the OS it is running, and for supported
systems, extract the list of installed packages/rpms.
Risk factor : None
</data>
</information>
<information>
<severity>Log Message</severity>
<id>1.3.6.1.4.1.25623.1.0.90022</id>
<data>
No SSH crendentials were supplied.
Hence local security checks are not enabled.
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
An ssh server is running on this port
</data>
</information>
</port>
<port portid="25" protocol="tcp">
<service conf="3" method="nessus" name="smtp" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.11270</id>
<data>
Some antivirus scanners dies when they process an email with a
too long string without line breaks.
Such a message was sent. If there is an antivirus on your MTA,
it might have crashed. Please check its status right now, as
it is not possible to do it remotely
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.11036</id>
<data>
The file 42.zip was sent 2 times. If there is an antivirus in your MTA, it might
have crashed. Please check its status right now, as it is
not possible to do so remotely
BID : 3027
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10263</id>
<data>
Remote SMTP server banner :
220 finnean.com ESMTP Postfix
This is probably: Postfix
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
An SMTP server is running on this port
Here is its banner :
220 finnean.com ESMTP Postfix
</data>
</information>
</port>
<port portid="633" protocol="tcp">
<service conf="3" method="nessus" name="servstat" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.11111</id>
<data>
RPC program #100024 version 1 'status' is running on this port
</data>
</information>
</port>
<port portid="995" protocol="tcp">
<service conf="3" method="nessus" name="pop3s" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.900234</id>
<data>
Server will not supports SSLv2 Ciphers.
Server supports SSLv3 ciphers.
Server supports TLSv1 ciphers.
Weak Ciphers
SSL3_RSA_NULL_MD5 : SSL_NOT_EXP
SSL3_RSA_NULL_SHA : SSL_NOT_EXP
SSL3_RSA_RC4_40_MD5 : SSL_EXPORT
SSL3_RSA_RC2_40_MD5 : SSL_EXPORT
SSL3_RSA_DES_40_CBC_SHA : SSL_EXPORT
SSL3_DH_DSS_DES_40_CBC_SHA : SSL_EXPORT
SSL3_DH_RSA_DES_40_CBC_SHA : SSL_EXPORT
SSL3_EDH_DSS_DES_40_CBC_SHA : SSL_EXPORT
SSL3_EDH_RSA_DES_40_CBC_SHA : SSL_EXPORT
SSL3_ADH_RC4_40_MD5 : SSL_EXPORT
SSL3_ADH_DES_40_CBC_SHA : SSL_EXPORT
SSL3_FZA_DMS_NULL_SHA : SSL_NOT_EXP
SSL3_FZA_DMS_FZA_SHA : SSL_NOT_EXP
SSL3_FZA_DMS_RC4_SHA : SSL_NOT_EXP
SSL3_KRB5_DES_40_CBC_SHA : SSL_EXPORT
SSL3_KRB5_RC2_40_CBC_SHA : SSL_EXPORT
SSL3_KRB5_RC4_40_SHA : SSL_EXPORT
SSL3_KRB5_DES_40_CBC_MD5 : SSL_EXPORT
SSL3_KRB5_RC2_40_CBC_MD5 : SSL_EXPORT
SSL3_KRB5_RC4_40_MD5 : SSL_EXPORT
SSL3_RSA_EXPORT1024_WITH_RC4_56_MD5 : SSL_EXPORT
SSL3_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5 : SSL_EXPORT
SSL3_RSA_EXPORT1024_WITH_DES_CBC_SHA : SSL_EXPORT
SSL3_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA : SSL_EXPORT
SSL3_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA : SSL_EXPORT
SSL3_RSA_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_DH_DSS_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_DH_RSA_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_DHE_DSS_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_DHE_RSA_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_ADH_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_ECDH_ECDSA_WITH_NULL_SHA : SSL_NOT_EXP
SSL3_ECDHE_ECDSA_WITH_NULL_SHA : SSL_NOT_EXP
SSL3_ECDH_RSA_WITH_NULL_SHA : SSL_NOT_EXP
SSL3_ECDHE_RSA_WITH_NULL_SHA : SSL_NOT_EXP
SSL3_ECDH_anon_WITH_NULL_SHA : SSL_NOT_EXP
TLS1_RSA_NULL_MD5 : SSL_NOT_EXP
TLS1_RSA_NULL_SHA : SSL_NOT_EXP
TLS1_RSA_RC4_40_MD5 : SSL_EXPORT
TLS1_RSA_RC2_40_MD5 : SSL_EXPORT
TLS1_RSA_DES_40_CBC_SHA : SSL_EXPORT
TLS1_DH_DSS_DES_40_CBC_SHA : SSL_EXPORT
TLS1_DH_RSA_DES_40_CBC_SHA : SSL_EXPORT
TLS1_EDH_DSS_DES_40_CBC_SHA : SSL_EXPORT
TLS1_EDH_RSA_DES_40_CBC_SHA : SSL_EXPORT
TLS1_ADH_RC4_40_MD5 : SSL_EXPORT
TLS1_ADH_DES_40_CBC_SHA : SSL_EXPORT
TLS1_FZA_DMS_NULL_SHA : SSL_NOT_EXP
TLS1_FZA_DMS_FZA_SHA : SSL_NOT_EXP
TLS1_FZA_DMS_RC4_SHA : SSL_NOT_EXP
TLS1_KRB5_DES_40_CBC_SHA : SSL_EXPORT
TLS1_KRB5_RC2_40_CBC_SHA : SSL_EXPORT
TLS1_KRB5_RC4_40_SHA : SSL_EXPORT
TLS1_KRB5_DES_40_CBC_MD5 : SSL_EXPORT
TLS1_KRB5_RC2_40_CBC_MD5 : SSL_EXPORT
TLS1_KRB5_RC4_40_MD5 : SSL_EXPORT
TLS1_RSA_EXPORT1024_WITH_RC4_56_MD5 : SSL_EXPORT
TLS1_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5 : SSL_EXPORT
TLS1_RSA_EXPORT1024_WITH_DES_CBC_SHA : SSL_EXPORT
TLS1_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA : SSL_EXPORT
TLS1_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA : SSL_EXPORT
TLS1_RSA_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_DH_DSS_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_DH_RSA_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_DHE_DSS_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_DHE_RSA_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_ADH_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_ECDH_ECDSA_WITH_NULL_SHA : SSL_NOT_EXP
TLS1_ECDHE_ECDSA_WITH_NULL_SHA : SSL_NOT_EXP
TLS1_ECDH_RSA_WITH_NULL_SHA : SSL_NOT_EXP
TLS1_ECDHE_RSA_WITH_NULL_SHA : SSL_NOT_EXP
TLS1_ECDH_anon_WITH_NULL_SHA : SSL_NOT_EXP
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
A pop3 server is running on this port
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
A TLSv1 server answered on this port
</data>
</information>
</port>
<port portid="110" protocol="tcp">
<service conf="3" method="nessus" name="pop3" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
A pop3 server is running on this port
</data>
</information>
</port>
<port portid="9390" protocol="tcp">
<service conf="3" method="nessus" name="otp" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.900234</id>
<data>
Server will not supports SSLv2 Ciphers.
Server will not supports SSLv3 Ciphers.
Server will not supports TLSv1 Ciphers.
None of the weak ciphers are supported
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.100076</id>
<data>
Overview:
OpenVAS is running at this host.
OpenVAS stands for Open Vulnerability Assessment System and is a network
security scanner with associated tools like a graphical user front-end. The
core component is a server with a set of network vulnerability tests (NVTs) to
detect security problems in remote systems and applications.
See http://openvas.org for more information.
Risk factor : None
</data>
</information>
</port>
<port portid="3306" protocol="tcp">
<service conf="3" method="nessus" name="mysql" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.100152</id>
<data>
Overview:
MySQL, a open source database system is running at this host.
See also:
http://www.mysql.com
Risk factor : None
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.17975</id>
<data>
A MySQL server seems to be running on this port but it
rejects connection from the openvas scanner.
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
An unknown service is running on this port.
It is usually reserved for MySQL
</data>
</information>
</port>
<port portid="993" protocol="tcp">
<service conf="3" method="nessus" name="imaps" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.900234</id>
<data>
Server will not supports SSLv2 Ciphers.
Server supports SSLv3 ciphers.
Server supports TLSv1 ciphers.
Weak Ciphers
SSL3_RSA_NULL_MD5 : SSL_NOT_EXP
SSL3_RSA_NULL_SHA : SSL_NOT_EXP
SSL3_RSA_RC4_40_MD5 : SSL_EXPORT
SSL3_RSA_RC2_40_MD5 : SSL_EXPORT
SSL3_RSA_DES_40_CBC_SHA : SSL_EXPORT
SSL3_DH_DSS_DES_40_CBC_SHA : SSL_EXPORT
SSL3_DH_RSA_DES_40_CBC_SHA : SSL_EXPORT
SSL3_EDH_DSS_DES_40_CBC_SHA : SSL_EXPORT
SSL3_EDH_RSA_DES_40_CBC_SHA : SSL_EXPORT
SSL3_ADH_RC4_40_MD5 : SSL_EXPORT
SSL3_ADH_DES_40_CBC_SHA : SSL_EXPORT
SSL3_FZA_DMS_NULL_SHA : SSL_NOT_EXP
SSL3_FZA_DMS_FZA_SHA : SSL_NOT_EXP
SSL3_FZA_DMS_RC4_SHA : SSL_NOT_EXP
SSL3_KRB5_DES_40_CBC_SHA : SSL_EXPORT
SSL3_KRB5_RC2_40_CBC_SHA : SSL_EXPORT
SSL3_KRB5_RC4_40_SHA : SSL_EXPORT
SSL3_KRB5_DES_40_CBC_MD5 : SSL_EXPORT
SSL3_KRB5_RC2_40_CBC_MD5 : SSL_EXPORT
SSL3_KRB5_RC4_40_MD5 : SSL_EXPORT
SSL3_RSA_EXPORT1024_WITH_RC4_56_MD5 : SSL_EXPORT
SSL3_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5 : SSL_EXPORT
SSL3_RSA_EXPORT1024_WITH_DES_CBC_SHA : SSL_EXPORT
SSL3_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA : SSL_EXPORT
SSL3_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA : SSL_EXPORT
SSL3_RSA_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_DH_DSS_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_DH_RSA_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_DHE_DSS_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_DHE_RSA_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_ADH_WITH_SEED_SHA : SSL_NOT_EXP
SSL3_ECDH_ECDSA_WITH_NULL_SHA : SSL_NOT_EXP
SSL3_ECDHE_ECDSA_WITH_NULL_SHA : SSL_NOT_EXP
SSL3_ECDH_RSA_WITH_NULL_SHA : SSL_NOT_EXP
SSL3_ECDHE_RSA_WITH_NULL_SHA : SSL_NOT_EXP
SSL3_ECDH_anon_WITH_NULL_SHA : SSL_NOT_EXP
TLS1_RSA_NULL_MD5 : SSL_NOT_EXP
TLS1_RSA_NULL_SHA : SSL_NOT_EXP
TLS1_RSA_RC4_40_MD5 : SSL_EXPORT
TLS1_RSA_RC2_40_MD5 : SSL_EXPORT
TLS1_RSA_DES_40_CBC_SHA : SSL_EXPORT
TLS1_DH_DSS_DES_40_CBC_SHA : SSL_EXPORT
TLS1_DH_RSA_DES_40_CBC_SHA : SSL_EXPORT
TLS1_EDH_DSS_DES_40_CBC_SHA : SSL_EXPORT
TLS1_EDH_RSA_DES_40_CBC_SHA : SSL_EXPORT
TLS1_ADH_RC4_40_MD5 : SSL_EXPORT
TLS1_ADH_DES_40_CBC_SHA : SSL_EXPORT
TLS1_FZA_DMS_NULL_SHA : SSL_NOT_EXP
TLS1_FZA_DMS_FZA_SHA : SSL_NOT_EXP
TLS1_FZA_DMS_RC4_SHA : SSL_NOT_EXP
TLS1_KRB5_DES_40_CBC_SHA : SSL_EXPORT
TLS1_KRB5_RC2_40_CBC_SHA : SSL_EXPORT
TLS1_KRB5_RC4_40_SHA : SSL_EXPORT
TLS1_KRB5_DES_40_CBC_MD5 : SSL_EXPORT
TLS1_KRB5_RC2_40_CBC_MD5 : SSL_EXPORT
TLS1_KRB5_RC4_40_MD5 : SSL_EXPORT
TLS1_RSA_EXPORT1024_WITH_RC4_56_MD5 : SSL_EXPORT
TLS1_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5 : SSL_EXPORT
TLS1_RSA_EXPORT1024_WITH_DES_CBC_SHA : SSL_EXPORT
TLS1_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA : SSL_EXPORT
TLS1_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA : SSL_EXPORT
TLS1_RSA_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_DH_DSS_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_DH_RSA_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_DHE_DSS_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_DHE_RSA_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_ADH_WITH_SEED_SHA : SSL_NOT_EXP
TLS1_ECDH_ECDSA_WITH_NULL_SHA : SSL_NOT_EXP
TLS1_ECDHE_ECDSA_WITH_NULL_SHA : SSL_NOT_EXP
TLS1_ECDH_RSA_WITH_NULL_SHA : SSL_NOT_EXP
TLS1_ECDHE_RSA_WITH_NULL_SHA : SSL_NOT_EXP
TLS1_ECDH_anon_WITH_NULL_SHA : SSL_NOT_EXP
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.66286</id>
<data>
nmap thinks ssl|imap is running on this port
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
An unknown service is running on this port through SSL.
It is usually reserved for IMAPS
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
A TLSv1 server answered on this port
</data>
</information>
</port>
<port portid="143" protocol="tcp">
<service conf="3" method="nessus" name="imap" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.11414</id>
<data>
The remote imap server banner is :
* OK Dovecot ready.
Versions and types should be omitted where possible.
Change the imap banner to something generic.
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.66286</id>
<data>
nmap thinks imap is running on this port
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
An unknown service is running on this port.
It is usually reserved for IMAP
</data>
</information>
</port>
<port portid="443" protocol="tcp">
<service conf="3" method="nessus" name="https" />
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.11213</id>
<data>
Synopsis :
Debugging functions are enabled on the remote HTTP server.
Description :
The remote webserver supports the TRACE and/or TRACK methods. TRACE and TRACK
are HTTP methods which are used to debug web server connections.
It has been shown that servers supporting this method are subject to
cross-site-scripting attacks, dubbed XST for "Cross-Site-Tracing", when
used in conjunction with various weaknesses in browsers.
An attacker may use this flaw to trick your legitimate web users to give
him their credentials.
Solution :
Disable these methods.
See also :
http://www.kb.cert.org/vuls/id/867593
Risk factor :
Low / CVSS Base Score : 2
(AV:R/AC:L/Au:NR/C:P/A:N/I:N/B:N)
Plugin output :
Solution :
Add the following lines for each virtual host in your configuration file :
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
CVE : CVE-2004-2320, CVE-2003-1567
BID : 9506, 9561, 11604
</data>
</information>
<information>
<severity>Log Message</severity>
<id>1.3.6.1.4.1.25623.1.0.80109</id>
<data>
w3af could not be found in your system path.
OpenVAS was unable to execute w3af and to perform the scan you
requested.
Please make sure that w3af is installed and that w3af_console is
available in the PATH variable defined for your environment.
</data>
</information>
<information>
<severity>Security Hole</severity>
<id>1.3.6.1.4.1.25623.1.0.900842</id>
<data>
Overview: The host is running Apache and is prone to Command Injection
vulnerability.
Vulnerability Insight:
The flaw is due to error in the mod_proxy_ftp module which can be exploited
via vectors related to the embedding of these commands in the Authorization
HTTP header.
Impact:
Successful exploitation could allow remote attackers to bypass intended access
restrictions in the context of the affected application, and can cause the
arbitrary command injection.
Impact Level: Application
Affected Software/OS:
Apache HTTP Server on Linux.
Fix: Upgrade to Apache HTTP Server version 2.2.15 or later
For updates refer, http://www.apache.org/
References:
http://intevydis.com/vd-list.shtml
http://httpd.apache.org/docs/2.0/mod/mod_proxy_ftp.html
CVSS Score:
CVSS Base Score : 7.5 (AV:N/AC:L/Au:NR/C:P/I:P/A:P)
CVSS Temporal Score : 6.7
Risk factor: High
CVE : CVE-2009-3095
BID : 36254
</data>
</information>
<information>
<severity>Security Warning</severity>
<id>1.3.6.1.4.1.25623.1.0.900107</id>
<data>
Overview : The host is running Apache, which is prone to cross-site scripting
vulnerability.
Vulnerability Insight :
Input passed to the module mod_proxy_ftp with wildcard character
is not properly sanitized before returning to the user.
Impact : Remote attackers can execute arbitrary script code.
Impact Level : Application
Affected Software/OS :
Apache 2.0.0 to 2.0.63 and Apache 2.2.0 to 2.2.9 on All Platform
***
Note: The script might report a False Positive as it is only checking for
the vulnerable version of Apache. Vulnerability is only when mod_proxy
and mod_proxy_ftp is configured with the installed Apache version.
***
Fix : Fixed is available in the SVN repository,
http://svn.apache.org/viewvc?view=rev&revision=682871
http://svn.apache.org/viewvc?view=rev&revision=682868
References :
http://httpd.apache.org/
http://www.securityfocus.com/archive/1/495180
http://httpd.apache.org/docs/2.0/mod/mod_proxy_ftp.html
CVSS Score :
CVSS Base Score : 5.8 (AV:N/AC:M/Au:NR/C:P/I:P/A:N)
CVSS Temporal Score : 4.5
Risk factor : Medium
CVE : CVE-2008-2939
BID : 30560
</data>
</information>
<information>
<severity>Security Warning</severity>
<id>1.3.6.1.4.1.25623.1.0.900499</id>
<data>
Overview: This host is running Apache Web Server and is prone to
Information Disclosure Vulnerability.
Vulnerability Insight:
This flaw is caused due to an error in 'mod_proxy_ajp' when handling
improperly malformed POST requests.
Impact:
Successful exploitation will let the attacker craft a special HTTP POST
request and gain sensitive information about the web server.
Impact level: Application
Affected Software/OS:
Apache HTTP Version 2.2.11
Workaround:
Update mod_proxy_ajp.c through SVN Repository (Revision 767089)
http://www.apache.org/dist/httpd/patches/apply_to_2.2.11/PR46949.diff
Fix: Upgrade to Apache HTTP Version 2.2.15 or later
For further updates refer, http://httpd.apache.org/download.cgi
References:
http://secunia.com/advisories/34827
http://xforce.iss.net/xforce/xfdb/50059
http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?r1=766938&r2=767089
CVSS Score:
CVSS Base Score : 5.0 (AV:N/AC:L/Au:NR/C:P/I:N/A:N)
CVSS Temporal Score : 4.0
Risk factor: Medium
CVE : CVE-2009-1191
BID : 34663
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.14260</id>
<data>
Here is the Nikto report:
- Could not find a valid nikto config file
</data>
</information>
<information>
<severity>Security Warning</severity>
<id>1.3.6.1.4.1.25623.1.0.900841</id>
<data>
Overview: The host is running Apache and is prone to Denial of Service
vulnerability.
Vulnerability Insight:
The flaw is caused due to an error in 'ap_proxy_ftp_handler' function in
modules/proxy/proxy_ftp.c in the mod_proxy_ftp module while processing
responses received from FTP servers. This can be exploited to trigger a
NULL-pointer dereference and crash an Apache child process via a malformed
EPSV response.
Impact:
Successful exploitation could allow remote attackers to cause a Denial of
Service in the context of the affected application.
Impact Level: Application
Affected Software/OS:
Apache HTTP Server version 2.0.x to 2.0.63 and and 2.2.x to 2.2.13 on Linux.
Fix: Upgrade to Apache HTTP Server version 2.2.15 or later
For updates refer, http://www.apache.org/
References:
http://intevydis.com/vd-list.shtml
http://www.intevydis.com/blog/?p=59
http://secunia.com/advisories/36549
http://httpd.apache.org/docs/2.0/mod/mod_proxy_ftp.html
CVSS Score:
CVSS Base Score : 5.4 (AV:N/AC:H/Au:NR/C:N/I:N/A:C)
CVSS Temporal Score : 4.9
Risk factor: Medium
CVE : CVE-2009-3094
BID : 36260
</data>
</information>
<information>
<severity>Log Message</severity>
<id>1.3.6.1.4.1.25623.1.0.80110</id>
<data>
wapiti could not be found in your system path.
OpenVAS was unable to execute wapiti and to perform the scan you
requested.
Please make sure that wapiti is installed and that wapiti is
available in the PATH variable defined for your environment.
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10107</id>
<data>
The remote web server type is :
Apache/2.2.3 (CentOS)
Solution : You can set the directive 'ServerTokens Prod' to limit
the information emanating from the server in its response headers.
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
A web server is running on this port through SSL
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.10330</id>
<data>
A TLSv1 server answered on this port
</data>
</information>
</port>
<port portid="80" protocol="tcp">
<service conf="3" method="nessus" name="http" />
<information>
<severity>Security Warning</severity>
<id>1.3.6.1.4.1.25623.1.0.10302</id>
<data>
Some Web Servers use a file called /robot(s).txt to make search engines and
any other indexing tools visit their WebPages more frequently and
more efficiently.
By connecting to the server and requesting the /robot(s).txt file, an
attacker may gain additional information about the system they are
attacking.
Such information as, restricted directories, hidden directories, cgi script
directories and etc. Take special care not to tell the robots not to index
sensitive directories, since this tells attackers exactly which of your
directories are sensitive.
The file 'robots.txt' contains the following:
User-agent: *
Disallow: /cgi
Risk factor : Medium
</data>
</information>
<information>
<severity>Security Note</severity>
<id>1.3.6.1.4.1.25623.1.0.11213</id>
<data>
Synopsis :
Debugging functions are enabled on the remote HTTP server.
Description :
The remote webserver supports the TRACE and/or TRACK methods. TRACE and TRACK
are HTTP methods which are used to debug web server connections.
It has been shown that servers supporting this method are subject to
cross-site-scripting attacks, dubbed XST for "Cross-Site-Tracing", when
used in conjunction with various weaknesses in browsers.
An attacker may use this flaw to trick your legitimate web users to give
him their credentials.
Solution :
Disable these methods.
See also :
http://www.kb.cert.org/vuls/id/867593
Risk factor :
Low / CVSS Base Score : 2
(AV:R/AC:L/Au:NR/C:P/A:N/I:N/B:N)
Plugin output :
Solution :
Add the following lines for each virtual host in your configuration file :
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
CVE : CVE-2004-2320, CVE-2003-1567
BID : 9506, 9561, 11604
</data>
</information>
<information>
<severity>Log Message</severity>
<id>1.3.6.1.4.1.25623.1.0.80109</id>
<data>
w3af could not be found in your system path.
OpenVAS was unable to execute w3af and to perform the scan you
requested.
Please make sure that w3af is installed and that w3af_console is
available in the PATH variable defined for your environment.
</data>