{"id":64425,"date":"2026-06-19T15:44:05","date_gmt":"2026-06-19T15:44:05","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=64425"},"modified":"2026-06-19T15:44:05","modified_gmt":"2026-06-19T15:44:05","slug":"quectel-cellular-modem-pivot-serial-at","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=64425","title":{"rendered":"Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-19T19:36:58&#8243;,&#8221;description&#8221;:&#8221;Opens a serial connection to a Quectel cellular modem and registers it as a &#8216;modem&#8217; session capable of network pivoting. The Quectel modems have a limited number of sockets available, configurable using MODEMSOCKETS. Once the session is established, it&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-19T19:03:20&#8243;,&#8221;modified&#8221;:&#8221;2026-06-19T19:03:20&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Quectel Cellular Modem Pivot (Serial AT)&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-SERVER-QUECTEL_MODEM-&#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\\nrequire &#8216;msf\/base\/sessions\/modem&#8217;\\nrequire &#8216;msf\/base\/sessions\/modem\/quectel&#8217;\\n\\nclass MetasploitModule \\u003c Msf::Auxiliary\\n  DEFAULT_MAX_CHUNK_SIZE = 1024 # bytes per QISEND chunk\\n  DEFAULT_PROMPT_TIMEOUT_MS = 5000 # wait for &#8216;\\u003e&#8217; after QISEND (ms)\\n  DEFAULT_ACK_TIMEOUT_MS = 8000 # wait for SEND OK\/FAIL (ms)\\n  DEFAULT_OPEN_TIMEOUT_MS = 30000 # wait for +QIOPEN URC (ms)\\n  DEFAULT_CMD_TIMEOUT_MS = 6000 # wait for AT command OK\/ERROR (ms)\\n\\n  # === v0.06.4 modem health \/ readiness defaults ===============================\\n  DEFAULT_STARTUP_OK_TIMEOUT_S = 0 # total seconds to wait for first AT OK (0 = no timeout)\\n  DEFAULT_STARTUP_OK_INTERVAL_MS = 1000  # delay between AT probes at startup (ms)\\n  DEFAULT_HEALTHCHECK_INTERVAL_S = 3     # seconds between AT probes at runtime\\n  DEFAULT_HEALTHCHECK_TIMEOUT_MS = 2000  # per-probe AT timeout (ms)\\n  DEFAULT_HEALTHCHECK_MAX_FAILS = 3 # consecutive failures before marking NOT READY\\n\\n  DEFAULT_MODEM_SOCKETS = 12 # SID pool size (0..N-1); Quectel Cell Module supports up to 12\\n\\n  # === Metasploit module proper ============================================\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Quectel Cellular Modem Pivot (Serial AT)&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          Opens a serial connection to a Quectel cellular modem and registers it as a &#8216;modem&#8217; session capable of network\\n          pivoting. The Quectel modems have a limited number of sockets available, configurable using MODEM_SOCKETS. Once\\n          the session is established, it can be routed through using the `route` command.\\n        },\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;Deral Heiland&#8217;,       # original SOCKS5 proxy module\\n          &#8216;Spencer McIntyre&#8217;     # native session refactor\\n        ],\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Notes&#8217; =\\u003e { &#8216;Stability&#8217; =\\u003e [], &#8216;Reliability&#8217; =\\u003e [], &#8216;SideEffects&#8217; =\\u003e [] }\\n      )\\n    )\\n\\n    register_options(\\n      [\\n        OptString.new(&#8216;SERIAL&#8217;, [ true, &#8216;Serial device for Quectel modem&#8217;, &#8216;\/dev\/ttyUSB0&#8217; ]),\\n        OptInt.new(&#8216;BAUD&#8217;, [ true, &#8216;Serial baud rate&#8217;, 115200 ]),\\n\\n        # Advanced performance knobs (tune as needed)\\n        OptInt.new(&#8216;MODEM_SOCKETS&#8217;, [ true, &#8216;Number of Quectel socket IDs (SID pool size)&#8217;, DEFAULT_MODEM_SOCKETS ]),\\n        OptInt.new(&#8216;MAX_CHUNK_SIZE&#8217;, [ true, &#8216;Bytes per AT+QISEND chunk&#8217;, DEFAULT_MAX_CHUNK_SIZE ]),\\n        OptInt.new(&#8216;PROMPT_TIMEOUT_MS&#8217;, [ true, \\&#8221;Timeout waiting for QISEND &#8216;\\u003e&#8217; prompt (ms)\\&#8221;, DEFAULT_PROMPT_TIMEOUT_MS ]),\\n        OptInt.new(&#8216;ACK_TIMEOUT_MS&#8217;, [ true, &#8216;Timeout waiting for SEND OK\/FAIL (ms)&#8217;, DEFAULT_ACK_TIMEOUT_MS ]),\\n        OptInt.new(&#8216;OPEN_TIMEOUT_MS&#8217;, [ true, &#8216;Timeout waiting for +QIOPEN URC (ms)&#8217;, DEFAULT_OPEN_TIMEOUT_MS ]),\\n        OptInt.new(&#8216;CMD_TIMEOUT_MS&#8217;, [ true, &#8216;Timeout waiting for AT command OK\/ERROR (ms)&#8217;, DEFAULT_CMD_TIMEOUT_MS ]),\\n\\n        # modem readiness \/ health watchdog\\n        OptInt.new(&#8216;STARTUP_OK_TIMEOUT_S&#8217;, [ true, &#8216;Startup: total seconds to wait for first AT OK (0 = no timeout)&#8217;, DEFAULT_STARTUP_OK_TIMEOUT_S ]),\\n        OptInt.new(&#8216;STARTUP_OK_INTERVAL_MS&#8217;, [ true, &#8216;Startup: delay between AT probes (ms)&#8217;, DEFAULT_STARTUP_OK_INTERVAL_MS ]),\\n        OptInt.new(&#8216;HEALTHCHECK_INTERVAL_S&#8217;, [ true, &#8216;Runtime: seconds between modem AT health probes&#8217;, DEFAULT_HEALTHCHECK_INTERVAL_S ]),\\n        OptInt.new(&#8216;HEALTHCHECK_TIMEOUT_MS&#8217;, [ true, &#8216;Runtime: AT health probe timeout (ms)&#8217;, DEFAULT_HEALTHCHECK_TIMEOUT_MS ]),\\n        OptInt.new(&#8216;HEALTHCHECK_MAX_FAILS&#8217;, [ true, &#8216;Runtime: consecutive AT probe failures before marking modem NOT READY&#8217;, DEFAULT_HEALTHCHECK_MAX_FAILS ])\\n      ]\\n    )\\n\\n    @modem = nil\\n    @cfg = {}\\n    @session_registered = false\\n  end\\n\\n  def setup\\n    super\\n    unless Msf::Sessions::Modem::Quectel::Driver.supported_platform?\\n      fail_with(Failure::BadConfig,\\n                \\&#8221;This module uses Linux-specific termios ioctls and cannot run on #{RUBY_PLATFORM}\\&#8221;)\\n    end\\n\\n    dev = datastore[&#8216;SERIAL&#8217;]\\n    baud = datastore[&#8216;BAUD&#8217;].to_i\\n\\n    # Build runtime config from datastore (keep everything in seconds\/bytes internally)\\n    @cfg = {\\n      modem_sockets: [datastore[&#8216;MODEM_SOCKETS&#8217;].to_i, 1].max,\\n      max_chunk_size: [datastore[&#8216;MAX_CHUNK_SIZE&#8217;].to_i, 1].max,\\n      prompt_timeout: [datastore[&#8216;PROMPT_TIMEOUT_MS&#8217;].to_i, 0].max \/ 1000.0,\\n      ack_timeout: [datastore[&#8216;ACK_TIMEOUT_MS&#8217;].to_i, 0].max \/ 1000.0,\\n      open_timeout: [datastore[&#8216;OPEN_TIMEOUT_MS&#8217;].to_i, 0].max \/ 1000.0,\\n      cmd_timeout: [datastore[&#8216;CMD_TIMEOUT_MS&#8217;].to_i, 0].max \/ 1000.0,\\n      startup_ok_timeout: [datastore[&#8216;STARTUP_OK_TIMEOUT_S&#8217;].to_i, 0].max,\\n      startup_ok_interval: [datastore[&#8216;STARTUP_OK_INTERVAL_MS&#8217;].to_i, 0].max \/ 1000.0,\\n      healthcheck_interval: [datastore[&#8216;HEALTHCHECK_INTERVAL_S&#8217;].to_i, 0].max,\\n      healthcheck_timeout: [datastore[&#8216;HEALTHCHECK_TIMEOUT_MS&#8217;].to_i, 0].max \/ 1000.0,\\n      healthcheck_max_fails: [datastore[&#8216;HEALTHCHECK_MAX_FAILS&#8217;].to_i, 1].max\\n    }\\n\\n    # Open the serial port and start the background reader thread.\\n    begin\\n      @modem = Msf::Sessions::Modem::Quectel::Driver.new(dev, baud, framework, @cfg)\\n    rescue ::Errno::ENOENT\\n      fail_with(Failure::BadConfig, \\&#8221;Serial device not found: #{dev}\\&#8221;)\\n    rescue ::Errno::EACCES\\n      fail_with(Failure::BadConfig, \\&#8221;Permission denied opening #{dev} &#8211; check that your user is in the &#8216;dialout&#8217; group\\&#8221;)\\n    rescue ::Errno::EBUSY\\n      fail_with(Failure::BadConfig, \\&#8221;#{dev} is busy &#8211; another process may have it open\\&#8221;)\\n    rescue ::Errno::EIO, ::Errno::ENXIO\\n      fail_with(Failure::Unreachable, \\&#8221;I\/O error on #{dev} &#8211; check the USB cable and modem power\\&#8221;)\\n    rescue ::Errno::ENOTTY\\n      fail_with(Failure::BadConfig, \\&#8221;#{dev} is not a serial port (ioctl TCGETS failed)\\&#8221;)\\n    rescue ::StandardError =\\u003e e\\n      fail_with(Failure::Unknown, \\&#8221;Failed to open serial port on #{dev}: #{e.class} #{e.message}\\&#8221;)\\n    end\\n\\n    # Poll AT until the modem is responsive.\\n    print_status(&#8216;Probing modem with AT until OK&#8230;&#8217;)\\n    begin\\n      @modem.startup_wait_for_ok(@cfg[:startup_ok_timeout], @cfg[:startup_ok_interval], @cfg[:healthcheck_timeout])\\n    rescue ::Rex::TimeoutError =\\u003e e\\n      fail_with(Failure::TimeoutExpired, e.message)\\n    rescue ::StandardError =\\u003e e\\n      fail_with(Failure::Unknown, \\&#8221;Modem startup probe failed: #{e.class} #{e.message}\\&#8221;)\\n    end\\n    print_good(&#8216;Modem is responding to AT commands.&#8217;)\\n\\n    # Best-effort wait for the RDY banner (already past it on a warm start).\\n    print_status(&#8216;Waiting briefly for RDY URC (best-effort)&#8230;&#8217;)\\n    @modem.wait_for_rdy(5)\\n\\n    # Disable echo so URC parsing is not confused by command echoes.\\n    begin\\n      @modem.send_at(&#8216;ATE0&#8217;, @cfg[:cmd_timeout])\\n    rescue ::StandardError =\\u003e e\\n      fail_with(Failure::Unknown, \\&#8221;Failed to disable echo (ATE0): #{e.class} #{e.message}\\&#8221;)\\n    end\\n\\n    # Close any leftover socket connections from a previous session (e.g. MSF\\n    # crashed without sending AT+QICLOSE). Errors are silently ignored &#8211; a SID\\n    # that is not open will return ERROR, which is expected.\\n    print_status(&#8216;Closing any leftover modem socket connections&#8230;&#8217;)\\n    (0&#8230;@cfg[:modem_sockets]).each do |sid|\\n      @modem.send_at(\\&#8221;AT+QICLOSE=#{sid},0\\&#8221;, @cfg[:cmd_timeout])\\n    rescue ::StandardError =\\u003e e\\n      nil\\n    end\\n\\n    # Start runtime health watchdog now that the modem is known-good.\\n    @modem.start_health_watchdog\\n  end\\n\\n  def cleanup\\n    # Only close the modem if the session was never registered.\\n    # Once the session takes ownership, it is responsible for\\n    # closing the modem via Msf::Sessions::Modem::Quectel#cleanup.\\n    @modem.close if @modem \\u0026\\u0026 !@session_registered\\n    super\\n  end\\n\\n  def run\\n    unless @modem.modem_ready?\\n      print_error(&#8216;Modem is not ready &#8211; check serial connection and power&#8217;)\\n      return\\n    end\\n\\n    sess = Msf::Sessions::Modem::Quectel.new(@modem)\\n    sess.set_from_exploit(self)\\n    framework.sessions.register(sess)\\n    # Transfer modem ownership to the session; cleanup must not close it now.\\n    @session_registered = true\\n    print_good(\\&#8221;Modem session #{sess.sid} opened (#{@cfg[:modem_sockets]} sockets, #{@cfg[:max_chunk_size]}B chunks)\\&#8221;)\\n    # Return immediately &#8211; the session runs independently of this module job.\\n  end\\n\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/auxiliary\/server\/quectel_modem.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\/auxiliary\/server\/quectel_modem\/&#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-06-19T19:36:58&#8243;,&#8221;description&#8221;:&#8221;Opens a serial connection to a Quectel cellular modem and registers it as a &#8216;modem&#8217; session capable of network pivoting. The Quectel modems have a&#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-64425","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>Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM- 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=64425\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-06-19T19:36:58&#8243;,&#8221;description&#8221;:&#8221;Opens a serial connection to a Quectel cellular modem and registers it as a &#8216;modem&#8217; session capable of network pivoting. The Quectel modems have a...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=64425\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-19T15:44:05+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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=64425#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=64425\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM-\",\"datePublished\":\"2026-06-19T15:44:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=64425\"},\"wordCount\":1435,\"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=64425#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=64425\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=64425\",\"name\":\"Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-06-19T15:44:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=64425#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=64425\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=64425#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM-\"}]},{\"@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":"Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM- 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=64425","og_locale":"en_US","og_type":"article","og_title":"Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-06-19T19:36:58&#8243;,&#8221;description&#8221;:&#8221;Opens a serial connection to a Quectel cellular modem and registers it as a &#8216;modem&#8217; session capable of network pivoting. The Quectel modems have a...","og_url":"https:\/\/zero.redgem.net\/?p=64425","og_site_name":"zero redgem","article_published_time":"2026-06-19T15:44:05+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=64425#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=64425"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM-","datePublished":"2026-06-19T15:44:05+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=64425"},"wordCount":1435,"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=64425#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=64425","url":"https:\/\/zero.redgem.net\/?p=64425","name":"Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-06-19T15:44:05+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=64425#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=64425"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=64425#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Quectel Cellular Modem Pivot (Serial AT)_MSF:AUXILIARY-SERVER-QUECTEL_MODEM-"}]},{"@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\/64425","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=64425"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/64425\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=64425"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=64425"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=64425"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}