diff options
author | Repository QA checks <repo-qa-checks@gentoo.org> | 2016-04-14 08:02:22 +0000 |
---|---|---|
committer | Repository QA checks <repo-qa-checks@gentoo.org> | 2016-04-14 08:02:22 +0000 |
commit | 670f14532cf81a4e02d989bcb1254e1e48bcb4e4 (patch) | |
tree | 68ef72d9e802ec198860f87b94402f4ca3aae287 /metadata/glsa/glsa-201401-22.xml | |
parent | Add 'metadata/dtd/' from commit 'f8325042cda078a7fa29be8dcb9a092219332112' (diff) | |
parent | Add GLSA 201604-03 - Fix (diff) | |
download | gentoo-670f14532cf81a4e02d989bcb1254e1e48bcb4e4.tar.gz gentoo-670f14532cf81a4e02d989bcb1254e1e48bcb4e4.tar.bz2 gentoo-670f14532cf81a4e02d989bcb1254e1e48bcb4e4.zip |
Add 'metadata/glsa/' from commit 'aacff3c55fb52643f95332002ecdb7d439b8e4df'
git-subtree-dir: metadata/glsa
git-subtree-mainline: 3149e13ab601ad3a8f925656fd88567d2626de47
git-subtree-split: aacff3c55fb52643f95332002ecdb7d439b8e4df
Diffstat (limited to 'metadata/glsa/glsa-201401-22.xml')
-rw-r--r-- | metadata/glsa/glsa-201401-22.xml | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/metadata/glsa/glsa-201401-22.xml b/metadata/glsa/glsa-201401-22.xml new file mode 100644 index 000000000000..31b0de2609c9 --- /dev/null +++ b/metadata/glsa/glsa-201401-22.xml @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE glsa SYSTEM "http://www.gentoo.org/dtd/glsa.dtd"> +<glsa id="201401-22"> + <title>Active Record: SQL injection</title> + <synopsis>A vulnerability in Active Record could allow a remote attacker to + inject SQL commands. + </synopsis> + <product type="ebuild">activerecord</product> + <announced>January 21, 2014</announced> + <revised>January 21, 2014: 1</revised> + <bug>449826</bug> + <access>remote</access> + <affected> + <package name="dev-ruby/activerecord" auto="yes" arch="*"> + <unaffected range="ge">2.3.14-r1</unaffected> + <vulnerable range="lt">2.3.14-r1</vulnerable> + </package> + </affected> + <background> + <p>Active Record is a Ruby gem that allows database entries to be + manipulated as objects. + </p> + </background> + <description> + <p>An Active Record method parameter can mistakenly be used as a scope.</p> + </description> + <impact type="low"> + <p>A remote attacker could use specially crafted input to execute arbitrary + SQL statements. + </p> + </impact> + <workaround> + <p>The vulnerability may be mitigated by converting the input to an + expected value. This is accomplished by changing instances of + ‘Post.find_by_id(params[:id])’ in code using Active Record to + ‘Post.find_by_id(params[:id].to_s)’ + </p> + </workaround> + <resolution> + <p>All Active Record users should upgrade to the latest version:</p> + + <code> + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-ruby/activerecord-2.3.14-r1" + </code> + + </resolution> + <references> + <uri link="http://nvd.nist.gov/nvd.cfm?cvename=CVE-2012-6496">CVE-2012-6496</uri> + </references> + <metadata tag="requester" timestamp="Wed, 11 Dec 2013 02:08:41 +0000"> + creffett + </metadata> + <metadata tag="submitter" timestamp="Tue, 21 Jan 2014 20:21:31 +0000"> + creffett + </metadata> +</glsa> |