-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrails.xml
2031 lines (1862 loc) · 231 KB
/
rails.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
<Vulns> <Vulnerability added="2017-05-08" gvid="ID106147" id="106147" modified="2017-05-08" published="2003-05-30" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:C/I:C/A:C)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Obsolete Software</tag>
</Tags>
<AlternateIds/>
<Check scope="node"> <NetworkService> <Product name="Ruby on Rails" vendor="Ruby on Rails"> <range>
<high inclusive="0">4.2</high>
</range> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>10.0</cvsscode> <severity>Critical</severity> <Description>此版本已到期。可能存在未打补丁的安全漏洞。请检查<a href="http://weblog.rubyonrails.org/releases/">Rails版本</a>支持的版本。</Description> <name>Ruby on Rails: Rails 的过时版本</name> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106175" id="106175" modified="2020-01-03" published="2006-08-14" version="2.0">
<name>Ruby on Rails: Improper Control of Generation of Code ('Code Injection') (CVE-2006-4111)</name>
<severity>8</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">19454</id>
<id name="CVE">CVE-2006-4111</id>
<id name="URL">http://blog.koehntopp.de/archives/1367-Ruby-On-Rails-Mandatory-Mystery-Patch.html</id>
<id name="URL">http://secunia.com/advisories/21466</id>
<id name="URL">http://secunia.com/advisories/21749</id>
<id name="URL">http://securitytracker.com/id?1016673</id>
<id name="URL">http://weblog.rubyonrails.org/2006/8/9/rails-1-1-5-mandatory-security-patch-and-other-tidbits</id>
<id name="URL">http://www.gentoo.org/security/en/glsa/glsa-200608-20.xml</id>
<id name="URL">http://www.novell.com/linux/security/advisories/2006_21_sr.html</id>
<id name="URL">http://www.securityfocus.com/bid/19454</id>
<id name="URL">http://www.vupen.com/english/advisories/2006/3237</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>0.9.1</low> <high>0.9.5</high> </version> <version> <low>0.10.0</low> <high>0.10.2</high> </version> <version> <low>0.11.0</low> <high>0.11.2</high> </version> <version> <low>0.12.0</low> <high>0.12.2</high> </version> <version> <low>0.13.0</low> <high>0.13.2</high> </version> <version> <low>0.14.1</low> <high>0.14.5</high> </version> <version> <low>1.0.0</low> <high>1.0.1</high> </version> <version> <low>1.1.0</low> <high>1.1.4</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
http://www.rubyonrails.org/files/aug_10_security/rel_1-1-0.diff
http://www.rubyonrails.org/files/aug_10_security/rel_1-1-1.diff
http://www.rubyonrails.org/files/aug_10_security/rel_1-1-2.diff
http://www.rubyonrails.org/files/aug_10_security/rel_1-1-4.diff</Solutions> <cnnvd>CNNVD-200608-225</cnnvd> <Description>Ruby on Rails before 1.1.5 allows remote attackers to execute Ruby code with "severe" or "serious" impact via a File Upload request with an HTTP header that modifies the LOAD_PATH variable, a different vulnerability than CVE-2006-4112.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106176" id="106176" modified="2020-01-03" published="2006-08-14" version="2.0">
<name>Ruby on Rails: Unspecified Security Vulnerability (CVE-2006-4112)</name>
<severity>8</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Denial of Service</tag>
<tag>Remote Execution</tag>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="BID">19454</id>
<id name="CERT-VN">699540</id>
<id name="CVE">CVE-2006-4112</id>
<id name="URL">http://secunia.com/advisories/21424</id>
<id name="URL">http://secunia.com/advisories/21466</id>
<id name="URL">http://secunia.com/advisories/21749</id>
<id name="URL">http://securitytracker.com/id?1016673</id>
<id name="URL">http://weblog.rubyonrails.org/2006/8/10/rails-1-1-6-backports-and-full-disclosure</id>
<id name="URL">http://www.gentoo.org/security/en/glsa/glsa-200608-20.xml</id>
<id name="URL">http://www.kb.cert.org/vuls/id/699540</id>
<id name="URL">http://www.novell.com/linux/security/advisories/2006_21_sr.html</id>
<id name="URL">http://www.securityfocus.com/archive/1/442934/100/0/threaded</id>
<id name="URL">http://www.securityfocus.com/bid/19454</id>
<id name="URL">https://exchange.xforce.ibmcloud.com/vulnerabilities/28364</id>
<id name="XF">28364</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>1.1.0</low> <high>1.1.5</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
http://www.rubyonrails.org/files/aug_10_security/rel_1-1-0.diff
http://www.rubyonrails.org/files/aug_10_security/rel_1-1-1.diff
http://www.rubyonrails.org/files/aug_10_security/rel_1-1-2.diff
http://www.rubyonrails.org/files/aug_10_security/rel_1-1-4.diff</Solutions> <cnnvd>CNNVD-200608-220</cnnvd> <Description>Unspecified vulnerability in the "dependency resolution mechanism" in Ruby on Rails 1.1.0 through 1.1.5 allows remote attackers to execute arbitrary Ruby code via a URL that is not properly handled in the routing code, which leads to a denial of service (application hang) or "data loss," a different vulnerability than CVE-2006-4111.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106177" id="106177" modified="2020-01-03" published="2007-06-14" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (CVE-2007-3227)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">24161</id>
<id name="CVE">CVE-2007-3227</id>
<id name="URL">http://bugs.gentoo.org/show_bug.cgi?id=195315</id>
<id name="URL">http://dev.rubyonrails.org/ticket/8371</id>
<id name="URL">http://osvdb.org/36378</id>
<id name="URL">http://pastie.caboo.se/65550.txt</id>
<id name="URL">http://secunia.com/advisories/25699</id>
<id name="URL">http://secunia.com/advisories/27657</id>
<id name="URL">http://secunia.com/advisories/27756</id>
<id name="URL">http://security.gentoo.org/glsa/glsa-200711-17.xml</id>
<id name="URL">http://weblog.rubyonrails.org/2007/10/12/rails-1-2-5-maintenance-release</id>
<id name="URL">http://weblog.rubyonrails.org/2007/10/5/rails-1-2-4-maintenance-release</id>
<id name="URL">http://www.novell.com/linux/security/advisories/2007_24_sr.html</id>
<id name="URL">http://www.securityfocus.com/bid/24161</id>
<id name="URL">http://www.vupen.com/english/advisories/2007/2216</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>1.1.5</low> <high>1.1.6</high> </version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd></cnnvd> <Description>Cross-site scripting (XSS) vulnerability in the to_json (ActiveRecord::Base#to_json) function in Ruby on Rails before edge 9606 allows remote attackers to inject arbitrary web script via the input values.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106178" id="106178" modified="2020-01-03" published="2007-11-21" version="2.0">
<name>Ruby on Rails: Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition') (CVE-2007-6077)</name>
<severity>7</severity>
<cvss>(AV:N/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="APPLE">APPLE-SA-2007-12-17</id>
<id name="BID">26598</id>
<id name="CERT">TA07-352A</id>
<id name="CVE">CVE-2007-6077</id>
<id name="URL">http://dev.rubyonrails.org/changeset/8177</id>
<id name="URL">http://dev.rubyonrails.org/ticket/10048</id>
<id name="URL">http://docs.info.apple.com/article.html?artnum=307179</id>
<id name="URL">http://lists.apple.com/archives/security-announce/2007/Dec/msg00002.html</id>
<id name="URL">http://secunia.com/advisories/27781</id>
<id name="URL">http://secunia.com/advisories/28136</id>
<id name="URL">http://weblog.rubyonrails.org/2007/11/24/ruby-on-rails-1-2-6-security-and-maintenance-release</id>
<id name="URL">http://www.securityfocus.com/bid/26598</id>
<id name="URL">http://www.us-cert.gov/cas/techalerts/TA07-352A.html</id>
<id name="URL">http://www.vupen.com/english/advisories/2007/4009</id>
<id name="URL">http://www.vupen.com/english/advisories/2007/4238</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>1.2.4</low> <high>1.2.5</high> </version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd></cnnvd> <Description>The session fixation protection mechanism in cgi_process.rb in Rails 1.2.4, as used in Ruby on Rails, removes the :cookie_only attribute from the DEFAULT_SESSION_OPTIONS constant, which effectively causes cookie_only to be applied only to the first instantiation of CgiRequest, which allows remote attackers to conduct session fixation attacks. NOTE: this is due to an incomplete fix for CVE-2007-5380.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106179" id="106179" modified="2020-01-03" published="2008-09-30" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') (CVE-2008-4094)</name>
<severity>8</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Database</tag>
<tag>Remote Execution</tag>
<tag>Ruby on Rails</tag>
<tag>SQL Injection</tag>
</Tags>
<AlternateIds>
<id name="BID">31176</id>
<id name="CVE">CVE-2008-4094</id>
<id name="URL">http://blog.innerewut.de/2008/6/16/why-you-should-upgrade-to-rails-2-1</id>
<id name="URL">http://gist.github.com/8946</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2008-12/msg00002.html</id>
<id name="URL">http://rails.lighthouseapp.com/projects/8994/tickets/288</id>
<id name="URL">http://rails.lighthouseapp.com/projects/8994/tickets/964</id>
<id name="URL">http://secunia.com/advisories/31875</id>
<id name="URL">http://secunia.com/advisories/31909</id>
<id name="URL">http://secunia.com/advisories/31910</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2008/09/13/2</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2008/09/16/1</id>
<id name="URL">http://www.rorsecurity.info/2008/09/08/sql-injection-issue-in-limit-and-offset-parameter/</id>
<id name="URL">http://www.securityfocus.com/bid/31176</id>
<id name="URL">http://www.securitytracker.com/id?1020871</id>
<id name="URL">http://www.vupen.com/english/advisories/2008/2562</id>
<id name="URL">https://exchange.xforce.ibmcloud.com/vulnerabilities/45109</id>
<id name="XF">45109</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>0.9.1</low> <high>0.9.5</high> </version> <version> <low>0.10.0</low> <high>0.10.2</high> </version> <version> <low>0.11.0</low> <high>0.11.2</high> </version> <version> <low>0.12.0</low> <high>0.12.2</high> </version> <version> <low>0.13.0</low> <high>0.13.2</high> </version> <version> <low>0.14.1</low> <high>0.14.5</high> </version> <version> <low>1.0.0</low> <high>1.0.1</high> </version> <version> <low>1.1.0</low> <high>1.1.7</high> </version> <version> <low>1.2.0</low> <high>1.2.7</high> </version> <version> <low>1.9.5</low> <high>1.9.6</high> </version> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.1</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已发布升级补丁以修复漏洞,补丁获取链接:
http://rails.lighthouseapp.com/projects/8994/tickets/288
http://rails.lighthouseapp.com/projects/8994/tickets/964</Solutions> <cnnvd>CNNVD-200809-414</cnnvd> <Description>Multiple SQL injection vulnerabilities in Ruby on Rails before 2.1.1 allow remote attackers to execute arbitrary SQL commands via the (1) :limit and (2) :offset parameters, related to ActiveRecord, ActiveSupport, ActiveResource, ActionPack, and ActionMailer.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106180" id="106180" modified="2020-01-03" published="2008-11-21" version="2.0">
<name>Ruby on Rails: Cross-Site Request Forgery (CSRF) (CVE-2008-5189)</name>
<severity>5</severity>
<cvss>(AV:N/AC:L/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>CSRF</tag>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">32359</id>
<id name="CVE">CVE-2008-5189</id>
<id name="URL">http://github.com/rails/rails/commit/7282ed863ca7e6f928bae9162c9a63a98775a19d</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2008-12/msg00002.html</id>
<id name="URL">http://weblog.rubyonrails.org/2008/10/19/rails-2-0-5-redirect_to-and-offset-limit-sanitizing</id>
<id name="URL">http://weblog.rubyonrails.org/2008/10/19/response-splitting-risk</id>
<id name="URL">http://www.securityfocus.com/bid/32359</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>0.9.1</low> <high>0.9.5</high> </version> <version> <low>0.10.0</low> <high>0.10.2</high> </version> <version> <low>0.11.0</low> <high>0.11.2</high> </version> <version> <low>0.12.0</low> <high>0.12.2</high> </version> <version> <low>0.13.0</low> <high>0.13.2</high> </version> <version> <low>0.14.1</low> <high>0.14.5</high> </version> <version> <low>1.0.0</low> <high>1.0.1</high> </version> <version> <low>1.1.0</low> <high>1.1.7</high> </version> <version> <low>1.2.0</low> <high>1.2.7</high> </version> <version> <low>1.9.5</low> <high>1.9.6</high> </version> <version> <low>2.0.0</low> <high>2.0.3</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已发布升级补丁以修复漏洞,补丁获取链接:
http://rubyforge.org/frs/download.php/45368/rails-2.0.5.tgz
</Solutions> <cnnvd>CNNVD-200811-348</cnnvd> <Description>CRLF injection vulnerability in Ruby on Rails before 2.0.5 allows remote attackers to inject arbitrary HTTP headers and conduct HTTP response splitting attacks via a crafted URL to the redirect_to function.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106181" id="106181" modified="2020-01-03" published="2009-12-16" version="2.0">
<name>Ruby on Rails: Improper Input Validation (CVE-2008-7248)</name>
<severity>7</severity>
<cvss>(AV:N/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>CSRF</tag>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2008-7248</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/browse_thread/thread/d741ee286e36e301?hl=en</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2010-03/msg00004.html</id>
<id name="URL">http://pseudo-flaw.net/content/web-browsers/form-data-encoding-roundup/</id>
<id name="URL">http://secunia.com/advisories/36600</id>
<id name="URL">http://secunia.com/advisories/38915</id>
<id name="URL">http://weblog.rubyonrails.org/2008/11/18/potential-circumvention-of-csrf-protection-in-rails-2-1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2009/11/28/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2009/12/02/2</id>
<id name="URL">http://www.rorsecurity.info/journal/2008/11/19/circumvent-rails-csrf-protection.html</id>
<id name="URL">http://www.vupen.com/english/advisories/2009/2544</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.2</high> </version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-200912-202</cnnvd> <Description>Ruby on Rails 2.1 before 2.1.3 and 2.2.x before 2.2.2 does not verify tokens for requests with certain content types, which allows remote attackers to bypass cross-site request forgery (CSRF) protection for requests to applications that rely on this protection, as demonstrated using text/plain.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106182" id="106182" modified="2020-01-03" published="2009-09-08" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (CVE-2009-3009)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="APPLE">APPLE-SA-2010-03-29-1</id>
<id name="BID">36278</id>
<id name="CVE">CVE-2009-3009</id>
<id name="DEBIAN">DSA-1887</id>
<id name="URL">http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=545063</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/7f57cd7794e1d1b4?dmode=source</id>
<id name="URL">http://lists.apple.com/archives/security-announce/2010//Mar/msg00001.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2009-10/msg00004.html</id>
<id name="URL">http://secunia.com/advisories/36600</id>
<id name="URL">http://secunia.com/advisories/36717</id>
<id name="URL">http://securitytracker.com/id?1022824</id>
<id name="URL">http://support.apple.com/kb/HT4077</id>
<id name="URL">http://weblog.rubyonrails.org/2009/9/4/xss-vulnerability-in-ruby-on-rails</id>
<id name="URL">http://www.debian.org/security/2009/dsa-1887</id>
<id name="URL">http://www.osvdb.org/57666</id>
<id name="URL">http://www.securityfocus.com/bid/36278</id>
<id name="URL">http://www.vupen.com/english/advisories/2009/2544</id>
<id name="URL">https://exchange.xforce.ibmcloud.com/vulnerabilities/53036</id>
<id name="XF">53036</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.3</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
http://weblog.rubyonrails.org/assets/2009/9/4/2-0-CVE-2009-3009.patch
http://weblog.rubyonrails.org/assets/2009/9/4/2-1-CVE-2009-3009.patch
http://weblog.rubyonrails.org/assets/2009/9/4/2-2-CVE-2009-3009.patch
http://weblog.rubyonrails.org/assets/2009/9/4/2-3-CVE-2009-3009.patch</Solutions> <cnnvd>CNNVD-200909-095</cnnvd> <Description>Cross-site scripting (XSS) vulnerability in Ruby on Rails 2.x before 2.2.3, and 2.3.x before 2.3.4, allows remote attackers to inject arbitrary web script or HTML by placing malformed Unicode strings into a form helper.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106183" id="106183" modified="2020-01-03" published="2009-09-08" version="2.0">
<name>Ruby on Rails: Information Exposure (CVE-2009-3086)</name>
<severity>5</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="BID">37427</id>
<id name="CVE">CVE-2009-3086</id>
<id name="DEBIAN">DSA-2260</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2009-10/msg00004.html</id>
<id name="URL">http://secunia.com/advisories/36600</id>
<id name="URL">http://weblog.rubyonrails.org/2009/9/4/timing-weakness-in-ruby-on-rails</id>
<id name="URL">http://www.debian.org/security/2011/dsa-2260</id>
<id name="URL">http://www.securityfocus.com/bid/37427</id>
<id name="URL">http://www.vupen.com/english/advisories/2009/2544</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.3</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已发布升级补丁以修复漏洞,补丁获取链接:
https://weblog.rubyonrails.org/2009/9/4/timing-weakness-in-ruby-on-rails/</Solutions> <cnnvd>CNNVD-200909-099</cnnvd> <Description>A certain algorithm in Ruby on Rails 2.1.0 through 2.2.2, and 2.3.x before 2.3.4, leaks information about the complexity of message-digest signature verification in the cookie store, which might allow remote attackers to forge a digest via multiple attempts.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106184" id="106184" modified="2020-01-03" published="2009-12-07" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (CVE-2009-4214)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="APPLE">APPLE-SA-2010-03-29-1</id>
<id name="BID">37142</id>
<id name="CVE">CVE-2009-4214</id>
<id name="DEBIAN">DSA-2260</id>
<id name="DEBIAN">DSA-2301</id>
<id name="URL">http://github.com/rails/rails/commit/bfe032858077bb2946abe25e95e485ba6da86bd5</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/browse_thread/thread/4d4f71f2aef4c0ab?pli=1</id>
<id name="URL">http://lists.apple.com/archives/security-announce/2010//Mar/msg00001.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2010-03/msg00004.html</id>
<id name="URL">http://secunia.com/advisories/37446</id>
<id name="URL">http://secunia.com/advisories/38915</id>
<id name="URL">http://support.apple.com/kb/HT4077</id>
<id name="URL">http://weblog.rubyonrails.org/2009/11/30/ruby-on-rails-2-3-5-released</id>
<id name="URL">http://www.debian.org/security/2011/dsa-2260</id>
<id name="URL">http://www.debian.org/security/2011/dsa-2301</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2009/11/27/2</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2009/12/08/3</id>
<id name="URL">http://www.securityfocus.com/bid/37142</id>
<id name="URL">http://www.securitytracker.com/id?1023245</id>
<id name="URL">http://www.vupen.com/english/advisories/2009/3352</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>0.9.1</low> <high>0.9.5</high> </version> <version> <low>0.10.0</low> <high>0.10.2</high> </version> <version> <low>0.11.0</low> <high>0.11.2</high> </version> <version> <low>0.12.0</low> <high>0.12.2</high> </version> <version> <low>0.13.0</low> <high>0.13.2</high> </version> <version> <low>0.14.1</low> <high>0.14.5</high> </version> <version> <low>1.0.0</low> <high>1.0.1</high> </version> <version> <low>1.1.0</low> <high>1.1.7</high> </version> <version> <low>1.2.0</low> <high>1.2.7</high> </version> <version> <low>1.9.5</low> <high>1.9.6</high> </version> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.2</high> </version> <version> <low>2.3.2</low> <high>2.3.4</high> </version> </Product> </NetworkService> </Check> <Solutions>厂商补丁:
目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
Ruby on Rails Ruby on Rails 2.2.2
Ruby on Rails 2-2-strip_tags.patch
http://rubyonrails-security.googlegroups.com/attach/b88c6aa1a9eb2309/2 -2-strip_tags.patch?view=1?=2
Ruby on Rails Ruby on Rails 2.2.3
Ruby on Rails 2-2-strip_tags.patch
http://rubyonrails-security.googlegroups.com/attach/b88c6aa1a9eb2309/2 -2-strip_tags.patch?view=1?=2
Ruby on Rails Ruby on Rails 2.3.2
Ruby on Rails 2-3-strip_tags.patch
http://groups.google.com/group/rubyonrails-security/attach/b88c6aa1a9e b2309/2-3-strip_tags.patch?part=3&view=1
Ruby on Rails Ruby on Rails 2.3.3
Ruby on Rails 2-3-strip_tags.patch
http://groups.google.com/group/rubyonrails-security/attach/b88c6aa1a9e b2309/2-3-strip_tags.patch?part=3&view=1
Ruby on Rails Ruby on Rails 2.3.4
Ruby on Rails 2-3-strip_tags.patch
http://groups.google.com/group/rubyonrails-security/attach/b88c6aa1a9e b2309/2-3-strip_tags.patch?part=3&view=1</Solutions> <cnnvd>CNNVD-200912-076</cnnvd> <Description>Cross-site scripting (XSS) vulnerability in the strip_tags function in Ruby on Rails before 2.2.s, and 2.3.x before 2.3.5, allows remote attackers to inject arbitrary web script or HTML via vectors involving non-printing ASCII characters, related to HTML::Tokenizer and actionpack/lib/action_controller/vendor/html-scanner/html/node.rb.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106185" id="106185" modified="2020-01-03" published="2019-11-12" version="2.0">
<name>Ruby on Rails: Missing Encryption of Sensitive Data (CVE-2010-3299)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:P/I:N/A:N)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N</cvss3>
<Tags>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2010-3299</id>
<id name="URL">https://access.redhat.com/security/cve/cve-2010-3299</id>
<id name="URL">https://seclists.org/oss-sec/2010/q3/357</id>
<id name="URL">https://security-tracker.debian.org/tracker/CVE-2010-3299</id>
<id name="URL">https://www.usenix.org/legacy/events/woot10/tech/full_papers/Rizzo.pdf</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.3.0</low> <high>2.3.1</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已发布升级补丁以修复漏洞,详情请关注厂商主页:
https://rubyonrails.org/</Solutions> <cnnvd>CNNVD-201911-674</cnnvd> <Description>The encrypt/decrypt functions in Ruby on Rails 2.3 are vulnerable to padding oracle attacks.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106186" id="106186" modified="2020-01-03" published="2010-10-28" version="2.0">
<name>Ruby on Rails: Improper Input Validation (CVE-2010-3933)</name>
<severity>6</severity>
<cvss>(AV:N/AC:L/Au:N/C:N/I:P/A:P)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2010-3933</id>
<id name="URL">http://secunia.com/advisories/41930</id>
<id name="URL">http://securitytracker.com/id?1024624</id>
<id name="URL">http://weblog.rubyonrails.org/2010/10/15/security-vulnerability-in-nested-attributes-code-in-ruby-on-rails-2-3-9-and-3-0-0</id>
<id name="URL">http://www.vupen.com/english/advisories/2010/2719</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.3.9</low> <high>2.3.10</high> </version> <version> <low>3.0.0</low> <high>3.0.0</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://rubyonrails.org/download</Solutions> <cnnvd>CNNVD-201010-398</cnnvd> <Description>Ruby on Rails 2.3.9 and 3.0.0 does not properly handle nested attributes, which allows remote attackers to modify arbitrary records by changing the names of parameters for form inputs.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106187" id="106187" modified="2020-01-03" published="2011-02-14" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (CVE-2011-0446)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Mail</tag>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">46291</id>
<id name="CVE">CVE-2011-0446</id>
<id name="DEBIAN">DSA-2247</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/365b8a23b76a6b4a?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-April/057650.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-March/055074.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-March/055088.html</id>
<id name="URL">http://secunia.com/advisories/43274</id>
<id name="URL">http://secunia.com/advisories/43666</id>
<id name="URL">http://www.debian.org/security/2011/dsa-2247</id>
<id name="URL">http://www.securityfocus.com/bid/46291</id>
<id name="URL">http://www.securitytracker.com/id?1025064</id>
<id name="URL">http://www.vupen.com/english/advisories/2011/0587</id>
<id name="URL">http://www.vupen.com/english/advisories/2011/0877</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.11</high> </version> <version> <low>3.0.0</low> <high>3.0.4</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://rubyonrails.org/download</Solutions> <cnnvd>CNNVD-201102-213</cnnvd> <Description>Multiple cross-site scripting (XSS) vulnerabilities in the mail_to helper in Ruby on Rails before 2.3.11, and 3.x before 3.0.4, when javascript encoding is used, allow remote attackers to inject arbitrary web script or HTML via a crafted (1) name or (2) email value.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106188" id="106188" modified="2020-01-03" published="2011-02-14" version="2.0">
<name>Ruby on Rails: Cross-Site Request Forgery (CSRF) (CVE-2011-0447)</name>
<severity>7</severity>
<cvss>(AV:N/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>CSRF</tag>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">46291</id>
<id name="CVE">CVE-2011-0447</id>
<id name="DEBIAN">DSA-2247</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/c22ea1668c0d181c?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-April/057650.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-March/055074.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-March/055088.html</id>
<id name="URL">http://secunia.com/advisories/43274</id>
<id name="URL">http://secunia.com/advisories/43666</id>
<id name="URL">http://weblog.rubyonrails.org/2011/2/8/csrf-protection-bypass-in-ruby-on-rails</id>
<id name="URL">http://www.debian.org/security/2011/dsa-2247</id>
<id name="URL">http://www.securityfocus.com/bid/46291</id>
<id name="URL">http://www.securitytracker.com/id?1025060</id>
<id name="URL">http://www.vupen.com/english/advisories/2011/0587</id>
<id name="URL">http://www.vupen.com/english/advisories/2011/0877</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.11</high> </version> <version> <low>3.0.0</low> <high>3.0.4</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://rubyonrails.org/download</Solutions> <cnnvd>CNNVD-201102-214</cnnvd> <Description>Ruby on Rails 2.1.x, 2.2.x, and 2.3.x before 2.3.11, and 3.x before 3.0.4, does not properly validate HTTP requests that contain an X-Requested-With header, which makes it easier for remote attackers to conduct cross-site request forgery (CSRF) attacks via forged (1) AJAX or (2) API requests that leverage "combinations of browser plugins and HTTP redirects," a related issue to CVE-2011-0696.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106189" id="106189" modified="2020-01-03" published="2011-02-21" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') (CVE-2011-0448)</name>
<severity>8</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Database</tag>
<tag>Ruby on Rails</tag>
<tag>SQL Injection</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-0448</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/4e19864cf6ad40ad?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-April/057650.html</id>
<id name="URL">http://secunia.com/advisories/43278</id>
<id name="URL">http://securitytracker.com/id?1025063</id>
<id name="URL">http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4</id>
<id name="URL">http://www.vupen.com/english/advisories/2011/0877</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.4</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4
</Solutions> <cnnvd>CNNVD-201102-297</cnnvd> <Description>Ruby on Rails 3.0.x before 3.0.4 does not ensure that arguments to the limit function specify integer values, which makes it easier for remote attackers to conduct SQL injection attacks via a non-numeric argument.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106190" id="106190" modified="2020-01-03" published="2011-02-21" version="2.0">
<name>Ruby on Rails: Permissions, Privileges, and Access Controls (CVE-2011-0449)</name>
<severity>8</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-0449</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/04345b2e84df5b4f?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-April/057650.html</id>
<id name="URL">http://secunia.com/advisories/43278</id>
<id name="URL">http://securitytracker.com/id?1025061</id>
<id name="URL">http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4</id>
<id name="URL">http://www.vupen.com/english/advisories/2011/0877</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.4</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4
</Solutions> <cnnvd>CNNVD-201102-298</cnnvd> <Description>actionpack/lib/action_view/template/resolver.rb in Ruby on Rails 3.0.x before 3.0.4, when a case-insensitive filesystem is used, does not properly implement filters associated with the list of available templates, which allows remote attackers to bypass intended access restrictions via an action name that uses an unintended case for alphabetic characters.</Description> </Vulnerability> <Vulnerability added="2017-05-17" gvid="ID106191" id="106191" modified="2020-01-03" published="2011-06-30" version="2.0">
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-2197</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/663b600d4471e0d4?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-July/062514.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-June/062090.html</id>
<id name="URL">http://openwall.com/lists/oss-security/2011/06/09/2</id>
<id name="URL">http://openwall.com/lists/oss-security/2011/06/13/9</id>
<id name="URL">http://secunia.com/advisories/44789</id>
<id name="URL">http://weblog.rubyonrails.org/2011/6/8/potential-xss-vulnerability-in-ruby-on-rails-applications</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.12</high> </version> <version> <low>3.0.0</low> <high>3.0.9</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://weblog.rubyonrails.org/2011/6/8/potential-xss-vulnerability-in-ruby-on-rails-applications</Solutions> <cnnvd>CNNVD-201106-389</cnnvd> <name>Ruby on Rails のクロスサイトスクリプティング制限機能におけるクロスサイトスクリプティングの脆弱性</name> <Description>
</Description> </Vulnerability> <Vulnerability added="2017-05-02" gvid="ID106192" id="106192" modified="2020-01-03" published="2011-08-29" version="2.0">
<severity>5</severity>
<cvss>(AV:N/AC:L/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-2929</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/cbbbba6e4f7eaf61?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-September/065109.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-September/065212.html</id>
<id name="URL">http://weblog.rubyonrails.org/2011/8/16/ann-rails-3-1-0-rc6</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/17/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/19/11</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/20/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/13</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/14</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/5</id>
<id name="URL">https://bugzilla.redhat.com/show_bug.cgi?id=731432</id>
<id name="URL">https://github.com/rails/rails/commit/5f94b93279f6d0682fafb237c301302c107a9552</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.11</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
https://github.com/rails/rails/commit/5f94b93279f6d0682fafb237c301302c107a9552</Solutions> <cnnvd>CNNVD-201108-479</cnnvd> <name>Ruby on Rails のテンプレート選択機能における任意のビューを表示される脆弱性</name> <Description>
</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106193" id="106193" modified="2020-01-03" published="2011-08-29" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') (CVE-2011-2930)</name>
<severity>8</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Database</tag>
<tag>Remote Execution</tag>
<tag>Ruby on Rails</tag>
<tag>SQL Injection</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-2930</id>
<id name="DEBIAN">DSA-2301</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/b1a85d36b0f9dd30?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-September/065212.html</id>
<id name="URL">http://weblog.rubyonrails.org/2011/8/16/ann-rails-3-1-0-rc6</id>
<id name="URL">http://www.debian.org/security/2011/dsa-2301</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/17/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/19/11</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/20/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/13</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/14</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/5</id>
<id name="URL">https://bugzilla.redhat.com/show_bug.cgi?id=731438</id>
<id name="URL">https://github.com/rails/rails/commit/8a39f411dc3c806422785b1f4d5c7c9d58e4bf85</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.13</high> </version> <version> <low>3.0.0</low> <high>3.0.11</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
https://github.com/rails/rails/commit/8a39f411dc3c806422785b1f4d5c7c9d58e4bf85</Solutions> <cnnvd>CNNVD-201108-480</cnnvd> <Description>Multiple SQL injection vulnerabilities in the quote_table_name method in the ActiveRecord adapters in activerecord/lib/active_record/connection_adapters/ in Ruby on Rails before 2.3.13, 3.0.x before 3.0.10, and 3.1.x before 3.1.0.rc5 allow remote attackers to execute arbitrary SQL commands via a crafted column name.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106194" id="106194" modified="2020-01-03" published="2011-08-29" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (CVE-2011-2931)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-2931</id>
<id name="DEBIAN">DSA-2301</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/fd41ab62966e0fd1?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-September/065109.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-September/065137.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-September/065212.html</id>
<id name="URL">http://secunia.com/advisories/45921</id>
<id name="URL">http://weblog.rubyonrails.org/2011/8/16/ann-rails-3-1-0-rc6</id>
<id name="URL">http://www.debian.org/security/2011/dsa-2301</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/17/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/19/11</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/20/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/13</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/14</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/5</id>
<id name="URL">https://bugzilla.redhat.com/show_bug.cgi?id=731436</id>
<id name="URL">https://github.com/rails/rails/commit/586a944ddd4d03e66dea1093306147594748037a</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.13</high> </version> <version> <low>3.0.0</low> <high>3.0.11</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
https://github.com/rails/rails/commit/586a944ddd4d03e66dea1093306147594748037a</Solutions> <cnnvd>CNNVD-201108-481</cnnvd> <Description>Cross-site scripting (XSS) vulnerability in the strip_tags helper in actionpack/lib/action_controller/vendor/html-scanner/html/node.rb in Ruby on Rails before 2.3.13, 3.0.x before 3.0.10, and 3.1.x before 3.1.0.rc5 allows remote attackers to inject arbitrary web script or HTML via a tag with an invalid name.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106195" id="106195" modified="2020-01-03" published="2011-08-29" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (CVE-2011-2932)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-2932</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/f1d2749773db9f21?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-September/065114.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-September/065189.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-September/065212.html</id>
<id name="URL">http://secunia.com/advisories/45917</id>
<id name="URL">http://weblog.rubyonrails.org/2011/8/16/ann-rails-3-1-0-rc6</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/17/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/19/11</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/20/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/13</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/14</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/5</id>
<id name="URL">https://bugzilla.redhat.com/show_bug.cgi?id=731435</id>
<id name="URL">https://github.com/rails/rails/commit/bfc432574d0b141fd7fe759edfe9b6771dd306bd</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.13</high> </version> <version> <low>3.0.0</low> <high>3.0.11</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> <version> <low>3.1.0</low> <high>3.1.0</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
https://github.com/rails/rails/commit/bfc432574d0b141fd7fe759edfe9b6771dd306bd</Solutions> <cnnvd>CNNVD-201108-482</cnnvd> <Description>Cross-site scripting (XSS) vulnerability in activesupport/lib/active_support/core_ext/string/output_safety.rb in Ruby on Rails 2.x before 2.3.13, 3.0.x before 3.0.10, and 3.1.x before 3.1.0.rc5 allows remote attackers to inject arbitrary web script or HTML via a malformed Unicode string, related to a "UTF-8 escaping vulnerability."</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106196" id="106196" modified="2020-01-03" published="2011-08-29" version="2.0">
<name>Ruby on Rails: Improper Control of Generation of Code ('Code Injection') (CVE-2011-3186)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-3186</id>
<id name="DEBIAN">DSA-2301</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/bbe342e43abaa78c?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2011-September/065137.html</id>
<id name="URL">http://secunia.com/advisories/45921</id>
<id name="URL">http://www.debian.org/security/2011/dsa-2301</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/17/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/19/11</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/20/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/13</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/14</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/5</id>
<id name="URL">https://bugzilla.redhat.com/show_bug.cgi?id=732156</id>
<id name="URL">https://github.com/rails/rails/commit/11dafeaa7533be26441a63618be93a03869c83a9</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.3.2</low> <high>2.3.13</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
https://github.com/rails/rails/commit/11dafeaa7533be26441a63618be93a03869c83a9</Solutions> <cnnvd>CNNVD-201108-483</cnnvd> <Description>CRLF injection vulnerability in actionpack/lib/action_controller/response.rb in Ruby on Rails 2.3.x before 2.3.13 allows remote attackers to inject arbitrary HTTP headers and conduct HTTP response splitting attacks via the Content-Type header.</Description> </Vulnerability> <Vulnerability added="2017-05-02" gvid="ID106197" id="106197" modified="2020-01-03" published="2011-08-29" version="2.0">
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-3187</id>
<id name="URL">http://archives.neohapsis.com/archives/fulldisclosure/2011-02/0337.html</id>
<id name="URL">http://webservsec.blogspot.com/2011/02/ruby-on-rails-vulnerability.html</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/17/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/19/11</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/20/1</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/13</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/14</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2011/08/22/5</id>
<id name="URL">https://bugzilla.novell.com/show_bug.cgi?id=673010</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.5</low> <high>3.0.5</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
https://bugzilla.novell.com/show_bug.cgi?id=673010</Solutions> <cnnvd>CNNVD-201108-484</cnnvd> <name>Ruby on Rails の to_s メソッドにおける任意のテキストをログファイルに挿入される脆弱性</name> <Description>
</Description> </Vulnerability> <Vulnerability added="2017-05-02" gvid="ID106198" id="106198" modified="2020-01-03" published="2011-11-28" version="2.0">
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">50722</id>
<id name="CVE">CVE-2011-4319</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/browse_thread/thread/2b61d70fb73c7cc5?pli=1</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/c65c24fbc4b6dd82?dmode=source&amp;output=gplain</id>
<id name="URL">http://openwall.com/lists/oss-security/2011/11/18/8</id>
<id name="URL">http://osvdb.org/77199</id>
<id name="URL">http://weblog.rubyonrails.org/2011/11/18/rails-3-0-11-has-been-released</id>
<id name="URL">http://weblog.rubyonrails.org/2011/11/18/rails-3-1-2-has-been-released</id>
<id name="URL">http://www.securityfocus.com/bid/50722</id>
<id name="URL">http://www.securitytracker.com/id?1026342</id>
<id name="URL">https://exchange.xforce.ibmcloud.com/vulnerabilities/71364</id>
<id name="XF">71364</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>2.3.2</low> <high>2.3.13</high> </version> <version> <low>3.0.0</low> <high>3.0.11</high> </version> <version> <low>3.1.0</low> <high>3.1.1</high> </version> <version> <low>3.1.0</low> <high>3.1.1</high> </version> <version> <low>3.1.0</low> <high>3.1.1</high> </version> <version> <low>3.1.0</low> <high>3.1.1</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://weblog.rubyonrails.org/2011/11/18/rails-3-1-2-has-been-released</Solutions> <cnnvd>CNNVD-201111-455</cnnvd> <name>Ruby on Rails におけるクロスサイトスクリプティングの脆弱性</name> <Description>
</Description> </Vulnerability> <Vulnerability added="2017-05-02" gvid="ID106199" id="106199" modified="2020-01-03" published="2012-03-13" version="2.0">
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-1098</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/1c2e01a5e42722c9?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2012-March/075675.html</id>
<id name="URL">http://weblog.rubyonrails.org/2012/3/1/ann-rails-3-0-12-has-been-released</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2012/03/02/6</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2012/03/03/1</id>
<id name="URL">https://bugzilla.redhat.com/show_bug.cgi?id=799275</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.13</high> </version> <version> <low>3.1.0</low> <high>3.1.5</high> </version> <version> <low>3.2.0</low> <high>3.2.2</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://weblog.rubyonrails.org/2012/3/1/ann-rails-3-0-12-has-been-released/</Solutions> <cnnvd>CNNVD-201203-239</cnnvd> <name>Ruby on Rails におけるクロスサイトスクリプティングの脆弱性</name> <Description>
</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106200" id="106200" modified="2020-01-03" published="2012-03-13" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (CVE-2012-1099)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-1099</id>
<id name="DEBIAN">DSA-2466</id>
<id name="URL">http://groups.google.com/group/rubyonrails-security/msg/6fca4f5c47705488?dmode=source&amp;output=gplain</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2012-March/075675.html</id>
<id name="URL">http://lists.fedoraproject.org/pipermail/package-announce/2012-March/075740.html</id>
<id name="URL">http://weblog.rubyonrails.org/2012/3/1/ann-rails-3-0-12-has-been-released</id>
<id name="URL">http://www.debian.org/security/2012/dsa-2466</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2012/03/02/6</id>
<id name="URL">http://www.openwall.com/lists/oss-security/2012/03/03/1</id>
<id name="URL">https://bugzilla.redhat.com/show_bug.cgi?id=799276</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.13</high> </version> <version> <low>3.1.0</low> <high>3.1.5</high> </version> <version> <low>3.2.0</low> <high>3.2.2</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://weblog.rubyonrails.org/2012/3/1/ann-rails-3-0-12-has-been-released/</Solutions> <cnnvd>CNNVD-201203-240</cnnvd> <Description>Cross-site scripting (XSS) vulnerability in actionpack/lib/action_view/helpers/form_options_helper.rb in the select helper in Ruby on Rails 3.0.x before 3.0.12, 3.1.x before 3.1.4, and 3.2.x before 3.2.2 allows remote attackers to inject arbitrary web script or HTML via vectors involving certain generation of OPTION elements within SELECT elements.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106201" id="106201" modified="2020-01-03" published="2012-06-22" version="2.0">
<name>Ruby on Rails: Permissions, Privileges, and Access Controls (CVE-2012-2660)</name>
<severity>6</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-2660</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00002.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00014.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00016.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00017.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-updates/2012-08/msg00046.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/d890f8d58b5fbf32?dmode=source&amp;output=gplain</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.14</high> </version> <version> <low>3.1.0</low> <high>3.1.6</high> </version> <version> <low>3.2.0</low> <high>3.2.4</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://rubyonrails.org/</Solutions> <cnnvd>CNNVD-201206-025</cnnvd> <Description>actionpack/lib/action_dispatch/http/request.rb in Ruby on Rails before 3.0.13, 3.1.x before 3.1.5, and 3.2.x before 3.2.4 does not properly consider differences in parameter handling between the Active Record component and the Rack interface, which allows remote attackers to bypass intended database-query restrictions and perform NULL checks via a crafted request, as demonstrated by certain "[nil]" values, a related issue to CVE-2012-2694.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106202" id="106202" modified="2020-01-03" published="2012-06-22" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') (CVE-2012-2661)</name>
<severity>5</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Database</tag>
<tag>Ruby on Rails</tag>
<tag>SQL Injection</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-2661</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00014.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00016.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-updates/2012-08/msg00046.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/fc2da6c627fc92df?dmode=source&amp;output=gplain</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.14</high> </version> <version> <low>3.1.0</low> <high>3.1.6</high> </version> <version> <low>3.2.0</low> <high>3.2.4</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://rubyonrails.org/</Solutions> <cnnvd>CNNVD-201205-559</cnnvd> <Description>The Active Record component in Ruby on Rails 3.0.x before 3.0.13, 3.1.x before 3.1.5, and 3.2.x before 3.2.4 does not properly implement the passing of request data to a where method in an ActiveRecord class, which allows remote attackers to conduct certain SQL injection attacks via nested query parameters that leverage unintended recursion, a related issue to CVE-2012-2695.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106203" id="106203" modified="2020-01-03" published="2012-06-22" version="2.0">
<name>Ruby on Rails: Permissions, Privileges, and Access Controls (CVE-2012-2694)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-2694</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00002.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00014.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00016.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00017.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-updates/2012-08/msg00046.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/e2d3a87f2c211def?dmode=source&amp;output=gplain</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.14</high> </version> <version> <low>3.1.0</low> <high>3.1.6</high> </version> <version> <low>3.2.0</low> <high>3.2.5</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://rubyonrails.org/</Solutions> <cnnvd>CNNVD-201206-197</cnnvd> <Description>actionpack/lib/action_dispatch/http/request.rb in Ruby on Rails before 3.0.14, 3.1.x before 3.1.6, and 3.2.x before 3.2.6 does not properly consider differences in parameter handling between the Active Record component and the Rack interface, which allows remote attackers to bypass intended database-query restrictions and perform NULL checks via a crafted request, as demonstrated by certain "['xyz', nil]" values, a related issue to CVE-2012-2660.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106204" id="106204" modified="2020-01-03" published="2012-06-22" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') (CVE-2012-2695)</name>
<severity>8</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Database</tag>
<tag>Ruby on Rails</tag>
<tag>SQL Injection</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-2695</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00002.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00014.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-security-announce/2012-08/msg00016.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-updates/2012-08/msg00046.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/aee3413fb038bf56?dmode=source&amp;output=gplain</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.14</high> </version> <version> <low>3.1.0</low> <high>3.1.6</high> </version> <version> <low>3.2.0</low> <high>3.2.5</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://rubyonrails.org/</Solutions> <cnnvd>CNNVD-201206-198</cnnvd> <Description>The Active Record component in Ruby on Rails before 3.0.14, 3.1.x before 3.1.6, and 3.2.x before 3.2.6 does not properly implement the passing of request data to a where method in an ActiveRecord class, which allows remote attackers to conduct certain SQL injection attacks via nested query parameters that leverage improper handling of nested hashes, a related issue to CVE-2012-2661.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106205" id="106205" modified="2020-01-03" published="2012-08-08" version="2.0">
<name>Ruby on Rails: Improper Authentication (CVE-2012-3424)</name>
<severity>5</severity>
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:P)</cvss>
<Tags>
<tag>Denial of Service</tag>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-3424</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="URL">http://lists.opensuse.org/opensuse-updates/2012-08/msg00046.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">http://weblog.rubyonrails.org/2012/7/26/ann-rails-3-2-7-has-been-released/</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/244d32f2fa25147d?hl=en&amp;dmode=source&amp;output=gplain</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.15</high> </version> <version> <low>3.1.0</low> <high>3.1.7</high> </version> <version> <low>3.2.0</low> <high>3.2.6</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://weblog.rubyonrails.org/2012/7/26/ann-rails-3-2-7-has-been-released/</Solutions> <cnnvd>CNNVD-201207-580</cnnvd> <Description>The decode_credentials method in actionpack/lib/action_controller/metal/http_authentication.rb in Ruby on Rails 3.x before 3.0.16, 3.1.x before 3.1.7, and 3.2.x before 3.2.7 converts Digest Authentication strings to symbols, which allows remote attackers to cause a denial of service by leveraging access to an application that uses a with_http_digest helper method, as demonstrated by the authenticate_or_request_with_http_digest method.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106206" id="106206" modified="2020-01-03" published="2012-08-10" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (CVE-2012-3463)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-3463</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">http://weblog.rubyonrails.org/2012/8/9/ann-rails-3-2-8-has-been-released/</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/961e18e514527078?dmode=source&amp;output=gplain</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.17</high> </version> <version> <low>3.1.0</low> <high>3.1.8</high> </version> <version> <low>3.2.0</low> <high>3.2.7</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.rubyonrails.com/</Solutions> <cnnvd>CNNVD-201208-135</cnnvd> <Description>Cross-site scripting (XSS) vulnerability in actionpack/lib/action_view/helpers/form_tag_helper.rb in Ruby on Rails 3.x before 3.0.17, 3.1.x before 3.1.8, and 3.2.x before 3.2.8 allows remote attackers to inject arbitrary web script or HTML via the prompt field to the select_tag helper.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106207" id="106207" modified="2020-01-03" published="2012-08-10" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (CVE-2012-3464)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-3464</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">http://secunia.com/advisories/50694</id>
<id name="URL">http://weblog.rubyonrails.org/2012/8/9/ann-rails-3-2-8-has-been-released/</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/8f1bbe1cef8c6caf?dmode=source&amp;output=gplain</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>0.9.1</low> <high>0.9.5</high> </version> <version> <low>0.10.0</low> <high>0.10.2</high> </version> <version> <low>0.11.0</low> <high>0.11.2</high> </version> <version> <low>0.12.0</low> <high>0.12.2</high> </version> <version> <low>0.13.0</low> <high>0.13.2</high> </version> <version> <low>0.14.1</low> <high>0.14.5</high> </version> <version> <low>1.0.0</low> <high>1.0.1</high> </version> <version> <low>1.1.0</low> <high>1.1.7</high> </version> <version> <low>1.2.0</low> <high>1.2.7</high> </version> <version> <low>1.9.5</low> <high>1.9.6</high> </version> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.13</high> </version> <version> <low>3.0.0</low> <high>3.0.15</high> </version> <version> <low>3.1.0</low> <high>3.1.8</high> </version> <version> <low>3.2.0</low> <high>3.2.7</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.rubyonrails.com/</Solutions> <cnnvd>CNNVD-201208-136</cnnvd> <Description>Cross-site scripting (XSS) vulnerability in activesupport/lib/active_support/core_ext/string/output_safety.rb in Ruby on Rails before 3.0.17, 3.1.x before 3.1.8, and 3.2.x before 3.2.8 might allow remote attackers to inject arbitrary web script or HTML via vectors involving a ' (quote) character.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106208" id="106208" modified="2020-01-03" published="2012-08-10" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (CVE-2012-3465)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-3465</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">http://secunia.com/advisories/50694</id>
<id name="URL">http://weblog.rubyonrails.org/2012/8/9/ann-rails-3-2-8-has-been-released/</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/7fbb5392d4d282b5?dmode=source&amp;output=gplain</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>0.9.1</low> <high>0.9.5</high> </version> <version> <low>0.10.0</low> <high>0.10.2</high> </version> <version> <low>0.11.0</low> <high>0.11.2</high> </version> <version> <low>0.12.0</low> <high>0.12.2</high> </version> <version> <low>0.13.0</low> <high>0.13.2</high> </version> <version> <low>0.14.1</low> <high>0.14.5</high> </version> <version> <low>1.0.0</low> <high>1.0.1</high> </version> <version> <low>1.1.0</low> <high>1.1.7</high> </version> <version> <low>1.2.0</low> <high>1.2.7</high> </version> <version> <low>1.9.5</low> <high>1.9.6</high> </version> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.13</high> </version> <version> <low>3.0.0</low> <high>3.0.15</high> </version> <version> <low>3.1.0</low> <high>3.1.8</high> </version> <version> <low>3.2.0</low> <high>3.2.7</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.rubyonrails.com/</Solutions> <cnnvd>CNNVD-201208-137</cnnvd> <Description>Cross-site scripting (XSS) vulnerability in actionpack/lib/action_view/helpers/sanitize_helper.rb in the strip_tags helper in Ruby on Rails before 3.0.17, 3.1.x before 3.1.8, and 3.2.x before 3.2.8 allows remote attackers to inject arbitrary web script or HTML via malformed HTML markup.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106209" id="106209" modified="2020-01-03" published="2013-01-04" version="2.0">
<name>Ruby on Rails: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') (CVE-2012-6496)</name>
<severity>8</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Database</tag>
<tag>Remote Execution</tag>
<tag>Ruby on Rails</tag>
<tag>SQL Injection</tag>
</Tags>
<AlternateIds>
<id name="BID">57084</id>
<id name="CVE">CVE-2012-6496</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="REDHAT">RHSA-2013:0155</id>
<id name="REDHAT">RHSA-2013:0220</id>
<id name="REDHAT">RHSA-2013:0544</id>
<id name="URL">http://blog.phusion.nl/2013/01/03/rails-sql-injection-vulnerability-hold-your-horses-here-are-the-facts/</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0155.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0220.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0544.html</id>
<id name="URL">http://security.gentoo.org/glsa/glsa-201401-22.xml</id>
<id name="URL">http://www.securityfocus.com/bid/57084</id>
<id name="URL">https://bugzilla.redhat.com/show_bug.cgi?id=889649</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/23daa048baf28b64?dmode=source&amp;output=gplain</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>3.0.0</low> <high>3.0.17</high> </version> <version> <low>3.1.0</low> <high>3.1.9</high> </version> <version> <low>3.2.0</low> <high>3.2.9</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://blog.phusion.nl/2013/01/03/rails-sql-injection-vulnerability-hold-your-horses-here-are-the-facts/</Solutions> <cnnvd>CNNVD-201301-062</cnnvd> <Description>SQL injection vulnerability in the Active Record component in Ruby on Rails before 3.0.18, 3.1.x before 3.1.9, and 3.2.x before 3.2.10 allows remote attackers to execute arbitrary SQL commands via a crafted request that leverages incorrect behavior of dynamic finders in applications that can use unexpected data types in certain find_by_ method calls.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106210" id="106210" modified="2020-01-03" published="2013-01-04" version="2.0">
<name>Ruby on Rails: Information Exposure (CVE-2012-6497)</name>
<severity>5</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Database</tag>
<tag>Ruby on Rails</tag>
<tag>SQL Injection</tag>
</Tags>
<AlternateIds>
<id name="BID">57084</id>
<id name="CVE">CVE-2012-6497</id>
<id name="URL">http://blog.phusion.nl/2013/01/03/rails-sql-injection-vulnerability-hold-your-horses-here-are-the-facts/</id>
<id name="URL">http://openwall.com/lists/oss-security/2013/01/03/12</id>
<id name="URL">http://phenoelit.org/blog/archives/2012/12/21/let_me_github_that_for_you/index.html</id>
<id name="URL">http://www.securityfocus.com/bid/57084</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <version> <low>0.9.1</low> <high>0.9.5</high> </version> <version> <low>0.10.0</low> <high>0.10.2</high> </version> <version> <low>0.11.0</low> <high>0.11.2</high> </version> <version> <low>0.12.0</low> <high>0.12.2</high> </version> <version> <low>0.13.0</low> <high>0.13.2</high> </version> <version> <low>0.14.1</low> <high>0.14.5</high> </version> <version> <low>1.0.0</low> <high>1.0.1</high> </version> <version> <low>1.1.0</low> <high>1.1.7</high> </version> <version> <low>1.2.0</low> <high>1.2.7</high> </version> <version> <low>1.9.5</low> <high>1.9.6</high> </version> <version> <low>2.0.0</low> <high>2.0.5</high> </version> <version> <low>2.1.0</low> <high>2.1.3</high> </version> <version> <low>2.2.0</low> <high>2.2.3</high> </version> <version> <low>2.3.2</low> <high>2.3.13</high> </version> <version> <low>3.0.0</low> <high>3.0.18</high> </version> <version> <low>3.1.0</low> <high>3.1.9</high> </version> <version> <low>3.2.0</low> <high>3.2.8</high> </version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://blog.phusion.nl/2013/01/03/rails-sql-injection-vulnerability-hold-your-horses-here-are-the-facts/</Solutions> <cnnvd>CNNVD-201301-063</cnnvd> <Description>The Authlogic gem for Ruby on Rails, when used with certain versions before 3.2.10, makes potentially unsafe find_by_id method calls, which might allow remote attackers to conduct CVE-2012-6496 SQL injection attacks via a crafted parameter in environments that have a known secret_token value, as demonstrated by a value contained in secret_token.rb in an open-source product.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106148" id="106148" modified="2020-01-03" published="2013-01-13" version="2.0">
<name>Ruby on Rails: Permissions, Privileges, and Access Controls (CVE-2013-0155)</name>
<severity>6</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:N)</cvss>
<Tags>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="APPLE">APPLE-SA-2013-06-04-1</id>
<id name="CVE">CVE-2013-0155</id>
<id name="DEBIAN">DSA-2609</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="REDHAT">RHSA-2013:0155</id>
<id name="URL">http://ics-cert.us-cert.gov/advisories/ICSA-13-036-01A</id>
<id name="URL">http://lists.apple.com/archives/security-announce/2013/Jun/msg00000.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-updates/2013-12/msg00079.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-updates/2013-12/msg00081.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-updates/2013-12/msg00082.html</id>
<id name="URL">http://lists.opensuse.org/opensuse-updates/2014-01/msg00003.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0155.html</id>
<id name="URL">http://support.apple.com/kb/HT5784</id>
<id name="URL">http://www.debian.org/security/2013/dsa-2609</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/bc6f13dafe130ee9?dmode=source&amp;output=gplain</id>
<id name="URL">https://puppet.com/security/cve/cve-2013-0155</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <range>
<low inclusive="1">3.2.0</low>
<high inclusive="0">3.2.11</high>
</range> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.rubyonrails.com/</Solutions> <cnnvd>CNNVD-201301-212</cnnvd> <Description>Ruby on Rails 3.0.x before 3.0.19, 3.1.x before 3.1.10, and 3.2.x before 3.2.11 does not properly consider differences in parameter handling between the Active Record component and the JSON implementation, which allows remote attackers to bypass intended database-query restrictions and perform NULL checks or trigger missing WHERE clauses via a crafted request, as demonstrated by certain "[nil]" values, a related issue to CVE-2012-2660 and CVE-2012-2694.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106149" id="106149" modified="2020-01-03" published="2013-01-13" version="2.0">
<name>Ruby on Rails: Improper Input Validation (CVE-2013-0156)</name>
<severity>8</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Denial of Service</tag>
<tag>Remote Execution</tag>
<tag>Ruby on Rails</tag>
</Tags>
<AlternateIds>
<id name="APPLE">APPLE-SA-2013-03-14-1</id>
<id name="CERT-VN">380039</id>
<id name="CERT-VN">628463</id>
<id name="CVE">CVE-2013-0156</id>
<id name="DEBIAN">DSA-2604</id>
<id name="REDHAT">RHSA-2013:0153</id>
<id name="REDHAT">RHSA-2013:0154</id>
<id name="REDHAT">RHSA-2013:0155</id>
<id name="URL">http://ics-cert.us-cert.gov/advisories/ICSA-13-036-01A</id>
<id name="URL">http://lists.apple.com/archives/security-announce/2013/Mar/msg00002.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0153.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0154.html</id>
<id name="URL">http://rhn.redhat.com/errata/RHSA-2013-0155.html</id>
<id name="URL">http://weblog.rubyonrails.org/2013/1/28/Rails-3-0-20-and-2-3-16-have-been-released/</id>
<id name="URL">http://www.debian.org/security/2013/dsa-2604</id>
<id name="URL">http://www.fujitsu.com/global/support/software/security/products-f/sw-sv-rcve-ror201301e.html</id>
<id name="URL">http://www.insinuator.net/2013/01/rails-yaml/</id>
<id name="URL">http://www.kb.cert.org/vuls/id/380039</id>
<id name="URL">http://www.kb.cert.org/vuls/id/628463</id>
<id name="URL">https://community.rapid7.com/community/metasploit/blog/2013/01/09/serialization-mischief-in-ruby-land-cve-2013-0156</id>
<id name="URL">https://groups.google.com/group/rubyonrails-security/msg/c1432d0f8c70e89d?dmode=source&amp;output=gplain</id>
<id name="URL">https://puppet.com/security/cve/cve-2013-0156</id>
</AlternateIds>
<Check scope="node"> <NetworkService> <Product minCertainty="0.85" name="Ruby on Rails"> <range>
<low inclusive="1">3.2.0</low>
<high inclusive="0">3.2.11</high>
</range> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.rubyonrails.com/</Solutions> <cnnvd>CNNVD-201301-089</cnnvd> <Description>active_support/core_ext/hash/conversions.rb in Ruby on Rails before 2.3.15, 3.0.x before 3.0.19, 3.1.x before 3.1.10, and 3.2.x before 3.2.11 does not properly restrict casts of string values, which allows remote attackers to conduct object-injection attacks and execute arbitrary code, or cause a denial of service (memory and CPU consumption) involving nested XML entity references, by leveraging Action Pack support for (1) YAML type conversion or (2) Symbol type conversion.</Description> </Vulnerability> <Vulnerability added="2020-01-03" gvid="ID106211" id="106211" modified="2020-01-03" published="2013-02-13" version="2.0">
<name>Ruby on Rails: Permissions, Privileges, and Access Controls (CVE-2013-0276)</name>
<severity>4</severity>
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>