{"id":40439,"date":"2026-02-11T08:43:58","date_gmt":"2026-02-11T08:43:58","guid":{"rendered":"http:\/\/localhost\/?p=40439"},"modified":"2026-02-11T08:43:58","modified_gmt":"2026-02-11T08:43:58","slug":"the-game-is-over-when-free-comes-at-too-high-a-price-what-we-know-about-renengine","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=40439","title":{"rendered":"The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-11T14:05:10&#8243;,&#8221;description&#8221;:&#8221;![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131733\/renengine-featured-image-990&#215;400.jpg)\\n\\nWe often describe cases of malware distribution under the guise of game cheats and pirated software. Sometimes such methods are used to spread complex malware that employs advanced techniques and sophisticated infection chains.\\n\\nIn February 2026, researchers from Howler Cell announced the discovery of a mass campaign distributing pirated games infected with a previously unknown family of malware. It turned out to be a loader called RenEngine, which was delivered to the device using a modified version of a Ren&#8217;Py engine-based game launcher. Kaspersky solutions detect the RenEngine loader as Trojan.Python.Agent.nb and HEUR:Trojan.Python.Agent.gen.\\n\\nHowever, this threat is not new. Our solutions began detecting the first samples of the RenEngine loader in March 2025, when it was used to distribute the Lumma stealer (Trojan-PSW.Win32.Lumma.gen).\\n\\nIn the ongoing incidents, ACR Stealer (Trojan-PSW.Win32.ACRstealer.gen) is being distributed as the final payload. We have been monitoring this campaign for a long time and will share some details in this article.\\n\\n## Incident analysis\\n\\n### Disguise as a visual novel\\n\\nLet&#8217;s look at the first incident we detected in March 2025. At that time, the attackers distributed the malware under the guise of a hacked game on a popular gaming web resource.\\n\\nThe website featured a game download page with two buttons: Free Download Now and Direct Download. Both buttons had the same functionality: they redirected users to the MEGA file-sharing service, where they were offered to download an archive with the \\&#8221;game.\\&#8221;  \\n\\n\\n![Game download page](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131833\/renengine-1.png)\\n\\nGame download page\\n\\nWhen the \\&#8221;game\\&#8221; was launched, the download process would stop at 100%. One might think that the game froze, but that was not the case \u2014 the \\&#8221;real\\&#8221; malicious code just started working.  \\n\\n\\n![Placeholder with the download screen](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131833\/renengine-2.png)\\n\\nPlaceholder with the download screen\\n\\n### \\&#8221;Game\\&#8221; source files analysis\\n\\n![The full infection chain](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131840\/renengine-3.png)\\n\\nThe full infection chain\\n\\nAfter analyzing the source files, we found Python scripts that initiate the initial device infection. These scripts imitate the endless loading of the game. In addition, they contain the `is_sandboxed` function for bypassing the sandbox and `xor_decrypt_file` for decrypting the malicious payload. Using the latter, the script decrypts the ZIP archive, unpacks its contents into the `.temp` directory, and launches the unpacked files.  \\n\\n\\n![Contents of the .temp directory](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131829\/renengine-4.png)\\n\\nContents of the .temp directory\\n\\nThere are five files in the `.temp` directory. The `DKsyVGUJ.exe` executable is not malicious. Its original name is `Ahnenblatt4.exe`, and it is a well-known legitimate application for organizing genealogical data. The `borlndmm.dll` library also does not contain malicious code; it implements the memory manager required to run the executable. Another library, `cc32290mt.dll`, contains a code snippet patched by attackers that intercepts control when the application is launched and deploys the first stage of the payload in the process memory.\\n\\n### HijackLoader\\n\\nThe `dbghelp.dll` system library is used as a \\&#8221;container\\&#8221; to launch the first stage of the payload. It is overwritten in memory with decrypted shellcode obtained from the `gayal.asp` file using the `cc32290mt.dll` library. The resulting payload is HijackLoader. This is a relatively new means of delivering and deploying malicious implants. A distinctive feature of this malware family is its modularity and configuration flexibility. HijackLoader was first detected and described in the summer of 2023. More detailed information about this loader is available to customers of the Kaspersky Intelligence Reporting Service.\\n\\nThe final payload can be delivered in two ways, depending on the configuration parameters of the malicious sample. The main HijackLoader `ti` module is used to launch and prepare the process for the final payload injection. In some cases, an additional module is also used, which is injected into an intermediate process launched by the main one. The code that performs the injection is the same in both cases.\\n\\nBefore creating a child process, the configuration parameters are encrypted using XOR and saved to the `%TEMP%` directory with a random name. The file name is written to the system environment variables.  \\n\\n\\n![Loading configuration parameters saved by the main module](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131836\/renengine-5.png)\\n\\nLoading configuration parameters saved by the main module\\n\\nIn the analyzed sample, the execution follows a longer path with an intermediate child process, cmd.exe. It is created in suspended mode by calling the auxiliary module `modCreateProcess`. Then, using the `ZwCreateSection` and `ZwMapViewOfSection` system API calls, the code of the same `dbghelp.dll` library is loaded into the address space of the process, after which it intercepts control.\\n\\nNext, the `ti` module, launched in the child process, reads the `hap.eml` file, from which it decrypts the second stage of HijackLoader. The module then loads the `pla.dll` system library and overwrites the beginning of its code section with the received payload, after which it transfers control to this library.  \\n\\n\\n![Payload decryption](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131833\/renengine-6.png)\\n\\nPayload decryption\\n\\nThe decrypted payload is an EXE file, and the configuration parameters are set to inject it into the `explorer.exe` child process. The payload is written to the memory of the child process in several stages:\\n\\n  1. First, the malicious payload is written to a temporary file on disk using the transaction mechanism provided by the Windows API. The payload is written in several stages and not in the order in which the data is stored in the file. The `MZ` signature, with which any PE file begins, is written last with a delay.  \\n\\n\\n![Writing the payload to a temporary file](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131836\/renengine-7.png)\\n\\nWriting the payload to a temporary file\\n\\n  2. After that, the payload is loaded from the temporary file into the address space of the current process using the `ZwCreateSection` call. The transaction that wrote to the file is rolled back, thus deleting the temporary file with the payload.\\n  3. Next, the sample uses the `modCreateProcess` module to launch a child process `explorer.exe` and injects the payload into it by creating a shared memory region with the `ZwMapViewOfSection` call.  \\n\\n\\n![Payload injection into the child process](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131833\/renengine-8.png)\\n\\nPayload injection into the child process\\n\\nAnother HijackLoader module, `rshell`, is used to launch the shellcode. Its contents are also injected into the child process, replacing the code located at its entry point.  \\n\\n\\n![The rshell module injection](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131834\/renengine-9.png)\\n\\nThe rshell module injection\\n\\n  4. The last step performed by the parent process is starting a thread in the child process by calling `ZwResumeThread`. After that, the thread starts executing the `rshell` module code placed at the child process entry point, and the parent process terminates. \\n\\nThe `rshell` module prepares the final malicious payload. Once it has finished, it transfers control to another HijackLoader module called `ESAL`. It replaces the contents of `rshell` with zeros using the `memset` function and launches the final payload, which is a stealer from the Lumma family (Trojan-PSW.Win32.Lumma).\\n\\n\\n\\nIn addition to the modules described above, this HijackLoader sample contains the following modules, which were used at intermediate stages: `COPYLIST`, `modTask`, `modUAC`, `modWriteFile`.  \\nKaspersky solutions detect HijackLoader with the verdicts Trojan.Win32.Penguish and Trojan.Win32.DllHijacker.\\n\\n## Not only games\\n\\nIn addition to gaming sites, we found that attackers created dozens of different web resources to distribute RenEngine under the guise of pirated software. On one such site, for example, users can supposedly download an activated version of the CorelDRAW graphics editor.  \\n\\n\\n![Distribution of RenEngine under the guise of the CorelDRAW pirated version](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131837\/renengine-10.png)\\n\\nDistribution of RenEngine under the guise of the CorelDRAW pirated version\\n\\nWhen the user clicks the Descargar Ahora (\\&#8221;Download Now\\&#8221;) button, they are redirected several times to other malicious websites, after which an infected archive is downloaded to their device.  \\n\\n\\n![File storage imitations](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131837\/renengine-11.png)\\n\\nFile storage imitations\\n\\n## Distribution\\n\\nAccording to our data, since March 2025, RenEngine has affected users in the following countries:\\n\\n_Distribution of incidents involving the RenEngine loader by country (TOP 20), February 2026 (download)_\\n\\nThe distribution pattern of this loader suggests that the attacks are not targeted. At the time of publication, we have recorded the highest number of incidents in Russia, Brazil, Turkey, Spain, and Germany.\\n\\n## Recommendations for protection\\n\\nThe format of game archives is generally not standardized and is unique for each game. This means that there is no universal algorithm for unpacking and checking the contents of game archives. If the game engine does not check the integrity and authenticity of executable resources and scripts, such an archive can become a repository for malware if modified by attackers. Despite this, Kaspersky Premium protects against such threats with its Behavior Detection component.\\n\\nThe distribution of malware under the guise of pirated software and hacked games is not a new tactic. It is relatively easy to avoid infection by the malware described in this article \u2014 simply install games and programs from trusted sites. In addition, it is important for gamers to remember the need to install specialized security solutions. This ongoing campaign employs the Lumma and ACR stylers, and Vidar was also found \u2014 none of these are new threats, but rather long-known malware. This means that modern antivirus technologies can detect even modified versions of the above-mentioned stealers and their alternatives, preventing further infection.\\n\\n## Indicators of compromise\\n\\n12EC3516889887E7BCF75D7345E3207A \u2013 setup_game_8246.zip  \\nD3CF36C37402D05F1B7AA2C444DC211A \u2013 __init.py__  \\n1E0BF40895673FCD96A8EA3DDFAB0AE2 \u2013 cc32290mt.dll  \\n2E70ECA2191C79AD15DA2D4C25EB66B9 \u2013 Lumma Stealer\\n\\nhxxps:\/\/hentakugames[.]com\/country-bumpkin\/  \\nhxxps:\/\/dodi-repacks[.]site  \\nhxxps:\/\/artistapirata[.]fit  \\nhxxps:\/\/artistapirata[.]vip  \\nhxxps:\/\/awdescargas[.]pro  \\nhxxps:\/\/fullprogramlarindir[.]me  \\nhxxps:\/\/gamesleech[.]com  \\nhxxps:\/\/parapcc[.]com  \\nhxxps:\/\/saglamindir[.]vip  \\nhxxps:\/\/zdescargas[.]pro  \\nhxxps:\/\/filedownloads[.]store  \\nhxxps:\/\/go[.]zovo[.]ink\\n\\nLumma C2  \\nhxxps:\/\/steamcommunity[.]com\/profiles\/76561199822375128  \\nhxxps:\/\/localfxement[.]live  \\nhxxps:\/\/explorebieology[.]run  \\nhxxps:\/\/agroecologyguide[.]digital  \\nhxxps:\/\/moderzysics[.]top  \\nhxxps:\/\/seedsxouts[.]shop  \\nhxxps:\/\/codxefusion[.]top  \\nhxxps:\/\/farfinable[.]top  \\nhxxps:\/\/techspherxe[.]top  \\nhxxps:\/\/cropcircleforum[.]today&#8221;,&#8221;published&#8221;:&#8221;2026-02-11T14:00:38&#8243;,&#8221;modified&#8221;:&#8221;2026-02-11T14:00:38&#8243;,&#8221;type&#8221;:&#8221;securelist&#8221;,&#8221;title&#8221;:&#8221;The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36&#8243;,&#8221;bulletinFamily&#8221;:&#8221;blog&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#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:\/\/securelist.com\/renengine-campaign-with-hijackloader-lumma-and-acr-stealer\/118891\/&#8221;,&#8221;category_name&#8221;:&#8221;News&#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-02-11T14:05:10&#8243;,&#8221;description&#8221;:&#8221;![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131733\/renengine-featured-image-990&#215;400.jpg)\\n\\nWe often describe cases of malware distribution under the guise of game cheats and pirated software. Sometimes such methods are used to spread complex malware&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[6,8,12,13,33,136,7,11,5],"class_list":["post-40439","post","type-post","status-publish","format-standard","hentry","category-category_news","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-securelist","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>The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36 - 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=40439\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-11T14:05:10&#8243;,&#8221;description&#8221;:&#8221;![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131733\/renengine-featured-image-990&#215;400.jpg)nnWe often describe cases of malware distribution under the guise of game cheats and pirated software. Sometimes such methods are used to spread complex malware...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=40439\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-11T08:43:58+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=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40439#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40439\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36\",\"datePublished\":\"2026-02-11T08:43:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40439\"},\"wordCount\":1951,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"securelist\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_news\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=40439#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40439\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40439\",\"name\":\"The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-11T08:43:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40439#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=40439\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40439#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36\"}]},{\"@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":"The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36 - 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=40439","og_locale":"en_US","og_type":"article","og_title":"The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-11T14:05:10&#8243;,&#8221;description&#8221;:&#8221;![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2026\/02\/11131733\/renengine-featured-image-990&#215;400.jpg)nnWe often describe cases of malware distribution under the guise of game cheats and pirated software. Sometimes such methods are used to spread complex malware...","og_url":"https:\/\/zero.redgem.net\/?p=40439","og_site_name":"zero redgem","article_published_time":"2026-02-11T08:43:58+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=40439#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=40439"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36","datePublished":"2026-02-11T08:43:58+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=40439"},"wordCount":1951,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","securelist","Security","tapic","Vulnerability"],"articleSection":["category_news"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=40439#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=40439","url":"https:\/\/zero.redgem.net\/?p=40439","name":"The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-11T08:43:58+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=40439#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=40439"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=40439#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"The game is over: when \u201cfree\u201d comes at too high a price. What we know about RenEngine_SECURELIST:C6F1A4E7681F1C5D63953967D23DAC36"}]},{"@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\/40439","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=40439"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/40439\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=40439"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=40439"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=40439"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}