Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the easy-accordion-free domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the zoho-flow domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php on line 6114

Warning: Cannot modify header information - headers already sent by (output started at /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php:6114) in /home/mother99/jacksonholdingcompany.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php:6114) in /home/mother99/jacksonholdingcompany.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php:6114) in /home/mother99/jacksonholdingcompany.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php:6114) in /home/mother99/jacksonholdingcompany.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php:6114) in /home/mother99/jacksonholdingcompany.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php:6114) in /home/mother99/jacksonholdingcompany.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php:6114) in /home/mother99/jacksonholdingcompany.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home/mother99/jacksonholdingcompany.com/wp-includes/functions.php:6114) in /home/mother99/jacksonholdingcompany.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893
{"id":1483,"date":"2023-10-25T22:49:36","date_gmt":"2023-10-25T22:49:36","guid":{"rendered":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/"},"modified":"2023-10-25T22:49:36","modified_gmt":"2023-10-25T22:49:36","slug":"mystic-stealer-revisited-javier-vicente","status":"publish","type":"post","link":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/","title":{"rendered":"Mystic Stealer Revisited Javier Vicente"},"content":{"rendered":"

Post Content\u00a0\u00a0<\/p>\n

\u200b<\/p>\n

In the latest Mystic Stealer variant, all communications between the infected system and the C2 server are performed using HTTP POST requests. Unlike the previous variant that used RC4 to encrypt a custom binary TCP-based protocol, the latest variant does not implement any form of encryption. The data sent in the POST query is Base64 encoded, as shown below:<\/p>\n


\nPOST \/loghub\/master HTTP\/1.1
\nContent-Type: multipart\/form-data; boundary=<boundary>
\nContent-Length: NNN
\nUser-Agent: Mozilla\/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1)
\nHost: X.X.X.X
\nConnection: Keep-Alive
\nCache-Control: no-cache
\n–<boundary>
\nContent-Disposition: form-data; name=”<name>”
\nBASE64(<data>)
\n–<boundary> <\/p>\n

The response data from the server is also encoded in Base64. The response starts with \u201cOKrn\u201d and is followed by any data returned by the C2 server for the specific query.<\/p>\n


\nHTTP\/1.1 200 OK
\nServer: nginx\/1.18.0 (Ubuntu)
\nDate: Thu, 11 Sep 2023 HH:MM:SS GMT
\nContent-Type: text\/html; charset=utf-8
\nContent-Length: NNN
\nConnection: keep-alive
\nX-Frame-Options: DENY
\nX-Content-Type-Options: nosniff
\nReferrer-Policy: same-origin
\nBASE64(OK <rest of data for the specific command, if necessary>)<\/strong><\/p>\n

Registration<\/h3>\n

The infected system (bot) starts communication with the C2 server by sending a POST request with data containing a variable named hwid<\/em>, which includes a Base64 encoded bot ID generated based on information from the victim\u2019s machine. A second variable with the name build<\/em> contains the botnet ID, a value that is hardcoded in the binary of the malware. Once the C2 receives these initial two packets, the bot is registered.<\/p>\n


\nPOST \/loghub\/master HTTP\/1.1
\nContent-Type: multipart\/form-data; boundary=<boundary>
\nContent-Length: NNN
\nUser-Agent: Mozilla\/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1)
\nHost: X.X.X.X
\nConnection: Keep-Alive
\nCache-Control: no-cache
\n–<boundary>
\nContent-Disposition: form-data; name=”hwid”
\nBASE64(0123456789ABCDEF123456)<\/strong>
\n–<boundary>
\nContent-Disposition: form-data; name=”build”
\nBASE64(botnet_id)<\/strong>
\n–<boundary>–<\/p>\n

The C2 server generates and returns a session token (a 64 byte lowercase hexadecimal string) that will be used in subsequent packets, together with a set of binary flags that indicates which actions should be performed (take a screenshot, steal browser credentials, steal cryptocurrency wallets, etc).<\/p>\n


\nHTTP\/1.1 200 OK
\nServer: nginx\/1.18.0 (Ubuntu)
\nDate: Thu, 07 Sep 2023 HH:MM:SS GMT
\nContent-Type: text\/html; charset=utf-8
\nContent-Length: NNN
\nConnection: keep-alive
\nX-Frame-Options: DENY
\nX-Content-Type-Options: nosniff
\nReferrer-Policy: same-origin
\nBASE64(OK <token>1kpfopkelmapcoipemfendmdcghnegimn<\/strong><\/p>","protected":false},"excerpt":{"rendered":"

Post Content\u00a0\u00a0 \u200b In the latest Mystic Stealer variant, all […]<\/p>\n","protected":false},"author":0,"featured_media":1484,"comment_status":"","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"class_list":["post-1483","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-zenith-zscaler"],"yoast_head":"\nMystic Stealer Revisited Javier Vicente - JHC<\/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:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mystic Stealer Revisited Javier Vicente\" \/>\n<meta property=\"og:description\" content=\"Post Content\u00a0\u00a0 \u200b In the latest Mystic Stealer variant, all […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/\" \/>\n<meta property=\"og:site_name\" content=\"JHC\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-25T22:49:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/10\/zscaler-logo-og-dfaWLW.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"Mystic Stealer Revisited Javier Vicente\",\"datePublished\":\"2023-10-25T22:49:36+00:00\",\"dateModified\":\"2023-10-25T22:49:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/\"},\"wordCount\":390,\"publisher\":{\"@id\":\"https:\/\/jacksonholdingcompany.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/10\/zscaler-logo-og-dfaWLW.jpeg\",\"articleSection\":[\"Zenith: Zscaler\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/\",\"url\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/\",\"name\":\"Mystic Stealer Revisited Javier Vicente - JHC\",\"isPartOf\":{\"@id\":\"https:\/\/jacksonholdingcompany.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/10\/zscaler-logo-og-dfaWLW.jpeg\",\"datePublished\":\"2023-10-25T22:49:36+00:00\",\"dateModified\":\"2023-10-25T22:49:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#primaryimage\",\"url\":\"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/10\/zscaler-logo-og-dfaWLW.jpeg\",\"contentUrl\":\"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/10\/zscaler-logo-og-dfaWLW.jpeg\",\"width\":1200,\"height\":628},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jacksonholdingcompany.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mystic Stealer Revisited Javier Vicente\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jacksonholdingcompany.com\/#website\",\"url\":\"https:\/\/jacksonholdingcompany.com\/\",\"name\":\"JHC\",\"description\":\"Your Business Is Our Business\",\"publisher\":{\"@id\":\"https:\/\/jacksonholdingcompany.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jacksonholdingcompany.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jacksonholdingcompany.com\/#organization\",\"name\":\"JHC\",\"url\":\"https:\/\/jacksonholdingcompany.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jacksonholdingcompany.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/07\/cropped-cropped-jHC-white-500-\u00d7-200-px-1-1.png\",\"contentUrl\":\"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/07\/cropped-cropped-jHC-white-500-\u00d7-200-px-1-1.png\",\"width\":452,\"height\":149,\"caption\":\"JHC\"},\"image\":{\"@id\":\"https:\/\/jacksonholdingcompany.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Mystic Stealer Revisited Javier Vicente - JHC","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:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/","og_locale":"en_US","og_type":"article","og_title":"Mystic Stealer Revisited Javier Vicente","og_description":"Post Content\u00a0\u00a0 \u200b In the latest Mystic Stealer variant, all […]","og_url":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/","og_site_name":"JHC","article_published_time":"2023-10-25T22:49:36+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/10\/zscaler-logo-og-dfaWLW.jpeg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#article","isPartOf":{"@id":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/"},"author":{"name":"","@id":""},"headline":"Mystic Stealer Revisited Javier Vicente","datePublished":"2023-10-25T22:49:36+00:00","dateModified":"2023-10-25T22:49:36+00:00","mainEntityOfPage":{"@id":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/"},"wordCount":390,"publisher":{"@id":"https:\/\/jacksonholdingcompany.com\/#organization"},"image":{"@id":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#primaryimage"},"thumbnailUrl":"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/10\/zscaler-logo-og-dfaWLW.jpeg","articleSection":["Zenith: Zscaler"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/","url":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/","name":"Mystic Stealer Revisited Javier Vicente - JHC","isPartOf":{"@id":"https:\/\/jacksonholdingcompany.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#primaryimage"},"image":{"@id":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#primaryimage"},"thumbnailUrl":"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/10\/zscaler-logo-og-dfaWLW.jpeg","datePublished":"2023-10-25T22:49:36+00:00","dateModified":"2023-10-25T22:49:36+00:00","breadcrumb":{"@id":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#primaryimage","url":"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/10\/zscaler-logo-og-dfaWLW.jpeg","contentUrl":"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/10\/zscaler-logo-og-dfaWLW.jpeg","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"https:\/\/jacksonholdingcompany.com\/mystic-stealer-revisited-javier-vicente\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jacksonholdingcompany.com\/"},{"@type":"ListItem","position":2,"name":"Mystic Stealer Revisited Javier Vicente"}]},{"@type":"WebSite","@id":"https:\/\/jacksonholdingcompany.com\/#website","url":"https:\/\/jacksonholdingcompany.com\/","name":"JHC","description":"Your Business Is Our Business","publisher":{"@id":"https:\/\/jacksonholdingcompany.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jacksonholdingcompany.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jacksonholdingcompany.com\/#organization","name":"JHC","url":"https:\/\/jacksonholdingcompany.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jacksonholdingcompany.com\/#\/schema\/logo\/image\/","url":"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/07\/cropped-cropped-jHC-white-500-\u00d7-200-px-1-1.png","contentUrl":"https:\/\/jacksonholdingcompany.com\/wp-content\/uploads\/2023\/07\/cropped-cropped-jHC-white-500-\u00d7-200-px-1-1.png","width":452,"height":149,"caption":"JHC"},"image":{"@id":"https:\/\/jacksonholdingcompany.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/jacksonholdingcompany.com\/wp-json\/wp\/v2\/posts\/1483","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jacksonholdingcompany.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jacksonholdingcompany.com\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/jacksonholdingcompany.com\/wp-json\/wp\/v2\/comments?post=1483"}],"version-history":[{"count":0,"href":"https:\/\/jacksonholdingcompany.com\/wp-json\/wp\/v2\/posts\/1483\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jacksonholdingcompany.com\/wp-json\/wp\/v2\/media\/1484"}],"wp:attachment":[{"href":"https:\/\/jacksonholdingcompany.com\/wp-json\/wp\/v2\/media?parent=1483"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jacksonholdingcompany.com\/wp-json\/wp\/v2\/categories?post=1483"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jacksonholdingcompany.com\/wp-json\/wp\/v2\/tags?post=1483"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}