<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>Cyber Kendra</title><description>Tech Hub</description><managingEditor>noreply@blogger.com (Root)</managingEditor><pubDate>Sat, 6 Jun 2026 06:29:06 +0530</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">3492</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>https://www.cyberkendra.com/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><copyright>All the content is copyright of cyberkendra.com</copyright><itunes:image href="http://2.bp.blogspot.com/-svYWW7Cp8JI/UDUgofD9kUI/AAAAAAAAAEY/ina7VZi4ZRg/s1600/webprotal.png"/><itunes:keywords>Computer,technology,tech,IT,security,Gadgets,Telecom</itunes:keywords><itunes:summary>All about Computer and technology. </itunes:summary><itunes:subtitle>Cyber kendra</itunes:subtitle><itunes:category text="Technology"><itunes:category text="Tech News"/></itunes:category><itunes:author>Vivek Gurung</itunes:author><itunes:owner><itunes:email>protalweb@gmail.com</itunes:email><itunes:name>Vivek Gurung</itunes:name></itunes:owner><item><title>Researcher Drops PoC for 1-Click GitHub Token Theft via VSCode Bug — Skips MSRC Entirely</title><link>https://www.cyberkendra.com/2026/06/1-click-github-token-theft-via-vscode.html</link><category>GitHub</category><category>Microsoft</category><category>Security</category><category>ZeroDay Bug</category><pubDate>Wed, 3 Jun 2026 07:24:01 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-2707014837542141389</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="GitHub token theft vulnerability exposed in VSCode browser editor" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjy4znccGVBflXC-i2bVUW3ZPQ1ITJz2t6eL-Cg1IAyTThLq34nc05jh45gNLrvqs83fJNqmIxHa2-aPsn1q3Di2vvMcn_04a98W7J0HaxfXiD4DuGu2Ao-Z583aD5FgQRiZbWiTYrURyW2ssom3m5CZOuNfq10PbfZAuvCaAFWNlRm_3TRdwV4dbsVCsw/s16000/github-vscode.webp" title="GitHub token theft vulnerability exposed in VSCode browser editor" /&gt;&lt;/div&gt;&lt;p&gt;Security researcher Ammar Askar has publicly released a fully working proof-of-concept (PoC) exploit that can steal a victim's GitHub OAuth token — granting read and write access to every repository they own, including private ones — with nothing more than a single link click. No phishing page. No social engineering beyond "click this." Just a malicious GitHub repository opened in GitHub.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Askar made no attempt to coordinate disclosure with Microsoft's Security Response Center (MSRC). He's done that before, and he says the experience was bad enough that he won't do it again.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The Attack Chain: A Cleverly Chained Exploit&lt;/h3&gt;&lt;p&gt;The vulnerability lives inside github.dev, GitHub's browser-based version of Visual Studio Code (VSCode). When a user opens any repository through github.dev, GitHub's servers silently POST an OAuth token to the editor — a token that isn't scoped to just that one repo. It has full access to everything the user can touch on GitHub.&lt;/p&gt;&lt;p&gt;To get that token out, Askar exploited a subtle but significant flaw in how VSCode handles its sandboxed "webviews" — the isolated iframes (inline frames) used to render content like Jupyter notebooks and Markdown previews.&amp;nbsp;&lt;/p&gt;&lt;p&gt;While these iframes run in a separate browser origin to prevent untrusted code from accessing VSCode's internals, VSCode deliberately punches a hole through this boundary so that keyboard shortcuts keep working from inside a webview. When you press a key inside a webview, a did-keydown event gets relayed to the main editor window.&lt;/p&gt;&lt;p&gt;&lt;b&gt;The problem: &lt;/b&gt;nothing stops JavaScript running inside a webview from dispatching synthetic keyboard events — events that VSCode's main window treats as genuine user input.&lt;/p&gt;&lt;p&gt;&lt;a href="https://blog.ammaraskar.com/github-token-stealing/" rel="nofollow" target="_blank"&gt;Askar's PoC exploits&lt;/a&gt; this with a repo containing a Jupyter notebook and a local workspace extension. The notebook's JavaScript payload waits a few seconds for VSCode to surface a notification prompting extension installation, then fires a simulated Ctrl+Shift+A keystroke to accept it.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The extension — which lives inside .vscode/extensions and bypasses VSCode's publisher trust check because local workspace extensions are considered implicitly trusted — then registers a custom keybinding.&amp;nbsp;&lt;/p&gt;&lt;p&gt;One more simulated keystroke later, a second extension installs silently, retrieves the GitHub OAuth token from the editor's session, queries the GitHub API for private repo names, and displays them in an information box alongside the stolen token.&lt;/p&gt;&lt;p&gt;&lt;b&gt;The entire attack runs in under 30 seconds. A user needs only to open the malicious notebook link.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;The vulnerability also affects the desktop version of VSCode, where an attacker would need to convince a target to clone a repo and open the notebook — a higher bar, but still achievable. If there's any other XSS in a desktop VSCode webview, the same technique delivers full remote code execution.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Why He Didn't Tell MSRC First&lt;/h3&gt;&lt;p&gt;Askar's disclosure is a direct consequence of accumulated frustration with how Microsoft handles VSCode security reports.&amp;nbsp;&lt;/p&gt;&lt;p&gt;In a &lt;a href="https://blog.ammaraskar.com/vscode-rce/#microsoft-security-and-vscode" rel="nofollow" target="_blank"&gt;previous report&lt;/a&gt;, he says MSRC silently patched the issue, gave him no credit, and classified it as having no security impact.&amp;nbsp;&lt;/p&gt;&lt;p&gt;He points to a pattern: a command injection in VSCode's built-in Git extension reported by SonarSource was marked ineligible. A researcher named Justin Steven found an XSS in the built-in Jupyter Notebook extension — also ineligible. MSRC's position, according to Askar, is that even first-party extensions that ship with VSCode are out of scope.&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;"In the future, I am going with the public disclosure route for any VSCode-related bugs I find," he wrote. "I would encourage other security researchers to do the same until there is some improvement," —&amp;nbsp;Askar wrote in his previous blog post.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;This disclosure arrives in the middle of a larger, louder argument about exactly this dynamic. In April and May 2026, a researcher operating as Nightmare Eclipse dropped six Windows zero-day exploits in rapid succession — &lt;b&gt;BlueHammer, RedSun, UnDefend, YellowKey, GreenPlasma, &lt;/b&gt;and &lt;b&gt;MiniPlasma&lt;/b&gt; — all without coordinating with Microsoft.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Three were exploited in live attacks before patches arrived; CISA added them to its Known Exploited Vulnerabilities catalog.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Microsoft &lt;a href="https://x.com/msftsecresponse/status/2061293718942908925" rel="nofollow" target="_blank"&gt;responded by threatening&lt;/a&gt; to involve its Digital Crimes Unit, hinting at criminal referrals. The security community largely reacted with dark amusement. Jason Lang, a Team Lead at TrustedSec, called Microsoft's position "hilarious" given the horror stories researchers routinely share about MSRC. Kevin Beaumont, a former Microsoft employee and respected security voice, described the situation as "a dumpster fire of their own making."&lt;/p&gt;&lt;p&gt;It is into this environment that the github.dev token theft PoC landed. The timing is not coincidental.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The Bigger Picture: VSCode Is a High-Value Target&lt;/h3&gt;&lt;p&gt;According to the researcher, the GitHub.dev attack surface is particularly sensitive because the OAuth token it issues isn't limited in scope. It isn't a read-only token for one repo — it's a broad credential that can clone private repositories, push commits, alter settings, and trigger workflows across everything a user has access to. In a corporate environment, that can mean access to an entire organization's private codebase.&lt;/p&gt;&lt;p&gt;This arrives weeks after TeamPCP, a financially motivated threat group, &lt;a href="https://www.cyberkendra.com/2026/05/githubs-own-codebase-was-breached.html" target="_blank"&gt;breached roughly 3,800 of GitHub's own internal repositories&lt;/a&gt; via a poisoned VS Code extension installed on a GitHub employee's device. That breach, confirmed by GitHub in May 2026, underscored how completely the extension ecosystem has become a primary attack surface for credential theft and supply chain intrusion.&lt;/p&gt;&lt;p&gt;VSCode's security team does deserve partial credit: the existing defenses — strict Content Security Policy, DOMPurify-sanitized Markdown rendering, and the script-src 'none' directive in extension views — prevented the attack from becoming considerably worse. Without those controls, the same technique could have enabled one-click remote code execution on every desktop VSCode user who clicked a link.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;How to Protect Yourself Right Now&lt;/h3&gt;&lt;p&gt;Microsoft has since mitigated this issue on its end and says no customer action is required. However, if you previously ran Askar's PoC to test your own exposure, you should still uninstall the proof-of-concept extension from your github.dev environment — otherwise it will persist across every github.dev session you open.&lt;/p&gt;&lt;p&gt;There are no CSRF tokens or other protections that limit which links on the internet can redirect you into github.dev. Until Microsoft patches the webview keydown relay behavior and properly scopes the OAuth token issued to github.dev, the attack surface remains open.&lt;/p&gt;&lt;p class="note"&gt;The PoC repository and installed extension code are publicly available. Microsoft, in a statement to Cyber Kendra, said: "This issue has been mitigated for our services, and no customer action is required."&lt;/p&gt;&lt;p class="note"&gt;&lt;b&gt;Update (June 2026):&lt;/b&gt; Microsoft has confirmed the issue has been mitigated. See the statement at the end of this article.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjy4znccGVBflXC-i2bVUW3ZPQ1ITJz2t6eL-Cg1IAyTThLq34nc05jh45gNLrvqs83fJNqmIxHa2-aPsn1q3Di2vvMcn_04a98W7J0HaxfXiD4DuGu2Ao-Z583aD5FgQRiZbWiTYrURyW2ssom3m5CZOuNfq10PbfZAuvCaAFWNlRm_3TRdwV4dbsVCsw/s72-c/github-vscode.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Ways to improve your rank and quickly understand the main principles of Fortnite</title><link>https://www.cyberkendra.com/2024/02/ways-to-improve-your-rank-and-quickly.html</link><category>Game</category><pubDate>Thu, 29 Feb 2024 10:26:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-279488901045052277</guid><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;
  &lt;img alt="Improve Your Fortnite Ranks" border="0" data-original-height="720" data-original-width="1280" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0gMN3M9l1gSeC9_HGBwvT3Eg-DVb_zO_gaZkMfKhBNmHjZjmtYdnwwXrc_utamc_TFgsEsf8ogeGa_Q1ibRVaZ8BuWa0qUAkHNz8HpA2_bqJ-pMziL9o7vCzMnNo5uN-h0ktH2BRrPQSPw21wSvR-NUE2-atol3jrdogCHG41Anwexi-0yTcHbwO3Lrg/s16000/Improve-Fortnite-ranks.webp" title="Improve Your Fortnite Ranks" /&gt;
&lt;/div&gt;
&lt;p&gt;
  Fortnite is one of the most popular projects in the battle royale genre, which
  allows players to compete for the status of the last survivor with other
  players and for the overall rank in the gaming system. The project is
  implemented in cartoon graphics and has unique construction mechanics and
  various weapons and grenades with fun effects, such as dancing and other
  mechanics.
&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;
  You can increase your rank on your own, gradually mastering shooting, the
  speed of collecting weapons and other drops, proper landing and gradual
  survival techniques, remaining alive as long as possible or order the
  &lt;a href="https://skycoach.gg/fortnite-boost" rel="nofollow" target="_blank"&gt;this&lt;/a&gt;
  service from the Skycoach service to learn how to play immediately against
  difficult opponents and not easy and understandable.
&lt;/p&gt;
&lt;p&gt;
  This format is suitable for players who want to try their hand at new enemies or quickly regain rank after returning to Fortnite after a long absence.
&lt;/p&gt;
&lt;p&gt;
  You shouldn’t worry about the level of players at higher ranks; on the one
  hand, they will have a more automated construction mode and increased
  accuracy, but at the same time, you won’t always lag behind.
&lt;/p&gt;
&lt;p&gt;
  In any case, the game system will gradually calibrate you to the real value of
  experience and Fortnite rank.
&lt;/p&gt;
&lt;h3 style="text-align: left;"&gt;Landing&lt;/h3&gt;
&lt;p&gt;
  &lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" data-original-height="1024" data-original-width="1024" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3xOvJ4vChHfwCX6TBZF3RJGFkz9cEujhPsX9XMHExnbTdAChA5-ltZ55dzSIafRvm1D48Xpiv064z-EYWbjEyGE0HJFOl5YCcdrDpZFWX_i6sKFus-VwBM4hY_6aU7DQXvgeo4XrN-V1bHH2E6buy_CBPiiJy7zleiMQP5qWpp8meyX4pwOAC-GDP_9k/s16000/landing-Fortnite.webp" /&gt;&lt;/div&gt;&lt;p&gt;The most important factor in your game and survival in the early stages of the
  round is not to suffer an initial defeat and not sacrifice your Fortnite rank
  boosting.
&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;p&gt;
  You need to immediately find good and fast-firing weapons that will help you
  fight in the very first minutes of the game, before the formation of a circle
  and the direction of narrowing and reduction to the final battle zone.
&lt;/p&gt;
&lt;p&gt;
  If you choose large areas of cities, then you risk suffering a quick defeat
  and lowering your rating.
&lt;/p&gt;
&lt;p&gt;
  This format is more suitable for players who want to fight and train their aim
  and ability to quickly look for equipment and weapons, but at the same time
  are ready to both die quickly and survive the first stage and continue their
  path to the title of top 1 player.
&lt;/p&gt;
&lt;p&gt;
  If you land in any zone where there are two or three houses, then you will be
  in a more advantageous situation because a large number of enemies rarely land
  in such zones, but it is important to take into account before jumping the
  number of enemies who jumped out at that second and make a decision about the
  jump.
&lt;/p&gt;
&lt;p&gt;
  In such locations, you can collect good starting equipment and the first
  weapon, various medicines and just wait for the first narrowing of the circle
  to advance to the preliminary zone of the final battle, where the degree of
  your cheap rank boost in Fortnite will be decided.
&lt;/p&gt;
&lt;p&gt;
  Try to avoid landing points where your drop may be minimal - usually, these
  are single and lonely buildings. Yes, such assistance will most likely be
  safe, but the chance that you will find good starting equipment there, and not
  a pistol without armour and a helmet, is quite small. In addition, such zones are often disadvantageous due to the intersection with other places that will be affected by the narrowing of the map, and if you need to quickly get far away, you will simply be in a very disadvantageous situation.&lt;/p&gt;
&lt;h3 style="text-align: left;"&gt;Quick collection&lt;/h3&gt;
&lt;p&gt;
  You need to learn to quickly analyze and select really useful items and ammo
  and not take anything unnecessary, because your inventory is far from endless,
  and you can’t always find a good-quality backpack right away.
&lt;/p&gt;
&lt;p&gt;
  Fortunately, the Fortnite developers changed the colours of items by rank,
  which greatly simplifies your understanding of their value.
&lt;/p&gt;
&lt;p&gt;
  The most profitable is the gold type of items or purple. In the initial
  stages, this is not very important, because you will take everything you have,
  but later on, you learn to analyze to quickly select all the most powerful
  types of weapons.
&lt;/p&gt;
&lt;p&gt;
  Collect medicines, armour &amp;amp; helmets, and grenades. All this will be useful
  in the future, as they increase your survivability and allow you to restore
  strength and resources after difficult battles.
&lt;/p&gt;
&lt;p&gt;
  Mine wood, stone and metal as you move to open access to instant construction
  on the location, which will repeatedly save your life when you learn how to do
  it quickly and efficiently.
&lt;/p&gt;
&lt;h3 style="text-align: left;"&gt;Airdrop&lt;/h3&gt;
&lt;p&gt;
  &lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" data-original-height="1024" data-original-width="1024" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEizmjdt0cT74FTLzE5PDgpU4G-G3XR-anj6h6Zpcmv7qWEErHTZ1rAkSpdzBzRwZmyr_Aoo6s3Dd0gBAvSQU6_c5O4mJWKXctzOEkWB5vi154pHHnRKAg7ebWECMOKMqm7Uqelur1JpaDpASry80FGifSR6LoRb7rISwyRTHEmPauM1IBXDg-NGjVB_cBU/s16000/airdrop.webp" /&gt;&lt;/div&gt;&lt;p&gt;Periodically, an
  &lt;a href="https://fortnite.fandom.com/wiki/Supply_Drop_(Battle_Royale)" target="_blank"&gt;airdrop&lt;/a&gt;
  will be dropped at a random place on the map, with random weapons and
  equipment, but other players will also be aware of its presence, which
  significantly increases the likelihood of death when picking it up, but in
  such a drop, there is a high probability of receiving a legendary level item.
  It is important to quickly collect it and leave, or take an ambush and simply
  shoot active enemies and then move on.
&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;p&gt;The alternative is to ignore this aspect of the match and take advantage of the shift in priorities among many players to improve their position on the map, wait for the next stage, and engage in battle at will, so as not to take unnecessary risks.&lt;/p&gt;
&lt;p&gt;Construction&lt;/p&gt;
&lt;p&gt;
  You can accumulate resources as you survive and rank up in Fortnite and use
  them to improve your safety and defense against enemies.
&lt;/p&gt;
&lt;p&gt;
  You can quickly build vertical and horizontal fortifications, which depend on
  the strength and type of materials you use for construction.
&lt;/p&gt;
&lt;p&gt;
  When you start the process, you will see the silhouette of the future
  building, which you can activate and then build on top and sides at your
  discretion. When you understand the basics, you will gradually begin to
  increase the speed of construction, and then have time to shoot.
&lt;/p&gt;
&lt;p&gt;The most interesting duels are the shooting of two players who instantly build up the territory, destroy each other’s barricades, and restore their shelters, where the player who loses all resources first will lose or will be inattentive and miss a bullet, which will end their boosting in Fortnite.&lt;/p&gt;
&lt;p&gt;
  Keep in mind that stone and metal are denser and more durable than other types
  of resources, and wood is easily mined, but is literally shot through by most
  types of weapons.
&lt;/p&gt;
&lt;p&gt;
  Accumulate metal and stone at the first opportunity, because they are the ones
  who can save your life at the beginning of a critical battle and shelling at
  Fortnite.
&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0gMN3M9l1gSeC9_HGBwvT3Eg-DVb_zO_gaZkMfKhBNmHjZjmtYdnwwXrc_utamc_TFgsEsf8ogeGa_Q1ibRVaZ8BuWa0qUAkHNz8HpA2_bqJ-pMziL9o7vCzMnNo5uN-h0ktH2BRrPQSPw21wSvR-NUE2-atol3jrdogCHG41Anwexi-0yTcHbwO3Lrg/s72-c/Improve-Fortnite-ranks.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>FC 24: What's New in EA Sports' Latest Football Simulation Game</title><link>https://www.cyberkendra.com/2024/01/fc-24-whats-new-in-ea-sports-latest.html</link><category>Game</category><pubDate>Thu, 18 Jan 2024 00:05:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-6406935326609334964</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="FIFA 24 is FC24" border="0" data-original-height="1024" data-original-width="1024" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8-Q1mpA9EtqmVIkVgK53MXk3OIzG3RkvwMQxrInE_l75ku9h6iAoLL5ezCggacE6okvzYdPP-pwd2WWshIeAVAzOyo7eQnTE_x2giL-EbMjX0fDgC6racoHL-r9pjY79U716DhO0u1yKSqJz9dYCbO4PqrKsXpspa8YELnSH4pPgifm6qM8O6ShGTBZk/s16000/fc24.webp" title="FIFA 24 is FC24" /&gt;&lt;/div&gt;&lt;p&gt;EA Sports' FC 24 is the newest iteration in their long-running FIFA soccer video game franchise. With the loss of the FIFA name and license, EA has rebranded the game as FC 24 but it still retains the same great gameplay and modes that fans have come to know and love.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Let players not be confused by the new name, because FC 24 is essentially FIFA 24, but with a new name, because the publishing house EA Sports could not agree with the football organization FIFA to continue using their name in their game and the project that had Over the last 20 years, the abbreviation has changed its name to the simple and understandable FC 24.&lt;/p&gt;&lt;p&gt;FC 24 includes new features, gameplay enhancements, and discussion around the game's strengths and potential limitations. While the name has changed due to licensing issues, FC 24 delivers the same realistic simulation gameplay that fans have come to expect from the franchise over the past two decades.&lt;/p&gt;&lt;h2 style="text-align: left;"&gt;Game Modes and Formats&lt;/h2&gt;&lt;p&gt;At its core, FC 24 delivers the same smooth, responsive gameplay the FIFA series is known for along with incremental graphics improvements. Player animations have been polished with more lifelike runs, tackles, and goal celebrations. Stadium atmospheres have also been enhanced with 3D crowds and more broadcast-style camera angles for an immersive TV-style presentation. EA promises even more gameplay fluidity and responsiveness, especially on next-gen consoles, for bone-crunching tackles and precision dribbling.&lt;/p&gt;&lt;p&gt;While the graphics step up is noticeable, some may argue it's not a huge generational leap compared to other next-gen sports titles. However, the polished animations and enhanced atmospheres still make for an excellent overall soccer experience.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Online Mode&lt;/h3&gt;&lt;p&gt;This is the most popular and widespread format for playing football for many players, in which it all comes down to personal skill and luck, because even if you choose a titled club, you will not receive players with valid contracts, and the first squad will be formed randomly when opening the first sets.&lt;/p&gt;&lt;p&gt;Online play allows you to take your favorite club and test your skills against opponents from around the world. When you first start, your squad will be filled with random players until you earn more stars through matches and tournaments.&lt;/p&gt;&lt;p&gt;The key to building a competitive online team is acquiring FIFA coins, which can be earned through gameplay or purchased. Coins allow you to obtain packs with new player cards or buy specific players at auction. An active ranking and league system matches you against similarly skilled opponents as you build your team.&lt;/p&gt;&lt;p&gt;FIFA coins play an important role in getting the right football players, and you can get them through various matches, tournaments, and events, or simply&amp;nbsp;buy FC 24 coins&amp;nbsp;&lt;a href="https://skycoach.gg/fc-24-boost/fc-24-coins" rel="nofollow" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Tournaments&lt;/h3&gt;&lt;p&gt;To ensure that players don’t get bored, and they get the opportunity not only to grind and earn FC 24 coins but also to have fun and play games against difficult opponents, a system of tournaments was organized, where all interested players who are active enough to qualify can enter, and technical enough to win the right number of matches. Tournaments provide another avenue to earn prizes and coins outside regular online matches.&amp;nbsp;&lt;/p&gt;&lt;p&gt;You'll need to gain 1500 qualification points per week to enter tournaments where you can win coins, packs, stadium customizations, and more. Even if you don't advance past the qualifying round, you still earn rewards.&lt;/p&gt;&lt;p&gt;If you get to the main stage, then you are already guaranteed to receive several large sets with random golden football players and now have to play 20 matches, where each victory will allow you to receive additional FIFA 24 coins, football player cards and various decorations for stadiums and goal celebration cards, in including the style of Ronaldo and other famous football players.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Moments&lt;/h3&gt;&lt;p&gt;Relive famous moments from football history by completing in-game scenarios and objectives. This provides a fun diversion from normal matches while allowing you to earn more FIFA coins.&lt;/p&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;img border="0" data-original-height="844" data-original-width="1500" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPsU-81Ez_m_uQNx882hNPIdMBe-bTHUcbp48CmiRUgroEyejZOluOkcZBASM5wT7Fu9o0f0VnUBi_OFYUNbpN51U2tDmqOkMq51MQVTjSLLsw9dQGlXVtXXoW7pgKbdYxmbZ8RcjqJEJbBft-uXmaAVJK8gjDlx2bAND5yj6YcVnXuL3QBTtknqY3XgI/s16000/game-specs.webp" style="margin-left: auto; margin-right: auto;" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;FC24 System Requirements&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Challenges&lt;/h3&gt;&lt;p&gt;New challenges are assigned each week by the FC 24 board. Completing these unlocks coins and can level up your existing player cards.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Career Mode&lt;/h3&gt;&lt;p&gt;This is a match format that is familiar to everyone who has ever played any of the versions of FIFA that have been released over the past 20 years.&lt;/p&gt;&lt;p&gt;Career mode lets you take control of a club as the manager. You oversee all aspects of running the team from training to transfers as you guide them over multiple seasons. This provides a deeper experience beyond just match play.&lt;/p&gt;&lt;p&gt;In this format, no matter which club you choose, you will receive a current playing roster comparable to the real contracts of the players who are in it.&lt;/p&gt;&lt;p&gt;It’s more interesting, of course, to take a club from weak leagues and bring them to the &lt;a href="https://www.uefa.com/uefachampionsleague/fixtures-results/" rel="nofollow" target="_blank"&gt;Champions League&lt;/a&gt;, but everyone chooses their own gameplay.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Pro Mode&lt;/h3&gt;&lt;p&gt;Pro mode is a newer addition that lets you create a single player and control just them. Start in the youth squad and work your way up through the senior team as you develop your player. You directly control your pro in matches while your AI teammates play around you. This provides a unique experience as you chase glory for your virtual pro.&lt;/p&gt;&lt;p&gt;Remember that you can only control your player, and you can contact your teammates through passes and requests to pass, but the players themselves will play for you if you are a forward, interact as a defender, or playback if you are a goalkeeper.&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="EA's FC24 football game" border="0" data-original-height="1024" data-original-width="1024" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWYkvwumuj-N9FjlGMY8A5onUQMEB9Q9BDg7yDisxIbxVTUZArVXmAbTMBtGMpigsZAf77V7_mFsqPV30MaUzjCRBj6FobinT9XwyG18FIhaYiRwrLPehvM2D3BrBeSkHgDbcQyXr_oU6fvdhenmtIC6H-JzPt1V4YSfVMxYhsGUj_9DFO8-pJqtFuSj8/s16000/pasted%20image%200%20(8).png.webp" title="EA's FC24 football game" /&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;h2 style="text-align: left;"&gt;Gameplay Improvements&lt;/h2&gt;&lt;p&gt;In addition to new modes, FC 24 also delivers improved realism and graphics:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Enhanced physics, animations, and ball mechanics provide even more realistic gameplay&lt;/li&gt;&lt;li&gt;Individual players, crowds, and managers react intelligently to match events&lt;/li&gt;&lt;li&gt;Playing styles for over 19,000 players are tuned to match their real-life counterparts&lt;/li&gt;&lt;li&gt;Motion capture from professional players results in smooth, lifelike movements&lt;/li&gt;&lt;li&gt;Photorealistic graphics make it feel like you're watching a live broadcast&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Managing Your Club&lt;/h3&gt;&lt;p&gt;As a manager in career mode, you have full control over your club. Here are some of the key responsibilities:&lt;/p&gt;&lt;h4 style="text-align: left;"&gt;Transfers and Contracts&lt;/h4&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Buy, sell, and loan players in the transfer windows&lt;/li&gt;&lt;li&gt;Offer contracts to negotiate salaries and contract length&lt;/li&gt;&lt;li&gt;Balance team needs, budgets, and player morale&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;h4 style="text-align: left;"&gt;Tactics and Training&lt;/h4&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Set formations, positions, and tactical styles&lt;/li&gt;&lt;li&gt;Train players to improve attributes like passing, pace, and shooting&lt;/li&gt;&lt;li&gt;Develop customized training plans&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;h4 style="text-align: left;"&gt;Finances&lt;/h4&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Manage budgets and club value&lt;/li&gt;&lt;li&gt;Invest in facilities like training grounds and stadiums&lt;/li&gt;&lt;li&gt;Balance profitability with on-field performance&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;h4 style="text-align: left;"&gt;Youth Development&lt;/h4&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Scout for promising prospects around the world&lt;/li&gt;&lt;li&gt;Sign youth academy players and nurture their development&lt;/li&gt;&lt;li&gt;Promote top prospects to the senior squad&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;With comprehensive management systems, career mode allows you to inhabit the role of manager. Your choices shape the club over months and years as you chase the thrill of victory.&lt;/p&gt;&lt;h2 style="text-align: left;"&gt;Take Your Game to the Next Level&lt;/h2&gt;&lt;p&gt;For soccer gaming fans, FC 24 represents an exciting new chapter for the long-running EA series. The renamed franchise shows evolution in the key areas that matter - smoother core gameplay animations, enhanced visuals and presentation, improved ball physics and deepened career progression. EA has clearly invested heavily in HyperMotion 2 technology to really up the realism factor this year for a true next-gen feel.&lt;/p&gt;&lt;p&gt;The loss of the FIFA brand may sting initially but the licensing situation remains largely status quo outside of the World Cup. And EA reassures they will continue pursuing partnerships to deepen the content and licensing in future updates. While some visuals like crowds and environments still have room for improvement, there's no denying FC 24 delivers where it matters most - incredible pitch action more lifelike than ever before. Overall FC 24 feels like a needed incremental upgrade to appeal to both casual kick-off fans and hardcore FUT enthusiasts alike.&lt;/p&gt;&lt;p&gt;Whether you're aiming to lead a storied club to European glory or take a minnow to the top, FC 24 offers deeper gameplay options than ever before in the FIFA series. Sharper graphics, improved realism, and new modes provide a varied experience for football fans.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8-Q1mpA9EtqmVIkVgK53MXk3OIzG3RkvwMQxrInE_l75ku9h6iAoLL5ezCggacE6okvzYdPP-pwd2WWshIeAVAzOyo7eQnTE_x2giL-EbMjX0fDgC6racoHL-r9pjY79U716DhO0u1yKSqJz9dYCbO4PqrKsXpspa8YELnSH4pPgifm6qM8O6ShGTBZk/s72-c/fc24.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Document Security: What Every Business Needs to Know</title><link>https://www.cyberkendra.com/2026/06/document-security-what-every-business.html</link><category>Learn</category><category>Tips</category><pubDate>Thu, 4 Jun 2026 22:09:22 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-6512690156743308922</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="Translate PDF free" border="0" data-original-height="1000" data-original-width="1500" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjM2qzEorEFJ_9dSXK8AqqkEKPxz9HsP4Cy4xkotSqPcX5BrnXcUmZcU02j2YMYaC6P8OfLOGEmBWfB8VUPuMOcqluYfIxxfovquNCIiOOcYrPdAioxXqTbPgxpwD7du_KuXY849xoxxbEgZzWfFYmSy_iNeTrWd51h5qwFl1SiQoYm-_UAM3-BGU6bb2I/s16000/translate-pdf.webp" title="Translate PDF free" /&gt;&lt;/div&gt;&lt;p&gt;Documents are the lifeblood of any business. Contracts, financial records, customer data, intellectual property, and internal communications all flow through files that move between devices, inboxes, and cloud services dozens of times a day.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Yet document security is often treated as an afterthought, addressed only after something goes wrong. In an era of relentless data breaches and tightening regulation, that is a dangerous gamble. Here is what every business needs to understand about keeping its documents secure.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Why Documents Are a Prime Target&lt;/h3&gt;&lt;p&gt;Cybercriminals understand something many businesses overlook: documents are where the valuable information lives. A single leaked contract can expose pricing, terms, and client relationships. A compromised spreadsheet can reveal financial data or personal information covered by data protection law. Attackers often go after documents precisely because they are rich in sensitive content and frequently poorly protected.&lt;/p&gt;&lt;p&gt;The threat is not only external. Accidental exposure, an email sent to the wrong recipient, a file left on an unsecured drive, or a document uploaded to a careless third-party service, accounts for a large share of data incidents. Understanding that documents themselves are an attack surface, not just the systems that store them, is the first step towards taking their security seriously.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The Fundamentals Every Business Should Have&lt;/h3&gt;&lt;p&gt;Strong document security begins with a few non-negotiable basics. Sensitive files should be encrypted both when stored and when sent, so that even if they fall into the wrong hands, the contents remain unreadable. Access should be controlled on a need-to-know basis, with permissions limiting who can view, edit, or share a given document.&lt;/p&gt;&lt;p&gt;Password protection on critical files, secure and regular backups, and clear policies about how documents are handled all form part of a solid foundation. None of this is exotic or expensive, yet a surprising number of businesses neglect these fundamentals. Getting them right dramatically reduces risk and is well within reach of even the smallest organisation.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The Hidden Risk in Everyday Tools&lt;/h3&gt;&lt;p&gt;Some of the most overlooked document risks come from the convenient online tools employees use to get their jobs done. Free file converters, online editors, and web-based translation services are enormously handy, but they often involve uploading a document to an unknown third-party server. For a confidential file, that is a genuine security concern, as the business loses control over where its data goes and how it is handled.&lt;/p&gt;&lt;p&gt;Translation is a perfect example. When an employee needs to understand a foreign-language contract or supplier document, the temptation is to paste it into the nearest free online translator, with little thought about what happens to that sensitive text afterwards. A safer approach is to use trusted, established software that is transparent about data handling.&amp;nbsp;&lt;/p&gt;&lt;p&gt;With Adobe Acrobat, for instance, you can translate a document into PDF by opening it, selecting the &lt;a href="https://www.adobe.com/uk/acrobat/resources/how-to-translate-a-pdf.html" target="_blank"&gt;PDF translate&lt;/a&gt; option, and converting it into your chosen language through Adobe Express, with the source language detected automatically and the option to translate whole files or just specific passages.&lt;/p&gt;&lt;p&gt;Crucially for security-conscious businesses, Adobe is clear that it does not train its AI models on the documents you process, which is exactly the kind of data-handling transparency a business should look for before feeding any confidential file into a tool. The broader lesson holds regardless of the specific software: always know what a service does with your data before you upload sensitive material to it.&lt;/p&gt;&lt;h4 style="text-align: left;"&gt;Building a Culture of Security&lt;/h4&gt;&lt;p&gt;Technology alone cannot secure a business's documents. The most sophisticated tools are undermined by a single employee who reuses weak passwords, falls for a phishing email, or carelessly shares a confidential file. This is why building a genuine culture of security awareness is just as important as any software you deploy.&lt;/p&gt;&lt;p&gt;Regular training, clear and practical policies, and a workplace where employees feel able to report mistakes without fear all contribute to stronger document security.&amp;nbsp;&lt;/p&gt;&lt;p&gt;People are often described as the weakest link in security, but with the right culture, they become the strongest defence. A team that understands why document security matters and knows how to handle files responsibly is worth more than any single piece of technology.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Practical Steps to Take Today&lt;/h3&gt;&lt;p&gt;For businesses wanting to improve their document security, the path forward is clearer than it might seem. Start by identifying your most sensitive documents and ensuring they are encrypted and access-controlled. Review the tools your team uses, paying particular attention to any online services that involve uploading files, and replace risky ones with trusted alternatives.&lt;/p&gt;&lt;p&gt;Establish clear policies for how documents are shared, stored, and disposed of, and back them up with practical training. Ensure you have secure, tested backups so that a ransomware attack or accidental deletion does not become a catastrophe. None of these steps requires a vast budget, just a deliberate commitment to treating document security as the priority it deserves to be.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Compliance Is Not Optional&lt;/h3&gt;&lt;p&gt;Beyond the direct threat of breaches, businesses face a legal landscape that demands proper document security. Data protection regulations such as the UK GDPR impose serious obligations on how personal data is stored, processed, and protected, with significant penalties for failures. Documents containing customer or employee data fall squarely within these rules.&lt;/p&gt;&lt;p&gt;According to the &lt;a href="https://www.ncsc.gov.uk/" rel="nofollow" target="_blank"&gt;National Cyber Security Centre&lt;/a&gt;, organisations of all sizes should take a proactive, risk-based approach to protecting their information, treating security as an ongoing business priority rather than a one-off technical task.&amp;nbsp;&lt;/p&gt;&lt;p&gt;For documents, this means understanding what sensitive data you hold, where it lives, who can access it, and how it is protected throughout its lifecycle. Compliance is not merely about avoiding fines; it is about maintaining the trust of the customers and partners who rely on you to safeguard their information.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Security as a Business Advantage&lt;/h3&gt;&lt;p&gt;Ultimately, strong document security is not just a defensive necessity; it is a competitive advantage. Customers and partners increasingly want to work with businesses they can trust to handle their information responsibly. A demonstrable commitment to security can set a business apart and build the kind of trust that wins and retains clients.&lt;/p&gt;&lt;p&gt;In a world where data breaches make headlines with depressing regularity, the businesses that take document security seriously stand to gain far more than they spend. Protecting your documents protects your customers, your reputation, and your future. It is one of the smartest investments any business, large or small, can make, and there has never been a more important time to make it.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjM2qzEorEFJ_9dSXK8AqqkEKPxz9HsP4Cy4xkotSqPcX5BrnXcUmZcU02j2YMYaC6P8OfLOGEmBWfB8VUPuMOcqluYfIxxfovquNCIiOOcYrPdAioxXqTbPgxpwD7du_KuXY849xoxxbEgZzWfFYmSy_iNeTrWd51h5qwFl1SiQoYm-_UAM3-BGU6bb2I/s72-c/translate-pdf.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>XRP Derivatives Platforms in 2026: Leverage, Margins &amp; Fees Compared</title><link>https://www.cyberkendra.com/2026/06/xrp-derivatives-platforms-in-2026.html</link><category>Crypto Currency</category><pubDate>Thu, 4 Jun 2026 21:56:18 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-1072760163602931842</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" data-original-height="1024" data-original-width="1536" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYC_AX21s_5qOt3kVR5l-7AdYLAPras2F1oz5F9KvQ8SlKFEg3D_Ysb2HXk33xu9hTy_Yr1-HXGoL_0xXojFHIEmoFXvmg9TkAIV0_V3JqR1kaJRkdfr1ReNyvaKDqe8m_gLGXywqF8_PYtV3zJrnYV_KGgju8qI71x5dekv65xovyoma4WjZiE2aVzck/s16000/xrp.webp" /&gt;&lt;/div&gt;&lt;p&gt;Most platform comparisons rank exchanges on spot-trading basics—deposit methods, coin selection, maybe a UI screenshot. That's not particularly useful if you're trading XRP perpetual futures.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Open interest on XRP perps has climbed steadily through 2025 and into 2026, but plenty of platforms that list XRP spot still don't offer the derivatives infrastructure active futures traders actually rely on. Margin types, hedging modes, fee scaling, risk controls—these are the things that matter, and they're often missing from the conversation.&lt;/p&gt;&lt;p&gt;Here's a closer look at what separates strong XRP derivatives venues from the rest, with one Canada-registered exchange founded in 2020—now serving over 1,000,000 registered users across 190+ countries—examined in detail as a platform worth considering.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What XRP Derivatives Traders Actually Need&lt;/h3&gt;&lt;p&gt;Brand recognition tells you almost nothing about a derivative's depth. The criteria that matter for XRP perpetual contracts are specific, measurable, and often buried in fine print:&lt;/p&gt;&lt;p&gt;Margin type diversity. If a platform only offers USDT-margined contracts, you're locked into a single settlement currency. Traders hedging multi-asset portfolios or holding XRP as collateral need COIN-M or USDC-M alternatives. Leverage range.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Maximum leverage makes for good marketing copy. What actually matters is granularity—can you set 5x, 20x, or 75x to match a specific trade setup? Fee tiers at your volume. Base fees are just the starting line.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Volume-based discounts determine your real cost across hundreds of trades, and the gap between tiers can be substantial. Risk tooling. Isolated vs. cross margin, bi-directional hedging, and liquidation safeguards.&amp;nbsp;&lt;/p&gt;&lt;p&gt;These are separate, purpose-built derivatives platforms from exchanges that bolted futures on as an afterthought. Execution quality. Spread width and slippage during fast XRP moves can quietly eat into returns more than fee schedules suggest.&lt;/p&gt;&lt;p&gt;Not every platform advertising "XRP futures" checks these boxes. Some cap XRP leverage well below their advertised platform maximum. Many still don't offer USDC-M or COIN-M pairs for altcoins at all.&amp;nbsp;&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Leverage Ceilings and Margin Flexibility: Where Platforms Diverge&lt;/h3&gt;&lt;p&gt;Margin type is where the real separation happens for XRP traders—and it's an area where six years of continuous operation (2020–2026) show in the product build-out.&lt;/p&gt;&lt;p&gt;BYDFi supports three perpetual contract margin types: USDT-M, USDC-M, and COIN-M. USDC-M launched in August 2025, adding settlement flexibility that many mid-tier platforms still haven't matched. Across 500+ derivatives pairs, leverage ranges from 1x up to 200x. That 200x figure is the platform-wide ceiling, though—individual pairs, including XRP, may carry different caps.&lt;/p&gt;&lt;p&gt;Having three margin types means XRP derivatives traders can manage margin in whichever settlement currency suits their strategy. If you're already holding USDC or want coin-margined exposure without converting, that flexibility cuts out unnecessary steps.&lt;/p&gt;&lt;p&gt;A December 2024 engine upgrade introduced bi-directional long/short hedging and shared funds in full-margin mode, reducing liquidation risk when opposing positions move against each other. During testing, switching between isolated and cross margin on an open position worked smoothly—no need to close the position first, which isn't always the case elsewhere.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Fee Structures That Quietly Compound&lt;/h3&gt;&lt;p&gt;A few basis points feel trivial on one trade. Over a month of active XRP perpetual trading, they compound into a real drag on your returns.&lt;/p&gt;&lt;p&gt;Base-tier fees sit at maker 0.02% / taker 0.06% at VIP 0. A 7-tier VIP program (VIP 0 through VIP 6) scales discounts up to 60%, bringing VIP 6 rates down to maker 0.008% / taker 0.032%. Competitive, especially among platforms listing 600+ trading pairs across spot and derivatives.&lt;/p&gt;&lt;p&gt;But fee rates alone don't tell the whole story. Funding rates, spread width, and slippage during volatile XRP moves all affect total cost. The only honest comparison involves checking multiple platforms at your expected volume tier. Anything else is guesswork.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Lowering the Entry Barrier for New XRP Futures Traders&lt;/h3&gt;&lt;p&gt;Derivatives trading has a steep learning curve. Combine leverage with XRP's price volatility, and inexperienced traders can get punished fast.&lt;/p&gt;&lt;p&gt;One way the platform addresses this: no-KYC access. Traders can register with just an email and start spot and futures trading immediately within tier-based limits. No document uploads, no waiting periods. For users in regions where KYC processes drag on for days, that's a genuine advantage.&lt;/p&gt;&lt;p&gt;A demo account preloaded with 50,000 USDT replicates live market conditions and supports both USDT-M and Coin-M perpetual contracts. For anyone exploring XRP perpetuals for the first time, that zero-risk sandbox—paired with a streamlined sign-up—makes it a practical &lt;a href="https://www.bydfi.com/" target="_blank"&gt;crypto exchange for beginners&lt;/a&gt; looking to learn derivatives mechanics before committing real capital. Not a bad place to make your first mistakes.&lt;/p&gt;&lt;p&gt;Copy Trading launched in January 2025, followed by Perpetual Smart Copy Trading in August 2025, letting users automatically follow professional traders with proportional order sizing. The feature supports multi-asset contracts—BTC, ETH, XRP, SOL, DOGE—with a minimum entry of just $10. Low enough that newer traders can test the mechanism without sweating over capital exposure.&amp;nbsp;&lt;/p&gt;&lt;p&gt;A Futures Grid bot rounds out the automation options, handling range-bound strategies with leveraged positions.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;How BYDFi Stacks Up in the Broader XRP Derivatives Landscape&lt;/h3&gt;&lt;p&gt;Founded in 2020, the exchange now serves over 1,000,000 registered users across 190+ countries and lists XRP for both spot and derivatives. The platform is available on iOS, Android, and APK in 22 languages.&amp;nbsp;&lt;/p&gt;&lt;p&gt;In August 2025, BYDFi became the Official Crypto Exchange Partner of Premier League club Newcastle United through a multi-year deal. That kind of partnership doesn't just boost visibility among Newcastle's global fanbase; it signals a longer-term operational commitment that fly-by-night exchanges typically can't make.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The exchange holds multi-jurisdictional licenses and publishes Hacken-audited Proof of Reserves with ratios of BTC 157%, ETH 171%, and USDT 154%. Solid numbers.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Choosing an XRP Derivatives Platform: What to Evaluate&lt;/h3&gt;&lt;p&gt;The right platform depends on your margin preference, leverage needs, fee sensitivity, and how much risk tooling you require. Shortlist platforms that support your preferred margin type.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Compare fee tiers at your actual volume—not the base rate, your rate. Test execution quality before you scale up. A new user welcome package worth 8,100 USDT is available as one onboarding incentive to evaluate.&lt;/p&gt;&lt;p&gt;As XRP derivatives infrastructure matures through 2026, margin type availability and fee competition will only get tighter. The platforms whose contract specs hold up under scrutiny—not just their brand names—are the ones that'll retain active traders.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYC_AX21s_5qOt3kVR5l-7AdYLAPras2F1oz5F9KvQ8SlKFEg3D_Ysb2HXk33xu9hTy_Yr1-HXGoL_0xXojFHIEmoFXvmg9TkAIV0_V3JqR1kaJRkdfr1ReNyvaKDqe8m_gLGXywqF8_PYtV3zJrnYV_KGgju8qI71x5dekv65xovyoma4WjZiE2aVzck/s72-c/xrp.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Google Allegedly Pays Play Store Developers for App Code to Train AI</title><link>https://www.cyberkendra.com/2026/06/google-allegedly-pays-play-store.html</link><category>Android</category><category>Google</category><pubDate>Wed, 3 Jun 2026 23:16:02 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-6663732408860664170</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="Android App Development" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgw6Ifm2FvrPpT_dUxTqgLUAWwPpiljWU68Eyr5TEMTUYer7ILqJtf6vvVQq1_JVTvEDUmQs-1cVZSUOHi6TU6lCrLRhJ8aXH10tnAR5GQgWcS1b5jTD_IZYXiKb4vkIxlZqo_CWJ7Xbg8zX3EuyF-qC7o-DFSXoVB_srESyWmKqKZWdTf6v67DDBnY1gc/s16000/android-app-development.webp" title="Android App Development" /&gt;&lt;/div&gt;&lt;p&gt;Google is quietly paying Android developers for access to their app source code — including abandoned prototypes and archived side projects — to fuel its AI model training, according to a &lt;a href="https://www.404media.co/google-is-quietly-buying-code-from-play-store-developers-to-train-ai/" rel="nofollow" target="_blank"&gt;report by 404 Media&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;The program, framed internally as a "confidential content offer pilot," targets a select group of Google Play developers with an email from the Google Partnerships team.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The pitch positions it as an easy revenue opportunity: sell your codebase (the full working source code behind an app), and Google will put it to work. What the email conspicuously omits is any mention of artificial intelligence — though a link buried in the message leads directly to a page about "partnerships to improve our AI products."&lt;/p&gt;&lt;p&gt;It acknowledges that Google is now actively paying for non-public content beyond what it can scrape freely from the web, calling it a chance to create "mutually beneficial collaborations." Developers who participate retain 100% of their intellectual property rights under a non-exclusive license, meaning they can still monetize or publish their code elsewhere.&lt;/p&gt;&lt;p&gt;The significance here goes beyond one company's data shopping. Most AI training data is sourced from public content scraped across the internet — usually without compensation to creators. Android app code, by contrast, is inherently private.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Google's willingness to pay for it signals that the industry's freely available training data pool may be running dry. The company paid Reddit $60 million for a similar arrangement back in 2024, with uneven results.&lt;/p&gt;&lt;p&gt;Anthropic's Claude Code has surged in developer adoption, and Microsoft's GitHub Copilot remains deeply embedded across enterprise workflows.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Google's Gemini-based coding tools have struggled to keep pace, and buying real-world, production-tested Android codebases could help close that gap — particularly for understanding complex application logic and building coding benchmarks (standardized tests that measure how well an AI model writes or completes code).&lt;/p&gt;&lt;p&gt;For developers receiving the email, the decision is nuanced. The IP protections appear solid on paper, but handing proprietary production code to a major platform partner carries its own risks — particularly for developers whose apps compete with Google's own ecosystem products.&lt;/p&gt;&lt;p&gt;Google has not publicly commented on the program.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgw6Ifm2FvrPpT_dUxTqgLUAWwPpiljWU68Eyr5TEMTUYer7ILqJtf6vvVQq1_JVTvEDUmQs-1cVZSUOHi6TU6lCrLRhJ8aXH10tnAR5GQgWcS1b5jTD_IZYXiKb4vkIxlZqo_CWJ7Xbg8zX3EuyF-qC7o-DFSXoVB_srESyWmKqKZWdTf6v67DDBnY1gc/s72-c/android-app-development.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Apple Agrees to Submit India Financials to Antitrust Regulator</title><link>https://www.cyberkendra.com/2026/06/apple-agrees-to-submit-india-financials.html</link><category>Apple</category><category>India</category><pubDate>Wed, 3 Jun 2026 22:48:36 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-8291048481119919307</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="Apple India Digital Data" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggQKIdBvPYNqzIBhRM_L3mmKDO_WLinBR4AHgrVY9TkdpiUz4ptZz_oNVj_jyprih7V6bnudINrbZAps7qbDpfPN4FDFTwsSoO1eHN-nsScVSIXRkXj1-QBjILFMvq5C3FmjQdssGjOkMDyOEQeE6YPK6NhMCJcu8Cx_GM1h9yUcrpfJFhWYRUQCL4D1U/s16000/apple-india-data.webp" title="Apple India Digital Data" /&gt;&lt;/div&gt;&lt;p&gt;For four years, Apple played a careful legal game in India — deny wrongdoing, challenge the law, delay the paperwork. That strategy appears to be running out of road.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Apple has agreed to submit India-specific financial data to the Competition Commission of India (CCI), the country's antitrust watchdog, by June 25. A confidential CCI order reviewed by &lt;a href="https://www.reuters.com/world/india/apple-agrees-submit-india-financials-long-pending-antitrust-case-2026-06-03/" rel="nofollow" target="_blank"&gt;Reuters confirms&lt;/a&gt; the move, which came at a May 21 hearing where Apple's lawyer formally requested a "final extension" to file the figures. The commission granted it.&lt;/p&gt;&lt;p&gt;It's a notable reversal. Apple had previously refused to hand over any financial information, arguing the entire case should be put on ice while it separately fought India's revised antitrust penalty law in court. That law is the crux of Apple's resistance — it allows fines based on a company's global revenue, not just what it earns in India. Under that framework, Apple's exposure could reach as high as $38 billion.&lt;/p&gt;&lt;p&gt;The CCI repeatedly rejected Apple's delay tactics, insisting it only needed India-specific financials to begin with. Last month, a Delhi High Court judge told Apple plainly to cooperate. It seems that message landed.&lt;/p&gt;&lt;p&gt;The case itself dates back to 2021, brought by a coalition including Match Group (owner of Tinder) and the Alliance of Digital India Foundation, which represents Indian startups. The complaint centred on Apple's App Store policies — specifically, forcing developers to use Apple's proprietary in-app billing system and blocking any third-party payment alternatives.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The CCI wrapped up its investigation in 2024, concluding that Apple had abused its dominant position and that the App Store functioned as an "unavoidable trading partner" for developers.&lt;/p&gt;&lt;p&gt;The timing matters beyond the courtroom. India is one of Apple's fastest-growing markets, with iPhone now commanding 9% of the smartphone market — up from just 2% five years ago. Apple has also been aggressively ramping up manufacturing in India to reduce its dependence on China. Picking a prolonged regulatory fight with New Delhi was always an awkward position to hold.&lt;/p&gt;&lt;p&gt;With financial data now on the table, the CCI has what it needs to move toward a penalty decision. Whether Apple contests the eventual fine is another question — but the stalling phase, for now, appears to be over.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggQKIdBvPYNqzIBhRM_L3mmKDO_WLinBR4AHgrVY9TkdpiUz4ptZz_oNVj_jyprih7V6bnudINrbZAps7qbDpfPN4FDFTwsSoO1eHN-nsScVSIXRkXj1-QBjILFMvq5C3FmjQdssGjOkMDyOEQeE6YPK6NhMCJcu8Cx_GM1h9yUcrpfJFhWYRUQCL4D1U/s72-c/apple-india-data.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>OpenAI's Codex AI Discovers "HTTP/2 Bomb" That Can Crash Major Web Servers in Seconds</title><link>https://www.cyberkendra.com/2026/06/openais-codex-ai-discovers-http2-bomb.html</link><category>Internet</category><category>Security</category><category>Vulnerability</category><pubDate>Wed, 3 Jun 2026 22:28:06 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-5739769409004490648</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="HTTP/2 bomb denial-of-service vulnerability" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiSHPkmoxkNRbYU0EBn-lLpMVVjwerduodg1UK9QbnVlyoFTp5MpXr4q5ufWjXMETqh6eWnMBenaKSpSZDGlyFaAbkqZdsx7B-p1aQzkj8A6MFhxAV523vyMCAo_8GLnQYd67dUTmGgZaAkqwcmgMbqJ7zoqRn5OdNCYgduFVAJr-6UcvfhtOYgDNokrY/s16000/http2-bomb.webp" title="HTTP/2 bomb denial-of-service vulnerability" /&gt;&lt;/div&gt;&lt;p&gt;An AI model just found a decade-old attack that human security researchers somehow missed — and it works against almost every major web server on the internet.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;OpenAI's Codex AI has discovered a remote denial-of-service exploit that researchers are calling the &lt;b&gt;HTTP/2 Bomb&lt;/b&gt;. The attack silently drains a server's memory to the point of collapse, and the most alarming part: one home computer on a standard broadband connection can render a vulnerable server inaccessible in under 20 seconds.&lt;/p&gt;&lt;p&gt;The exploit targets &lt;b&gt;nginx, Apache httpd, Microsoft IIS, Envoy, and Cloudflare Pingora&lt;/b&gt; — in their default configurations — and a Shodan scan puts the number of exposed internet-facing servers at over 880,000.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What Codex Actually Did&lt;/h3&gt;&lt;p&gt;The attack chains two HTTP/2 features that security researchers had separately flagged as dangerous back in 2016, but never combined into a working exploit against modern servers. Codex read the codebases, recognized that the two techniques compose into something far more destructive, and built it.&lt;/p&gt;&lt;p&gt;The first piece is an &lt;b&gt;HPACK indexed-reference bomb&lt;/b&gt;: &lt;a href="https://blog.cloudflare.com/hpack-the-silent-killer-feature-of-http-2/" rel="nofollow" target="_blank"&gt;HPACK&lt;/a&gt; is HTTP/2's header compression system. An attacker seeds it with one header entry, then fires thousands of 1-byte references to it. Each byte on the wire forces the server to allocate a full copy of the header in memory — up to 4,000 bytes per reference against Apache and Envoy.&lt;/p&gt;&lt;p&gt;The second piece is an &lt;b&gt;HTTP/2 window stall&lt;/b&gt;: the attacker advertises a zero-byte flow-control window, which prevents the server from ever finishing its response — and therefore never freeing any of that allocated memory. Occasional 1-byte keep-alive frames reset the server's timeout indefinitely, pinning every byte in RAM for as long as the attack runs.&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" data-original-height="819" data-original-width="1456" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-GuBbKKrreAOeJT_FrB_4WzB7yKLD2Q8BEixMtRuCV2RlzEcASvWucg_K4EXbVqskhWp-El2XQsomokbn73wGakIqOk5XwTRm4tDsH6aVLieSRkWF_hm0osQ8FcC7Lv6baUrXEl6udMvt1gdsGq3eCshyphenhyphenuD_ekST5Zve1-S4w-AibUEFn2HQbDPobJqk/s16000/5ca91bca-3d08-428c-aed2-64a4b18bdd63_1920x1080.webp" /&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Against Apache httpd and Envoy, a single client can consume and hold 32 GB of server memory in roughly 18–20 seconds.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Patches and Mitigations&lt;/h3&gt;&lt;p&gt;nginx patched the issue in version 1.29.8 by introducing a max_headers directive (default: 1000). Apache httpd's &lt;a href="https://github.com/icing/mod_h2/releases" rel="nofollow" target="_blank"&gt;fix landed in mod_http2 v2.0.41&lt;/a&gt; with a CVE assigned as &lt;b&gt;CVE-2026-49975&lt;/b&gt;. Microsoft IIS, Envoy, and Cloudflare Pingora have been notified but have no patches available yet.&lt;/p&gt;&lt;p&gt;If you can't update immediately, the safest fallback across all affected servers is to disable HTTP/2 entirely (http2 off for nginx; Protocols http/1.1 for Apache). For unpatched deployments of IIS, Envoy, or Pingora, placing the server behind a reverse proxy that enforces a hard cap on per-request header count offers partial protection.&lt;/p&gt;&lt;p&gt;The researchers also note a broader architectural lesson: HTTP/2's spec accounts for amplification ratios, but not for memory that stays pinned — and fixing one without the other leaves the door open.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiSHPkmoxkNRbYU0EBn-lLpMVVjwerduodg1UK9QbnVlyoFTp5MpXr4q5ufWjXMETqh6eWnMBenaKSpSZDGlyFaAbkqZdsx7B-p1aQzkj8A6MFhxAV523vyMCAo_8GLnQYd67dUTmGgZaAkqwcmgMbqJ7zoqRn5OdNCYgduFVAJr-6UcvfhtOYgDNokrY/s72-c/http2-bomb.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>An AI Security Tool Dug Up a 2-Year-Old Redis Bug That Lets Attackers Take Over Servers</title><link>https://www.cyberkendra.com/2026/06/an-ai-security-tool-dug-up-2-year-old.html</link><category>Security</category><category>Vulnerability</category><pubDate>Wed, 3 Jun 2026 21:58:01 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-2273601615627185575</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="CVE-2026-23479 - Redis Vulnerability" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLxiAu94dY8Odxfe71pbstxLjsFwYDbLVS6wyt9vYZZlgY6TWAwKUhDWU6dyLkhmUt-QNQTIXr7GO924zro19p1D75d0LupDWN377HXcxt0cpieHcN1_aIkY9V31HRtVZo3kJA4ZOLhq8UWPpuOSOPbA2eBSsRt6q1FGgXROesdP5RLhXAamNrpSRrjqo/s16000/CVE-2026-23479.webp" title="CVE-2026-23479 - Redis Vulnerability" /&gt;&lt;/div&gt;&lt;p&gt;A flaw that sat undetected in Redis for over two years — silently present in every stable release since version 7.2.0 — has been patched after an AI-powered security tool demonstrated a working remote code execution exploit against it.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;The vulnerability, tracked as &lt;b&gt;CVE-2026-23479&lt;/b&gt; and rated 7.7 (High), was&lt;a href="https://www.zeroday.cloud/blog/redis-cve-2026-23479-deep-dive" rel="nofollow" target="_blank"&gt; discovered by Team Xint Code&lt;/a&gt; using Xint Code, a fully autonomous AI security analysis tool. A live exploit was demonstrated at the ZeroDay.Cloud 2025 conference in London last December. Redis shipped patches on May 5, 2026.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What's the bug?&lt;/h3&gt;&lt;p&gt;The flaw lives inside &lt;code&gt;unblockClientOnKey()&lt;/code&gt; in Redis's &lt;code&gt;blocked.c&lt;/code&gt; source file — a function responsible for handling clients that were waiting on a key to become available. When that blocked client gets evicted from memory at exactly the wrong moment, the function continues using a pointer to memory that has already been freed.&amp;nbsp;&lt;/p&gt;&lt;p&gt;This class of bug is known as a use-after-free (UAF) — the program keeps accessing a memory address after the data at that address has been discarded, which an attacker can exploit by filling that address with their own crafted data.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;How bad is it in practice?&lt;/h3&gt;&lt;p&gt;The exploit chain runs in three stages: first, a one-line Lua script leaks a heap memory address; next, the attacker deliberately balloons a client's memory buffer, parks it on a stream command, then drops memory limits to trigger the eviction mid-call; finally, a &lt;code&gt;&lt;b&gt;SET&lt;/b&gt;&lt;/code&gt; command reclaims the freed memory slot with a fake client structure.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Redis then uses that fake structure to perform an out-of-bounds write, which the attacker redirects to overwrite the function pointer for &lt;code&gt;strcasecmp()&lt;/code&gt; in the Global Offset Table, swapping it with &lt;code&gt;system()&lt;/code&gt;. The next Redis command parsed effectively becomes an OS shell command.&lt;/p&gt;&lt;p&gt;The result: full code execution as the Redis daemon — meaning every key, every credential in config files, and network access to adjacent services.&lt;/p&gt;&lt;p&gt;Wiz's analysis found that 80% of cloud environments run Redis, and nearly 85% of those instances are configured without a password — substantially widening the real-world attack surface beyond what the CVSS score alone suggests.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Who needs to act?&lt;/h3&gt;&lt;p&gt;The bug was introduced in Redis 7.2.0 and affects every stable release up through 7.2.13, 7.4.8, 8.2.5, 8.4.2, and 8.6.2. Fixed versions are 7.2.14, 7.4.9, 8.2.6, 8.4.3, and 8.6.3. Redis Cloud customers are already protected — patches were deployed automatically.&lt;/p&gt;&lt;p&gt;For self-managed deployments, upgrade immediately. If patching isn't immediately possible, restrict &lt;code&gt;CONFIG&lt;/code&gt;, &lt;code&gt;@scripting&lt;/code&gt;, and stream commands to roles that strictly need them — the full exploit requires all three in a single session.&lt;/p&gt;&lt;p&gt;As of publication, there is no evidence of active exploitation in the wild.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLxiAu94dY8Odxfe71pbstxLjsFwYDbLVS6wyt9vYZZlgY6TWAwKUhDWU6dyLkhmUt-QNQTIXr7GO924zro19p1D75d0LupDWN377HXcxt0cpieHcN1_aIkY9V31HRtVZo3kJA4ZOLhq8UWPpuOSOPbA2eBSsRt6q1FGgXROesdP5RLhXAamNrpSRrjqo/s72-c/CVE-2026-23479.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>K2view vs MOSTLY AI for Synthetic Data Generation</title><link>https://www.cyberkendra.com/2026/06/k2view-vs-mostly-ai-for-synthetic-data.html</link><pubDate>Tue, 2 Jun 2026 10:33:26 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-6842687612160665820</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="Synthetic data generation" border="0" data-original-height="1125" data-original-width="2000" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZY4dGmmnFGjgtSiyZ02YUFEkg-dAaI_8BuH5izMu7sd0HMz6i5dyt2JHBCRC1W0JmQuHqWa9GkI36OJfBcaINPB0cgEYxpKVtyJ7_FmG3o5Pmx0NvIWq7Xqair5X6fAYZicONzjtJ3AsbrbVo4gIsp1hRqxxXfMbR6HVVse6lgTdD0EtwXqPXjLLGFl0/s16000/149157.webp" title="Synthetic data generation" /&gt;&lt;/div&gt;&lt;p&gt;Synthetic data generation has gone from “nice experiment” to “real necessity” for many engineering and data teams. Compliance requirements are tightening, customer data is more sensitive than ever, and organizations need faster access to safe, realistic datasets for testing, analytics, and AI initiatives.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;At the same time, purely &lt;a href="https://medium.com/@ahmedfibrahim/why-your-fake-data-is-failing-you-and-how-to-generate-smarter-synthetic-datasets-05e0325d3ecd" rel="" target="_blank"&gt;artificial datasets&lt;/a&gt; do not always behave like real-world data. Tests may pass, models may train successfully, and demos may look convincing, only for production environments to expose gaps later. The challenge is creating data that is both safe and realistic.&lt;/p&gt;&lt;p&gt;That is where &lt;a href="https://www.k2view.com/blog/mostly-ai-vs-k2view/" target="_blank"&gt;K2view and MOSTLY AI&lt;/a&gt; enter the conversation. They are frequently compared in a Mostly AI vs K2view evaluation, yet they approach synthetic data generation from different perspectives. Understanding those differences is essential when deciding which platform best aligns with your goals.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Why synthetic data is hard (even when it sounds easy)&lt;/h3&gt;&lt;p&gt;Many people assume synthetic data generation is simply about creating random users or transactions. In practice, the scenarios that expose defects are rarely random. They are usually highly specific combinations of events and relationships:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;A customer with multiple addresses across countries&lt;/li&gt;&lt;li&gt;A policyholder with a lapse and reinstatement history&lt;/li&gt;&lt;li&gt;An account with unusual transaction timing&lt;/li&gt;&lt;li&gt;An e-commerce customer with refunds, chargebacks, and partial shipments&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Synthetic data must preserve relationships, behaviors, and dependencies without exposing real individuals. If relationships are lost, the data becomes unrealistic. If too much information is retained, privacy risks increase.&lt;/p&gt;&lt;p&gt;Every synthetic data platform attempts to balance realism and privacy.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;K2view: enterprise-scale synthetic data with lifecycle automation&lt;/h3&gt;&lt;p&gt;K2view approaches synthetic data generation as part of a broader enterprise data delivery framework. Rather than focusing only on generating synthetic records, K2view manages the entire lifecycle of preparing, protecting, generating, and provisioning production-like data.&lt;/p&gt;&lt;p&gt;Its business entity architecture organizes information around real-world entities such as customers, policies, patients, or accounts. This allows relationships across multiple systems to be preserved automatically, helping ensure that synthetic datasets remain realistic and usable.&lt;/p&gt;&lt;p&gt;Consider a QA team testing a customer onboarding journey that spans CRM, billing, support, and identity systems. The challenge is not simply generating records. The challenge is maintaining consistency across every connected system. K2view's entity-based approach is designed specifically for these complex enterprise scenarios.&lt;/p&gt;&lt;p&gt;Where K2view typically resonates:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Large enterprises with multiple interconnected systems&lt;/li&gt;&lt;li&gt;Teams requiring repeatable, self-service data provisioning&lt;/li&gt;&lt;li&gt;Organizations with strict governance and compliance requirements&lt;/li&gt;&lt;li&gt;Testing, analytics, and AI initiatives that depend on relational accuracy&lt;/li&gt;&lt;li&gt;Environments where synthetic data, &lt;a href="https://www.techtarget.com/searchsecurity/definition/data-masking" target="_blank"&gt;masking&lt;/a&gt;, and subsetting must work together&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;K2view also supports multiple synthetic data generation approaches, including rules-based, cloning-based, masking-based, and GenAI-based methods, allowing organizations to choose the most appropriate technique for each use case.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;MOSTLY AI: synthetic data generation focused on privacy and analytics&lt;/h3&gt;&lt;p&gt;MOSTLY AI is known primarily for synthetic data generation designed to preserve statistical properties while &lt;a href="https://www.cyberkendra.com/2024/03/new-research-exposes-privacy-risks-of.html" target="_blank"&gt;protecting privacy&lt;/a&gt;. The platform is particularly popular among organizations that need to share data safely or build machine learning models without exposing sensitive information.&lt;/p&gt;&lt;p&gt;A common example is a company that wants to provide data to external partners, researchers, or business units but cannot share production data due to privacy concerns. In these situations, synthetic data can provide useful patterns without exposing actual individuals.&lt;/p&gt;&lt;p&gt;Where MOSTLY AI is often a good fit:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Privacy-first initiatives&lt;/li&gt;&lt;li&gt;Data sharing and collaboration projects&lt;/li&gt;&lt;li&gt;Analytics and AI model development&lt;/li&gt;&lt;li&gt;Organizations seeking a straightforward synthetic data workflow&lt;/li&gt;&lt;li&gt;Teams focused primarily on tabular datasets&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;MOSTLY AI's no-code interface and emphasis on statistical fidelity make it attractive for data science and analytics teams. However, organizations working with highly interconnected enterprise systems may require additional effort to maintain relationships and operational consistency across complex environments.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The key difference: enterprise data operations vs synthetic data specialization&lt;/h3&gt;&lt;p&gt;The most practical way to compare the two platforms is to focus on the primary business objective.&lt;/p&gt;&lt;p&gt;If your goal is generating privacy-preserving synthetic datasets for analytics, model training, and data sharing, MOSTLY AI offers a focused synthetic data platform with strong statistical fidelity.&lt;/p&gt;&lt;p&gt;If your goal is delivering realistic, production-like data across testing, analytics, AI, and enterprise operations while preserving relationships across multiple systems, K2view provides broader lifecycle coverage and operational control.&lt;/p&gt;&lt;p&gt;This distinction explains why many evaluations should not focus on which platform is universally better, but rather which platform is better aligned with the organization's requirements.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;A practical evaluation checklist&lt;/h3&gt;&lt;p&gt;When comparing synthetic data platforms, consider these questions:&lt;/p&gt;&lt;p&gt;&lt;b&gt;1. Does the dataset support real business processes?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;A.&amp;nbsp;&lt;/b&gt;Can users execute critical workflows and test scenarios successfully, or does the data require significant remediation?&lt;/p&gt;&lt;p&gt;&lt;b&gt;2. How much manual effort is required?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;A.&amp;nbsp;&lt;/b&gt;Do teams spend time fixing relationships, constraints, and data quality issues after generation?&lt;/p&gt;&lt;p&gt;&lt;b&gt;3. Can datasets be regenerated consistently?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;A.&amp;nbsp;&lt;/b&gt;Repeatability is essential for testing, troubleshooting, and governance.&lt;/p&gt;&lt;p&gt;&lt;b&gt;4. Will privacy and compliance teams approve it?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;A.&amp;nbsp;&lt;/b&gt;Technical capability matters only if the solution satisfies security, privacy, and regulatory requirements.&lt;/p&gt;&lt;p&gt;&lt;b&gt;5. Can the approach scale across the enterprise?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;A.&amp;nbsp;&lt;/b&gt;A solution that works for one department may not work effectively across multiple teams, applications, and environments.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Bottom line&lt;/h3&gt;&lt;p&gt;K2view and MOSTLY AI both address the growing demand for synthetic data, but they solve different challenges.&lt;/p&gt;&lt;p&gt;MOSTLY AI is often a strong choice for organizations seeking privacy-focused synthetic datasets for analytics, AI, and data sharing.&lt;/p&gt;&lt;p&gt;K2view is often a stronger fit for enterprises that need realistic, production-like synthetic data across complex environments, along with lifecycle automation, governance, and cross-system relational consistency.&lt;/p&gt;&lt;p&gt;The best choice depends on the use case. Organizations focused primarily on synthetic analytics data may prefer MOSTLY AI, while enterprises requiring scalable, end-to-end synthetic data operations are likely to find K2view better aligned with their long-term requirements.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZY4dGmmnFGjgtSiyZ02YUFEkg-dAaI_8BuH5izMu7sd0HMz6i5dyt2JHBCRC1W0JmQuHqWa9GkI36OJfBcaINPB0cgEYxpKVtyJ7_FmG3o5Pmx0NvIWq7Xqair5X6fAYZicONzjtJ3AsbrbVo4gIsp1hRqxxXfMbR6HVVse6lgTdD0EtwXqPXjLLGFl0/s72-c/149157.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Red Hat Cloud Services npm Packages Hijacked to Steal Developer Secrets in Sophisticated Supply Chain Attack</title><link>https://www.cyberkendra.com/2026/06/red-hat-cloud-services-npm-packages.html</link><category>Security</category><category>Supply Chain</category><pubDate>Tue, 2 Jun 2026 09:06:37 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-3562190473455116516</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="RedHat NPM Packages" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwDhQtLprPqzXG8k4FpFEO4fuuSKa6GXKcHsBBYpxLtTIv_RSBD-wQZsHq5OHMRBnYzcGVXlY3Wx-65D_kcCGZvDTn7LNZjgTs-8PL6YQpqZ1ldbUwPQnS3fe3tSm6Tu4CJ-Cvkjxl1_ITEPWi-HRBtEDExfe_U8Tz_il4oj_9oryiQY9He3xDLOF521k/s16000/redhat-npm.webp" title="RedHat NPM Packages" /&gt;&lt;/div&gt;&lt;p&gt;Attackers compromised the official Redhat cloud services npm namespace on June 1, 2026, injecting a sophisticated credential-harvesting worm into 95 package versions used by thousands of developers building Red Hat Insights and Hybrid Cloud Console applications. The payload fired automatically the moment anyone ran &lt;i&gt;npm install&lt;/i&gt; — no import, no function call required.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;The attack, documented independently by Socket and StepSecurity within hours of detection, traces back to a compromised CI/CD pipeline in the &lt;code&gt;RedHatInsights/javascript-clients&lt;/code&gt; GitHub repository. Every malicious version was published through the project's own GitHub Actions OIDC workflow — a trusted automation token used to push real releases — meaning the packages carried legitimate provenance signatures that most security tools would not question.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What Made This Unusually Dangerous&lt;/h3&gt;&lt;p&gt;The malicious &lt;code&gt;index.js&lt;/code&gt; weighed 4.2 MB — dozens of times heavier than a normal library file — and buried its payload under four distinct obfuscation layers: ROT-21 character encoding, AES-128-GCM encryption, a custom base64 string table requiring 284 rotation cycles to decode, and a PBKDF2-based cipher with 200,000 iterations to prevent brute-forcing. The real payload only materialised in memory at runtime, making static package scanners largely blind to it.&lt;/p&gt;&lt;p&gt;Once triggered, the malware downloaded the Bun JavaScript runtime silently from GitHub, decrypted the main payload into a randomly named &lt;code&gt;/tmp/p*.js&lt;/code&gt; file, executed it, and deleted the file — all before a developer could notice anything amiss. On developer workstations, it detached into a background process so credential harvesting continued after the install command finished.&lt;/p&gt;&lt;p&gt;The credential sweep was exhaustive: GitHub tokens, npm publish tokens, AWS access keys, Azure service principals, GCP application credentials, Kubernetes service account tokens, HashiCorp Vault tokens, SSH private keys, &lt;code&gt;.npmrc&lt;/code&gt;, &lt;code&gt;.pypirc&lt;/code&gt;, &lt;code&gt;.netrc&lt;/code&gt;, Docker registry authentication, and even cryptocurrency wallet files were all targeted. On GitHub Actions runners, it went further — reading &lt;code&gt;/proc/&amp;lt;pid&amp;gt;/mem&lt;/code&gt; to extract live secrets directly from the Runner.Worker process memory, including secrets masked in workflow logs that never touch disk.&lt;/p&gt;&lt;p&gt;Perhaps most alarming: the worm was self-propagating. Using any stolen npm token and the &lt;code&gt;bypass_2fa&lt;/code&gt; publish parameter, it autonomously republished backdoored versions of other packages the victim account could publish to — even overriding two-factor authentication — seeding the next wave of infections without any attacker involvement.&lt;/p&gt;&lt;p&gt;For persistence on developer machines, the malware injected a SessionStart hook into &lt;code&gt;~/.claude/settings.json&lt;/code&gt; (Claude Code's configuration) and a folderOpen task into &lt;code&gt;.vscode/tasks.json&lt;/code&gt;, ensuring attacker code ran on every IDE session even after &lt;code&gt;node_modules&lt;/code&gt; was deleted.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Attribution and Scope&lt;/h3&gt;&lt;p&gt;Socket linked the campaign's tactics — install-time execution, CI/CD targeting, encrypted exfiltration, and downstream propagation — to the Shai-Hulud attack framework, which the threat group TeamPCP open-sourced recently alongside a BreachForums contest rewarding package compromises. Because the tooling is now public, attribution to any single actor remains unclear.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What You Should Do Now&lt;/h3&gt;&lt;p&gt;If your projects or CI pipelines installed any &lt;code&gt;@redhat-cloud-services&lt;/code&gt; package between approximately 10:54 UTC and 15:25 UTC on June 1, treat the environment as compromised. Immediately rotate all credentials accessible to those jobs: GitHub tokens, npm tokens, cloud provider keys, Kubernetes tokens, and any secrets stored in environment variables or CI secret stores. Search lockfiles and build logs for the affected versions, inspect &lt;code&gt;~/.claude/settings.json&lt;/code&gt; and &lt;code&gt;.vscode/tasks.json&lt;/code&gt; for injected hooks, and hunt for &lt;code&gt;/tmp/p*.js&lt;/code&gt; and &lt;code&gt;tmp.0987654321.lock&lt;/code&gt; artefacts. Do not rely on uninstalling the npm package — the persistence mechanisms survive it.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwDhQtLprPqzXG8k4FpFEO4fuuSKa6GXKcHsBBYpxLtTIv_RSBD-wQZsHq5OHMRBnYzcGVXlY3Wx-65D_kcCGZvDTn7LNZjgTs-8PL6YQpqZ1ldbUwPQnS3fe3tSm6Tu4CJ-Cvkjxl1_ITEPWi-HRBtEDExfe_U8Tz_il4oj_9oryiQY9He3xDLOF521k/s72-c/redhat-npm.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Instagram Accounts Are Being Stolen via Chat With Meta AI </title><link>https://www.cyberkendra.com/2026/06/instagram-accounts-are-being-stolen-via.html</link><category>Instagram</category><category>Meta</category><category>Security</category><pubDate>Tue, 2 Jun 2026 08:34:14 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-1847471351435720511</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="Hacking Instagram Accounts" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKZwmBV51VoWZUxlT2KJ2AtRb50Z925aApHpGN65Xca9UCxZo9zebGv0E5i4kPhEi6_BPtUtL3qz2S1XCb4gn0tqX2_Y878oP75rF2MuPndh1E-okON8gLjoG0sMeyy4WUL6mR4gyd4dPJ5YBIzXx_B6h1yrEqxjSyiOC7UD-ha31RCHmeGUyRCg6kj5A/s16000/instagram-hack.webp" title="Hacking Instagram Accounts" /&gt;&lt;/div&gt;&lt;p&gt;Hundreds of Instagram accounts — including the dormant Obama White House profile, the official Sephora page, and the Instagram of U.S. Space Force Chief Master Sergeant John Bentivegna — were hijacked over the weekend using a shockingly low-effort method: attackers simply asked Meta's AI support chatbot to hand over access. It complied.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;The critical logical flaw in Meta's AI-powered Instagram account recovery assistant allowed threat actors to redirect password reset links to unauthorised email addresses, effectively seizing control of high-value Instagram accounts without ever triggering a traditional two-factor authentication challenge.&amp;nbsp;&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;How the Attack Worked&lt;/h3&gt;&lt;p&gt;The method required no malware, no phishing kit, no access to the victim's inbox. Hackers tricked Meta's AI support chatbot into adding their email to victims' Instagram accounts and resetting passwords. The hacker simply asked the chatbot to add a new email address to someone else's account.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The full attack chain was almost insultingly simple. The exploit appears to have involved using a VPN connection with an IP address in or near the target's usual hometown, requesting a password reset, and then choosing to chat with Meta's AI support assistant.&amp;nbsp;&lt;/p&gt;&lt;p&gt;From there, attackers told the bot to link the target account to a new email address, after which the bot dutifully sent that address a one-time code that allowed a password reset.&lt;/p&gt;&lt;p&gt;The AI then sent an eight-digit code to the attacker's email address. The attacker entered that code and received a password reset link, giving them full access to the account. At no point did the legitimate owner receive an SMS alert, push notification, or warning of any kind.&lt;/p&gt;&lt;p&gt;&lt;!--[ Defer iframe ]--&gt;
&lt;div class='videoYt'&gt;
  &lt;iframe title='Lazy video iframe' class='lazy' data-src='//www.youtube.com/embed/9p0SA18R4lE' allow='accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture' allowfullscreen&gt;&lt;/iframe&gt;
&lt;/div&gt;&lt;/p&gt;&lt;p&gt;The vulnerability had reportedly been quietly circulating in underground Telegram channels since at least late March. Neowin found that the exploit had been active in the wild for months, going as far back as February of this year, with hackers compromising thousands of accounts.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;A Textbook "Confused Deputy" Problem — With an AI Twist&lt;/h3&gt;&lt;p&gt;Security researchers were quick to identify what went wrong at the architectural level. The AI assistant held privileged write access to account management APIs that an average user could not invoke directly. An attacker with zero credentials fed the assistant a natural language command, and the assistant, lacking any deterministic authentication checkpoint, executed the API call without question.&lt;/p&gt;&lt;p&gt;This is technically known as a "&lt;b&gt;&lt;a href="https://dl.acm.org/doi/10.1145/54289.871709" rel="nofollow" target="_blank"&gt;confused deputy&lt;/a&gt;&lt;/b&gt;" vulnerability — a privilege escalation class first documented in 1988 — but with a dangerous modern twist. What made this structurally worse than a traditional confused deputy scenario is that the "deputy" here was a probabilistic language model, not a deterministic application. A traditional program requires bypassing hard-coded conditional logic; an LLM can be redirected with words alone.&lt;/p&gt;&lt;p&gt;Ian Goldin, a threat researcher at Lumen's Black Lotus Labs, put it plainly: "AI chatbots create interesting new attack surface, and we're likely going to see a lot more of these kinds of attacks."&amp;nbsp;&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;A Second Bypass — Even With MFA Enabled&lt;/h3&gt;&lt;p&gt;While Meta's emergency patch late Friday night blocked the primary exploit, in some cases, users were asked to verify their identity with a selfie — which was bypassed using AI.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Reports circulating on social media and security forums describe a second method where attackers grabbed a publicly visible photo of the target, ran it through an AI video generator to produce a deepfake selfie, and submitted it to Meta's video verification flow. Prominent developer Gergely Orosz noted that Meta — a company going all-in on AI — somehow missed the memo on how AI can generate images and videos that renders "take a selfie" verification utterly useless.&amp;nbsp;&lt;/p&gt;&lt;p&gt;This second method reportedly affected even accounts with MFA enabled, raising questions about whether Meta's patch was truly comprehensive.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Meta's Response and the Bigger Problem&lt;/h3&gt;&lt;p&gt;Meta VP of Communications Andy Stone stated: "This issue has been resolved and we are securing impacted accounts." Internally, however, the incident landed awkwardly: it surfaced eleven days after Meta cut roughly 8,000 employees — including staff from its integrity division and cybersecurity teams specifically.&lt;/p&gt;&lt;p&gt;The stolen accounts moved fast. Premium short-handle accounts such as @hey and @jowo, valued at over $1 million combined, were quickly flipped through private Telegram channels before Meta could intervene.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What You Should Do Right Now&lt;/h3&gt;&lt;p&gt;The primary exploit only worked on accounts without multi-factor authentication. Security experts strongly recommend enabling app-based 2FA — such as Google Authenticator or Authy — instead of SMS-based verification. Additionally: use a private email address not publicly linked to your Instagram profile, generate fresh backup recovery codes and store them offline, and audit active login sessions under &lt;b&gt;Settings → Accounts Center → Password and Security&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Account recovery is specifically attractive as an attack target because it's designed to work when normal authentication is unavailable — meaning any AI-mediated recovery flow is already operating in a context where the system is relaxing its usual verification requirements, making it a natural target for exploitation. Meta may be the first major platform caught in this trap. It almost certainly won't be the last.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKZwmBV51VoWZUxlT2KJ2AtRb50Z925aApHpGN65Xca9UCxZo9zebGv0E5i4kPhEi6_BPtUtL3qz2S1XCb4gn0tqX2_Y878oP75rF2MuPndh1E-okON8gLjoG0sMeyy4WUL6mR4gyd4dPJ5YBIzXx_B6h1yrEqxjSyiOC7UD-ha31RCHmeGUyRCg6kj5A/s72-c/instagram-hack.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Nvidia's N1 and N1X Are Actually Four Chips — Full Spec Sheet Leaks Hours Before Computex</title><link>https://www.cyberkendra.com/2026/05/nvidias-n1x-laptop-chip-leaks-on.html</link><category>Tech</category><pubDate>Sun, 31 May 2026 18:28:04 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-7749070143698171319</guid><description>&lt;p&gt;&lt;/p&gt;&lt;p class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="N1X Laptop Chip Leaks" border="0" data-original-height="600" data-original-width="1200" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCrVl0PPSk1y_QUx6yftaTR4Ed8ZfnTBEkKnzd2-nDfU7r8p7DB-oLGSuiA66LP26z_4Y1eggwn9Cr2C67h-Tg2OR27YUkcasPNy-ZrnzfmSARMZ7U9dGE62qDmQ6jKsTYojLH4p8b24crElOOmDiiJAzK59Oz7aTd2Hry7opxhVobgyZjoFiz-QOKetI/s16000/n1x-chips.webp" title="N1X Laptop Chip Leaks" /&gt;&lt;/p&gt;&lt;p&gt;Nvidia has spent years teasing its way into the laptop market, and now — one day before Jensen Huang takes the Computex stage in Taipei — a Geekbench result from a mystery HP prototype gave the internet its first look at N1X CPU performance.&amp;nbsp;&lt;/p&gt;&lt;p&gt;But that benchmark leak has just been overshadowed by something more revealing: a full four-SKU spec sheet for the entire N1 family, courtesy of Videocardz, sourced from documents dating back to 2024.&lt;/p&gt;&lt;p&gt;Together, the two leaks paint a clearer picture than either does alone. The Geekbench result tells you where the top-end chip lands on CPU throughput. The spec sheet tells you what you're actually buying at each price point — and reveals that Nvidia's Windows PC ambitions span a much wider range than the single flagship chip most coverage has focused on.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Four chips, not two&lt;/h3&gt;&lt;p&gt;The N1 family splits into two product lines with two SKUs each. The premium N1X targets performance laptops and mobile workstations at a projected $2,000-plus price point, directly competing with the MacBook Pro. The mainstream N1 aims at the sub-$1,500 midrange — an area where Qualcomm's Snapdragon X Elite has struggled to find traction despite strong efficiency credentials.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Full N1 Family Specification Comparison&lt;/b&gt;&lt;/p&gt;&lt;div class="table noWrap w100"&gt;&lt;table border="1" cellpadding="8" cellspacing="0"&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th&gt;Model&lt;/th&gt;
      &lt;th&gt;CPU Cores&lt;/th&gt;
      &lt;th&gt;GPU (CUDA)&lt;/th&gt;
      &lt;th&gt;PCIe Lanes&lt;/th&gt;
      &lt;th&gt;Memory&lt;/th&gt;
      &lt;th&gt;TDP&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;N1X (1) — GB10&lt;/td&gt;
      &lt;td&gt;20 (10P + 10E)&lt;/td&gt;
      &lt;td&gt;6,144&lt;/td&gt;
      &lt;td&gt;12× PCIe 5.0 + 5× PCIe 4.0&lt;/td&gt;
      &lt;td&gt;16GB–128GB / 16-channel&lt;/td&gt;
      &lt;td&gt;45–80W&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;N1X (2)&lt;/td&gt;
      &lt;td&gt;18 (9P + 9E)&lt;/td&gt;
      &lt;td&gt;5,120&lt;/td&gt;
      &lt;td&gt;12× PCIe 5.0 + 5× PCIe 4.0&lt;/td&gt;
      &lt;td&gt;16GB–128GB / 16-channel&lt;/td&gt;
      &lt;td&gt;45–80W&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;N1 (1)&lt;/td&gt;
      &lt;td&gt;12 (8P + 4E)&lt;/td&gt;
      &lt;td&gt;2,560&lt;/td&gt;
      &lt;td&gt;8× PCIe 5.0 + 3× PCIe 4.0&lt;/td&gt;
      &lt;td&gt;8GB–64GB / 8-channel&lt;/td&gt;
      &lt;td&gt;18–45W&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;N1 (2)&lt;/td&gt;
      &lt;td&gt;10 (7P + 3E)&lt;/td&gt;
      &lt;td&gt;2,048&lt;/td&gt;
      &lt;td&gt;8× PCIe 5.0 + 3× PCIe 4.0&lt;/td&gt;
      &lt;td&gt;8GB–64GB / 8-channel&lt;/td&gt;
      &lt;td&gt;18–45W&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The N1X flagship is a rebranded GB10 — that's a big deal&lt;/h3&gt;&lt;p&gt;The top-end N1X (20-core, 6,144 CUDA cores) is not a new design. Jensen Huang already confirmed it is the same GB10 silicon found inside Nvidia's DGX Spark — a $3,000 mini-PC positioned as a personal AI supercomputer. Putting that chip inside a consumer Windows laptop is a different proposition entirely.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The GB10 in the DGX Spark runs at a fixed power envelope; in a laptop chassis with thermal constraints and a battery to preserve, achieving the same throughput will require careful firmware and thermals work from OEM partners.&lt;/p&gt;&lt;p&gt;The N1X also arrives in an 18-core (9+9) variant with 5,120 CUDA cores — the same TDP range of 45W to 80W, but presumably hitting lower sustained clocks and with modestly less GPU compute. Both N1X SKUs share a generous connectivity spec: 12 PCIe 5.0 lanes, 5 PCIe 4.0 lanes, and support for up to three M.2 SSDs.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What the Geekbench leak tells us — and doesn't&lt;/h3&gt;&lt;p&gt;The benchmark result uploaded on June 10, 2025, from an HP 8EA3 prototype running Ubuntu 24.04.1 LTS represents the top N1X SKU: 20 cores, 119.59 GB reported (128 GB LPDDR5X), at 2.81 GHz base frequency. It scored 2,821 single-core and 17,152 multi-core on Geekbench 6.&lt;/p&gt;&lt;div class="table noWrap w100"&gt;&lt;table border="1" cellpadding="8" cellspacing="0"&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th&gt;Chip&lt;/th&gt;
      &lt;th&gt;Single-Core (GB6)&lt;/th&gt;
      &lt;th&gt;Multi-Core (GB6)&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;Nvidia N1X (Linux, pre-prod)&lt;/td&gt;
      &lt;td&gt;2,821 ★&lt;/td&gt;
      &lt;td&gt;17,152 ★&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;AMD Ryzen AI MAX+ 395&lt;/td&gt;
      &lt;td&gt;3,125&lt;/td&gt;
      &lt;td&gt;21,035&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Intel Core Ultra 9 285HX&lt;/td&gt;
      &lt;td&gt;3,078&lt;/td&gt;
      &lt;td&gt;22,104&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Qualcomm Snapdragon X Elite&lt;/td&gt;
      &lt;td&gt;2,693&lt;/td&gt;
      &lt;td&gt;13,950&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Apple M4 Max (macOS)&lt;/td&gt;
      &lt;td&gt;4,054&lt;/td&gt;
      &lt;td&gt;25,913&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;&lt;p&gt;The critical caveat: this result is from Linux, not Windows. ARM chips consistently score higher on Linux than on Windows 11 due to overhead from the x86 emulation layer (Prism) and immature Windows-side driver stacks.&amp;nbsp;&lt;/p&gt;&lt;p&gt;When Qualcomm's Snapdragon X Elite was benchmarked on Linux before launch, it too posted scores that did not carry over to shipping hardware. The N1X multi-core result sits roughly 10–15% behind AMD's Ryzen AI MAX+ 395 and Intel's Core Ultra 9 285HX — but both those chips were benchmarked on Windows 11, not Linux, further skewing the apparent gap.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Memory: 8,533 MT/s could be the quiet headline&lt;/h3&gt;&lt;p&gt;The N1X supports 16 LPDDR5X channels versus the base N1's 8, and a previous leak suggests both families are running memory at 8,533 MT/s.&amp;nbsp;&lt;/p&gt;&lt;p&gt;That would make N1X's memory subsystem faster than AMD's Strix Halo platform in raw bandwidth terms — a potentially significant advantage for the GPU workloads and local AI inference scenarios where memory bandwidth is the primary bottleneck. The N1 tops out at 64 GB; the N1X can scale to 128 GB, making it competitive with Apple's top-tier MacBook Pro configuration.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Why this matters more than the benchmark scores suggest&lt;/h3&gt;&lt;p&gt;CPU figures are the least interesting part of the N1X story. Every Windows ARM chip benchmarks respectably on CPU throughput. What none of them have offered — until now — is a genuine CUDA-capable GPU in a thin laptop form factor.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The N1X's Blackwell GPU with 6,144 CUDA cores is estimated to land between RTX 4070 and RTX 5070 laptop performance in compute workloads, and it brings the full CUDA software stack: PyTorch, TensorRT, RAPIDS, and every other Nvidia-ecosystem AI tool that developers have been locked to data centers or thick gaming laptops to access.&lt;/p&gt;&lt;p&gt;This is Nvidia's second attempt at an ARM-based PC chip. The first came in 2011, then again with Windows RT tablets in 2012 — both efforts stalled due to software ecosystem immaturity. The difference in 2026 is that the software ecosystem has reorganized itself around Nvidia's CUDA toolchain. Developers don't need to be convinced to support it; they already depend on it.&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;"From an industry perspective, it's a good thing. Qualcomm has struggled to grab a significant chunk of the PC market despite offering excellent battery life, in part because developers didn't see a need to focus scarce resources on a somewhat different version of Windows." — Carolina Milanesi, analyst at Current Strategies, speaking to Axios&lt;/p&gt;&lt;/blockquote&gt;&lt;h3 style="text-align: left;"&gt;Which laptops are coming and at what price&lt;/h3&gt;&lt;p&gt;Dell XPS, Lenovo Legion 7, ASUS ProArt, and Microsoft Surface have all signaled N1X or N1 variants ahead of the show. With the N1 family's TDP floor at 18W, ultrabook-class devices are feasible alongside workstation replacements running at 80W.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The sub-$1,500 N1 tier in particular could be genuinely disruptive if OEMs price it competitively — it offers more GPU compute than anything Qualcomm or Intel currently puts in that category.&lt;/p&gt;&lt;p&gt;The one unsolved variable is pricing during what Videocardz describes as an ongoing RAM supply crunch. A 128 GB LPDDR5X configuration at 8,533 MT/s will not be cheap. Nvidia has never competed primarily on price, and it will not start now. The question is whether the CUDA premium justifies the premium ticket — and for developers and AI-native workloads, the answer is likely yes.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCrVl0PPSk1y_QUx6yftaTR4Ed8ZfnTBEkKnzd2-nDfU7r8p7DB-oLGSuiA66LP26z_4Y1eggwn9Cr2C67h-Tg2OR27YUkcasPNy-ZrnzfmSARMZ7U9dGE62qDmQ6jKsTYojLH4p8b24crElOOmDiiJAzK59Oz7aTd2Hry7opxhVobgyZjoFiz-QOKetI/s72-c/n1x-chips.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Apple's Smart Glasses Just Slipped to Late 2027 — And That Delay Could Cost It Everything</title><link>https://www.cyberkendra.com/2026/05/apples-smart-glasses-just-slipped-to.html</link><category>Apple</category><pubDate>Sun, 31 May 2026 22:18:52 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-3198438626234971279</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="Apple Glass" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZkawpciUNYOKNE5jcfust4jXJId024rcAz8CmwSThkJ8w3XMDs3AxR35Q-D2uQ9pSi4tArt3G2VYDBjwXvbdAOt25R5tVTyRJzGx4K9c54YjQYGrGZn33pNU5EPfugSKEfJIQn9_1Kgj2mqhrNjVVtYrwLUXdxm8_xXZcFpmjhjSTHUTlFJ6q2rkFrRc/s16000/apple-glass.webp" title="Apple Glass" /&gt;&lt;/div&gt;&lt;p&gt;Apple's first smart glasses — internally codenamed N50 — won't arrive until the end of 2027, according to Bloomberg's Mark Gurman. Originally slated for a late 2026 reveal and early 2027 shipping window, the timeline has slipped again, and this time the stakes are genuinely high.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;The delay matters more than a year on a product roadmap usually would. Meta sold over 7 million Ray-Ban smart glasses in 2025 alone and now commands roughly 82% of the smart glasses market.&amp;nbsp;&lt;/p&gt;&lt;p&gt;By the time Apple's frames hit store shelves, Meta will have had a four-year head start — with new Oakley AI performance glasses and a display-equipped model already shipping alongside LensCrafters retail partnerships firmly in place.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Why the Delay, and What We Know About the Hardware&lt;/h3&gt;&lt;p&gt;The holdup traces back to Siri. Apple's N50 glasses won't function as a standalone device — they pair with an iPhone over Bluetooth, offloading heavier AI processing to the phone.&amp;nbsp;&lt;/p&gt;&lt;p&gt;That makes the new, significantly upgraded Siri (expected with iOS 27) a hard dependency for the product. Siri's overhaul has itself been delayed repeatedly, pushing back not just the glasses but also camera-equipped AirPods and a suite of smart home devices.&lt;/p&gt;&lt;p&gt;The glasses themselves are hardware-first: two cameras (one for photos/video, a second dedicated to computer vision), speakers, microphones, and a custom N401 chip derived from Apple Watch silicon — optimized for all-day battery life over raw performance.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Four frame styles are reportedly being tested in premium acetate, including a Wayfarer-style rectangular and a slimmer version resembling Tim Cook's own frames. Oval-shaped cameras with LED indicator lights give the design a signature look distinct from Meta's circular modules. No display. No AR overlay. Just a wearable that sees, listens, and connects.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The $200 Billion Playbook&lt;/h3&gt;&lt;p&gt;Apple isn't framing this as a tech gadget play — it's going after the traditional eyewear industry the same way the Apple Watch dismantled the mid-tier watch market. The comparison carries weight: Swatch revenue dropped 28% between 2014 and 2025, while Fossil's sales collapsed roughly 70% over the same period. The Apple Watch did that to a market valued in the tens of billions.&lt;/p&gt;&lt;p&gt;The eyewear market is valued at roughly $200 billion annually, and the WHO estimates that 2.2 billion people worldwide have some form of vision impairment. Apple is reportedly targeting the $200–$500 price bracket — the same segment occupied by EssilorLuxottica's Ray-Ban and Oakley, Safilo, and Warby Parker.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The Uncomfortable Truth Apple Has to Reckon With&lt;/h3&gt;&lt;p&gt;Even with a 2-billion-device ecosystem and global retail presence, Apple faces a challenge the Apple Watch never did: consumers already have a preferred brand on their faces. Meta's Ray-Ban partnership gave smart glasses immediate cultural legitimacy — Wayfarers were desirable objects before any chip was inside them. Apple's N50 will launch into a market where millions of users are already comfortable with a competitor's product.&lt;/p&gt;&lt;p&gt;There's also the Android problem. Apple's longstanding refusal to support Android locks out the majority of the global smartphone market, effectively handing Meta a permanent lane. Ironically, Apple's entry could accelerate the entire category's mainstream adoption — and Meta will be right there to capture every Android user who gets curious.&lt;/p&gt;&lt;p&gt;The project has full commitment from the top: Tim Cook has reportedly called it his highest priority, and his likely successor, John Ternus, has been leading the Vision Products Group through development for two years. That's not a side project.&amp;nbsp;&lt;/p&gt;&lt;p&gt;But with Meta already scaling production capacity toward 20–30 million units per year, Apple is fighting for second place on day one — and will need its best-ever Siri to close the gap.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZkawpciUNYOKNE5jcfust4jXJId024rcAz8CmwSThkJ8w3XMDs3AxR35Q-D2uQ9pSi4tArt3G2VYDBjwXvbdAOt25R5tVTyRJzGx4K9c54YjQYGrGZn33pNU5EPfugSKEfJIQn9_1Kgj2mqhrNjVVtYrwLUXdxm8_xXZcFpmjhjSTHUTlFJ6q2rkFrRc/s72-c/apple-glass.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>A Forged Kernel Key and a Rootful Helper: Inside the CIFSwitch Linux Privilege Escalation</title><link>https://www.cyberkendra.com/2026/05/a-forged-kernel-key-and-rootful-helper.html</link><category>Linux</category><category>Security</category><category>Vulnerability</category><pubDate>Sun, 31 May 2026 17:41:57 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-3608424298793544370</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="CIFSwitch Linux Flaw" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMmS1H9zzjDe6y7Asyq0Ii8KXO00hyT5pLtD-10eILYRCI5IsWJXrW-SGUQ2zjMODlvmF-qWlYs0cKZ_jmP0CIlUsmt7CZ95wQE928bkbVyW06ej1sZZt-vEooBFoETav0s4B6xhqJKfsRaIOpqxpaDtDT277iYb_edY-XSXnEkrHeCixUIZVZcpYyacQ/s16000/CIFSwitch.webp" title="CIFSwitch Linux Flaw" /&gt;&lt;/div&gt;&lt;p&gt;A security researcher has disclosed a Linux local privilege escalation — dubbed &lt;a href="https://heyitsas.im/posts/cifswitch/" rel="nofollow" target="_blank"&gt;CIFSwitch&lt;/a&gt; — that lets any unprivileged user silently escalate to root on a wide range of distributions, including Linux Mint, Debian, Rocky Linux, CentOS Stream, Kali Linux, SLES, and several others. The kernel-side bug has sat quietly in the codebase since 2007.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;The vulnerability lies at the boundary between the Linux kernel's CIFS client — the component that handles SMB network filesystems — and a userspace helper provided by &lt;code&gt;cifs-utils&lt;/code&gt;. Alone, neither piece is obviously broken. Together, their misplaced trust becomes a clean path to the root.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;How the attack actually works&lt;/h3&gt;&lt;p&gt;When the kernel needs to authenticate a Kerberos-backed SMB mount, it offloads the credential work to a userspace binary called &lt;code&gt;cifs.upcall&lt;/code&gt;, which runs as root. To coordinate, the kernel builds a description string and requests a cifs.spnego-type key via the Linux keyring subsystem. The request-key daemon sees the key type, finds its rule, and fires &lt;code&gt;cifs.upcall&lt;/code&gt; as root.&lt;/p&gt;&lt;p&gt;The critical oversight: the kernel never checked whether the description actually originated with it. Before the fix, the &lt;code&gt;cifs_spnego_key_type&lt;/code&gt; definition had no &lt;code&gt;.vet_description&lt;/code&gt; hook — the function that would have enforced ownership. Without it, any unprivileged process could call &lt;code&gt;request_key("cifs.spnego", fake_description, ...)&lt;/code&gt; with fully attacker-crafted fields. The rootful helper launches regardless—and crucially, even if the kernel ultimately rejects the key. The exploit window opens the moment &lt;code&gt;cifs.upcall&lt;/code&gt; starts, not when it succeeds.&lt;/p&gt;&lt;p&gt;From there, the chain is elegant. The attacker supplies a fake &lt;code&gt;pid&lt;/code&gt; pointing to a process in their own mount namespace and sets &lt;code&gt;upcall_target=app&lt;/code&gt;. The helper reads those fields as trusted kernel output and switches into the attacker's namespace. Before dropping privileges, it calls &lt;code&gt;getpwuid()&lt;/code&gt; to look up the target UID — which goes through NSS (the Name Service Switch, Linux's mechanism for resolving users and groups). In the attacker's mount namespace, NSS can be configured to use a custom &lt;code&gt;nsswitch.conf&lt;/code&gt; and a malicious shared library. That library runs inside the root helper, writes a permissive entry to &lt;code&gt;sudoers.d&lt;/code&gt;, and the attacker has unrestricted root.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Who is affected&lt;/h3&gt;&lt;p&gt;Full exploitation requires three conditions: a vulnerable kernel (any version since 2007), an affected &lt;code&gt;cifs-utils&lt;/code&gt; version (6.14 or newer, or older versions that backported other CVE fixes), and the ability to create unprivileged user namespaces — a capability that is enabled by default across most modern desktop and server distributions.&lt;/p&gt;&lt;p&gt;By default, the exploit works immediately on Linux Mint 21.3 and 22.3, Kali Linux from 2021.4 through 2026.1, CentOS Stream 9, Rocky Linux 9, Debian 11 through 13, Ubuntu 18.04 through 22.04, AlmaLinux 9.7, and SLES 15 SP7. Fedora 40–44, CentOS Stream 10, Rocky Linux 10, and Ubuntu 26.04 are blocked by their default SELinux or AppArmor policies — but relaxing those policies re-enables the attack. Amazon Linux 2 and Kali Linux 2019/2020 ship with older &lt;code&gt;cifs-utils&lt;/code&gt; versions that lack the namespace-switching code entirely, leaving them unaffected.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The fix and immediate mitigations&lt;/h3&gt;&lt;p&gt;The kernel-side patch adds a &lt;code&gt;.vet_description&lt;/code&gt; hook to &lt;code&gt;cifs_spnego_key_type&lt;/code&gt; that returns &lt;code&gt;-EPERM&lt;/code&gt; unless the requesting credential matches CIFS's internal &lt;code&gt;spnego_cred&lt;/code&gt;. That single check breaks the exploit chain. The patch has been queued for stable kernels following a coordinated embargo on the linux-distros mailing list, which expired on May 27, 2026.&lt;/p&gt;&lt;p&gt;If patching immediately isn't possible, administrators can block the cifs kernel module from loading if SMB mounts aren't in use, remove &lt;code&gt;cifs-utils&lt;/code&gt; if Kerberos-authenticated mounts aren't required, override the default cifs.spnego request-key rule to negate keys instead of launching the helper, or disable unprivileged user namespace creation entirely.&lt;/p&gt;&lt;p&gt;Why this one is different&lt;/p&gt;&lt;p&gt;The researcher behind CIFSwitch, Asim Manizada, found the bug not by manually auditing code, but by directing LLM agents equipped with a semantic graph traversal tool — one that maps security-relevant kernel objects, their consumers, and where assumptions between creation time and consumption time can drift. The approach let the model reason cleanly across the kernel/userspace boundary in a way traditional static analysis tools struggle with at higher abstraction levels.&lt;/p&gt;&lt;p&gt;What makes the finding stand out isn't the primitives — none of them are novel individually. It's that the chain involves no memory corruption, no race condition, and no exotic kernel feature. It is a pure logic bug, quietly composing three independently benign design decisions into a local root that has apparently gone unnoticed for nearly two decades. That's the kind of vulnerability that tends to be everywhere once you know what to look for.&lt;/p&gt;&lt;p&gt;The proof-of-concept is now public. Check your distribution's security channel and apply patches or mitigations without delay.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMmS1H9zzjDe6y7Asyq0Ii8KXO00hyT5pLtD-10eILYRCI5IsWJXrW-SGUQ2zjMODlvmF-qWlYs0cKZ_jmP0CIlUsmt7CZ95wQE928bkbVyW06ej1sZZt-vEooBFoETav0s4B6xhqJKfsRaIOpqxpaDtDT277iYb_edY-XSXnEkrHeCixUIZVZcpYyacQ/s72-c/CIFSwitch.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>BadHost (CVE-2026-48710): One Rogue Header Line Unlocks Your Entire AI Stack</title><link>https://www.cyberkendra.com/2026/05/badhost-cve-2026-48710-one-rogue-header.html</link><category>Security</category><category>Vulnerability</category><pubDate>Tue, 26 May 2026 23:14:21 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-5375404037045346857</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiEfpzfb6leIvycDo7s_rjDsP1qZM63_Zyznaas39dABdFfyRQI8vDQuIcKpKoWgtPa8PMzP7YJKUM0OZXpFZb7aNggxe-x1cdXMcsAyNfseUQj7QIoLkRxoEFR-xML6C4NtKiDmIrqRBG68JSAKuAqcZ8_k1f_KipwyWsyedSUlLeMRrjOPNu36IpkZQ/s1600/badhost-flaw.webp" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiEfpzfb6leIvycDo7s_rjDsP1qZM63_Zyznaas39dABdFfyRQI8vDQuIcKpKoWgtPa8PMzP7YJKUM0OZXpFZb7aNggxe-x1cdXMcsAyNfseUQj7QIoLkRxoEFR-xML6C4NtKiDmIrqRBG68JSAKuAqcZ8_k1f_KipwyWsyedSUlLeMRrjOPNu36IpkZQ/s16000/badhost-flaw.webp" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;p&gt;A single, malformed HTTP header is all it takes to walk past the front door of thousands of Python-powered AI applications — no credentials, no token, no noise.&amp;nbsp;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;That's the blunt reality of &lt;b&gt;BadHost&lt;/b&gt;, a newly disclosed authentication bypass vulnerability (&lt;b&gt;CVE-2026-48710&lt;/b&gt;) in Starlette, the ASGI framework that quietly underpins the majority of modern Python AI infrastructure, from FastAPI to vLLM to LiteLLM and beyond.&lt;/p&gt;&lt;p&gt;Researchers at X41 D-Sec &lt;a href="https://x41-dsec.de/lab/advisories/x41-2026-002-starlette/" rel="nofollow" target="_blank"&gt;uncovered&lt;/a&gt; the flaw during an OSTIF-sponsored audit and published coordinated advisories on May 22, 2026, with additional credit going to independent reporters ehhthing and Nicolas Lamoureux. The reach is staggering: Starlette alone counts more than 400,000 dependent repositories on GitHub.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What Actually Happens&lt;/h3&gt;&lt;p&gt;When your browser visits &lt;code&gt;https://example.com/admin&lt;/code&gt;, it sends a request with &lt;code&gt;Host: example.com&lt;/code&gt;. Starlette rebuilds the full URL by stitching together the scheme, the Host header, and the request path—but versions before 1.0.1 never checked whether the Host header was valid.&lt;/p&gt;&lt;p&gt;An attacker exploits this by crafting a request like:&lt;/p&gt;&lt;pre&gt;GET /admin HTTP/1.1
Host: example.com/health?x=&lt;/pre&gt;&lt;p&gt;Starlette dutifully reconstructs the URL as &lt;code&gt;http://example.com/health?x=/admin&lt;/code&gt;. The router still delivers the request to &lt;code&gt;/admin&lt;/code&gt; (routing uses the real HTTP path), but &lt;code&gt;request.url.path&lt;/code&gt; — the value that middleware reads to decide who gets in — now returns &lt;code&gt;/health&lt;/code&gt;. Auth middleware checking "is this path on my public allowlist?" sees &lt;code&gt;/health&lt;/code&gt;, thinks it's a harmless public endpoint, and waves the request through. The attacker attempts to access &lt;code&gt;/admin&lt;/code&gt; without any valid credentials.&lt;/p&gt;&lt;p&gt;The exploit works against both allowlist-style ("let /health through") and denylist-style ("block everything except /health") middleware patterns. Raw TCP sockets are required to deliver the attack, since standard HTTP clients automatically normalise the Host header.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Why AI Infrastructure Is the Bullseye&lt;/h3&gt;&lt;p&gt;This isn't generically bad — it's specifically, acutely bad for AI deployments. The MCP (Model Context Protocol) specification, now widely adopted across agent frameworks, mandates the use of unauthenticated OAuth discovery endpoints. Those known public paths become a reliable, pre-built skeleton key: inject one into the Host header, and any Starlette-based MCP server's protected tools, API keys, and internal tooling are accessible without authentication.&lt;/p&gt;&lt;p&gt;vLLM (LLM inference server), LiteLLM (AI gateway proxy), Google ADK-Python, Ray Serve, BentoML, and virtually every custom FastAPI-based agent backend built on Starlette middleware are potentially in scope. Consequences range from free model access and leaked API keys to, in some confirmed cases identified through X41's CodeQL scanning, remote code execution.&lt;/p&gt;&lt;p&gt;Notably, FastAPI's built-in &lt;code&gt;Depends()&lt;/code&gt; and &lt;code&gt;Security()&lt;/code&gt; decorators are not affected — they enforce auth at the route level, not at the path string level. The danger is a custom &lt;code&gt;BaseHTTPMiddleware&lt;/code&gt; that trusts &lt;code&gt;request.url.path&lt;/code&gt; for access decisions.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Why It Went Undetected&lt;/h3&gt;&lt;p&gt;The vulnerability doesn't live in any single codebase. ASGI servers pass the raw Host header along. Starlette trusted it to reconstruct URLs. Middleware authors assumed &lt;code&gt;request.url.path&lt;/code&gt; was a safe, canonical value. Each layer behaved correctly in isolation — the exploit only emerges at their intersection. That cross-layer, cross-spec nature is exactly why automated tooling missed it.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Fix It Now&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;&lt;b&gt;Update Starlette to 1.0.1 or later. &lt;/b&gt;The patch validates the Host header against the grammar in RFC 9112/3986 and falls back to &lt;b&gt;scope["server"]&lt;/b&gt; for malformed values.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Switch middleware to scope["path"] &lt;/b&gt;instead of &lt;code&gt;request.url.path&lt;/code&gt;. The ASGI scope path comes from the HTTP request line and cannot be poisoned via Host injection.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Deploy a reverse proxy&lt;/b&gt; (nginx, Caddy, Traefik, HAProxy) in front of your ASGI server. RFC-compliant proxies reject malformed Host headers before they reach your app.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Prefer endpoint-level auth.&lt;/b&gt; Starlette's &lt;code&gt;requires()&lt;/code&gt; decorator and FastAPI's &lt;code&gt;Depends()&lt;/code&gt;/&lt;code&gt;Security()&lt;/code&gt; are enforced at the actual route, making them immune to this class of attack.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Scan your exposure&lt;/b&gt; using the free &lt;a href="https://badhost.org/" rel="nofollow" target="_blank"&gt;BadHost scanner&lt;/a&gt; at badhost.org, or run the open-source Semgrep rules and CodeQL queries from the X41 repository against your own codebase.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;If you're running any Python AI infrastructure without a reverse proxy in front — dev environments, staging, self-hosted inference servers — treat this as urgent. The PoC is public, the attack is trivially automatable, and the AI API keys sitting behind your middleware are worth far more than the cost of an upgrade.&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiEfpzfb6leIvycDo7s_rjDsP1qZM63_Zyznaas39dABdFfyRQI8vDQuIcKpKoWgtPa8PMzP7YJKUM0OZXpFZb7aNggxe-x1cdXMcsAyNfseUQj7QIoLkRxoEFR-xML6C4NtKiDmIrqRBG68JSAKuAqcZ8_k1f_KipwyWsyedSUlLeMRrjOPNu36IpkZQ/s72-c/badhost-flaw.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Malicious Packages on npm, PyPI, and Crates.io Steal Crypto Wallets, SSH Keys, and Cloud Credentials</title><link>https://www.cyberkendra.com/2026/05/malicious-packages-on-npm-pypi-and.html</link><category>Security</category><category>Supply Chain</category><pubDate>Sun, 24 May 2026 21:49:28 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-3950450892161725134</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="TrapDoor Crypto Stealer Supply Chain" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzB0VWNtg7Kq5pB6DCFy7DgIBk1PGq6Q7Z5JKZMvTkBM4T5P8Dju2QoT1v1MLwg2970v1u8ctIQB1UbINb6NUkVHQwIXScd8_DOYFxAYjZ7mgYeldwRFKj4FLe66-UPG6wKGlcftr2rEeaA4Q8VfBZ4mKCv1W_L2dg3xg-ISkO5aS0IsF_fUlwbcrfS1A/s16000/trapdoor.webp" title="TrapDoor Crypto Stealer Supply Chain" /&gt;&lt;/div&gt;&lt;p&gt;Security researchers at Socket have uncovered an &lt;a href="https://www.cyberkendra.com/search/label/Supply%20Chain" target="_blank"&gt;active supply chain&lt;/a&gt; attack that poisoned 34 packages and more than 384 versions across three major package registries — npm, PyPI, and Crates.io — in what appears to be one of the most broadly targeted credential theft campaigns seen this year.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Dubbed &lt;b&gt;TrapDoor&lt;/b&gt;, the campaign has been quietly building since at least May 19, with attackers pushing wave after wave of malicious releases over the long weekend.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The packages appear harmless at first glance — names like &lt;code&gt;token-usage-tracker&lt;/code&gt;, &lt;code&gt;prompt-engineering-toolkit&lt;/code&gt;, &lt;code&gt;eth-wallet-sentinel&lt;/code&gt;, and &lt;code&gt;sui-sdk-build-utils&lt;/code&gt; read exactly like the kind of tools crypto, DeFi, AI, and security developers install without a second thought.&lt;/p&gt;&lt;p&gt;That calculated familiarity is the point.&lt;/p&gt;&lt;p&gt;Once installed, the packages get to work immediately. The npm variants fire during installation via &lt;code&gt;postinstall&lt;/code&gt; hooks, executing a 1,149-line credential harvester called &lt;code&gt;trap-core.js&lt;/code&gt;. The script doesn't just grab whatever's lying around — it actively validates stolen AWS and GitHub tokens through live API calls, filtering out expired credentials and prioritising the useful ones for the attacker.&lt;/p&gt;&lt;p&gt;The Crates.io packages take a different path. Malicious &lt;code&gt;build.rs&lt;/code&gt; scripts — which run automatically during Rust compilation, before a developer even uses the package — search for local keystores, encrypt them using a hardcoded XOR key (&lt;code&gt;cargo-build-helper-2026&lt;/code&gt;), and quietly ship the data to GitHub Gists.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The Python packages on PyPI go further still, fetching and executing a remote JavaScript payload via &lt;code&gt;node -e&lt;/code&gt; at import time, letting the attacker update behaviour without touching the published package.&lt;/p&gt;&lt;p&gt;What TrapDoor steals is comprehensive: SSH keys, Sui, Solana, and Aptos wallet keystores, AWS credentials, GitHub tokens, browser profile and login databases, crypto wallet extension data, environment variables, and API keys.&lt;/p&gt;&lt;p&gt;But the campaign's most unusual angle is its AI-targeting capability. &lt;a href="https://socket.dev/blog/trapdoor-crypto-stealer-npm-pypi-crates" rel="nofollow" target="_blank"&gt;According to the Socket&lt;/a&gt;, the npm payload plants &lt;code&gt;.cursorrules&lt;/code&gt; and &lt;code&gt;CLAUDE.md&lt;/code&gt; files — configuration files read by AI coding assistants like Cursor and Claude — and injects hidden instructions using zero-width Unicode characters.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The goal is to trick AI tools into running what appears to be a routine "security scan" that actually exfiltrates local secrets. The same attacker account, &lt;code&gt;ddjidd564&lt;/code&gt;, also opened pull requests against major open-source AI projects, including LangChain, LlamaIndex, and browser-use, attempting to slip campaign-linked files into widely-used repositories under the guise of development standards documentation.&lt;/p&gt;&lt;p&gt;Socket detected the earliest TrapDoor package — eth-security-auditor on PyPI — within roughly two minutes of publication, and flagged subsequent releases at an average detection window of under six minutes.&lt;/p&gt;&lt;p&gt;&lt;b&gt;What developers should do: &lt;/b&gt;Audit any recently installed packages matching the names listed in Socket's indicators of compromise. Check your projects for unexpected 	&lt;code&gt;.cursorrules&lt;/code&gt;, &lt;code&gt;CLAUDE.md&lt;/code&gt;, Git hooks, shell hooks, or new cron/systemd entries.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Rotate AWS credentials, GitHub tokens, and SSH keys if any of the listed packages were installed. Consider enabling lockfiles and dependency review workflows in CI/CD pipelines to catch unexpected registry activity before it reaches production environments.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzB0VWNtg7Kq5pB6DCFy7DgIBk1PGq6Q7Z5JKZMvTkBM4T5P8Dju2QoT1v1MLwg2970v1u8ctIQB1UbINb6NUkVHQwIXScd8_DOYFxAYjZ7mgYeldwRFKj4FLe66-UPG6wKGlcftr2rEeaA4Q8VfBZ4mKCv1W_L2dg3xg-ISkO5aS0IsF_fUlwbcrfS1A/s72-c/trapdoor.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>LiteSpeed cPanel Plugin Flaw Lets Any Shared Hosting User Take Over the Entire Server</title><link>https://www.cyberkendra.com/2026/05/litespeed-cpanel-plugin-flaw-lets-any.html</link><category>Security</category><category>Vulnerability</category><category>Web Hosting</category><pubDate>Sat, 23 May 2026 22:46:17 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-4541409623769841083</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" data-original-height="3125" data-original-width="5553" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFAoMkujcLXCkKzjlNRxRkJGAsCWnt2nmXSrYGtePqmahjfAhuE7NlwsMGvEbT7XKhYSuPEA7yZlhhqpNIazxvVHt_iRE2EidpH0XdjqntNi-w8Fr_LOetMGUQ4vwzWW4nNeCFnA7CQ5EAb61irDWub5lHoPrvDm-PvA-HKw3UgfbBZVwHWL8bJ_U6-wo/s16000/lite-speed-cpanel-flaw.webp" /&gt;&lt;/div&gt;&lt;p&gt;A critical privilege escalation bug in LiteSpeed's user-end cPanel plugin — now confirmed as actively exploited in the wild — can hand any ordinary hosting account unrestricted root access to the server it sits on.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Tracked as &lt;b&gt;CVE-2026-48172&lt;/b&gt; and carrying a perfect CVSS score of 10.0, the flaw stems from an incorrect privilege assignment that allows an attacker to run arbitrary scripts with elevated permissions.&lt;/p&gt;&lt;p&gt;That threat model is what makes this one particularly uncomfortable for shared hosting providers. Because exploitation only requires access to a valid cPanel user account, a malicious tenant or an already-compromised shared hosting account can pivot to a full server takeover.&amp;nbsp;&lt;/p&gt;&lt;p&gt;In practice, that means a successful PHP exploit against any website on a server could chain straight into root, through a plugin most administrators probably never thought twice about.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What's Actually Broken&lt;/h3&gt;&lt;p&gt;The issue is related to the mishandling of the Redis enable/disable features inside the plugin. The vulnerability resides in the &lt;code&gt;lsws.redisAble&lt;/code&gt; function exposed via the user-end cPanel plugin, which can be abused by any cPanel user account to execute arbitrary scripts with root privileges. Redis (an in-memory data store commonly used for caching) is a standard component on many cPanel servers, making this attack surface widely accessible.&lt;/p&gt;&lt;p&gt;Importantly, LiteSpeed's WHM (Web Host Manager) plugin, used by server administrators, is not affected. The vulnerable component is the tenant-facing, user-end plugin only.&lt;/p&gt;&lt;p&gt;Security researcher David Strydom reported the flaw to LiteSpeed on May 19, 2026. Following the initial report, LiteSpeed and the cPanel/WebPros team initiated an urgent response cycle.&amp;nbsp;&lt;/p&gt;&lt;p&gt;cPanel's &lt;a href="https://blog.litespeedtech.com/2026/05/21/security-update-for-litespeed-cpanel-plugin/" rel="nofollow" target="_blank"&gt;emergency patch&lt;/a&gt;, released 12 hours ahead of schedule, included an automated fix that uninstalls the plugin entirely. That's an unusually aggressive response — but given active exploitation was already underway, removing the code entirely was the fastest available defense.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;A Pattern Worth Noticing&lt;/h3&gt;&lt;p&gt;This is the third cPanel emergency security release in just over three weeks. April 28 brought &lt;a href="https://www.cyberkendra.com/2026/04/cpanel-authentication-bypass-was.html" target="_blank"&gt;CVE-2026-41940&lt;/a&gt;, an authentication bypass actively exploited as a zero-day since February. May 13 brought a planned but substantial patch covering five additional CVEs.&amp;nbsp;&lt;/p&gt;&lt;p&gt;And May 19 brings the LiteSpeed plugin emergency, plus two additional cPanel security issues. The earlier CVE-2026-41940 (CVSS 9.8) was exploited by unknown threat actors to deploy Mirai botnet variants and a ransomware strain called Sorry.&lt;/p&gt;&lt;p&gt;For any hosting business running cPanel, monthly patching cycles no longer cut it.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What You Need to Do&lt;/h3&gt;&lt;p&gt;All versions of the LiteSpeed user-end plugin between v2.3 and v2.4.4 are at risk. The recommended action is to upgrade to LiteSpeed WHM Plugin v5.3.1.0, which bundles cPanel plugin v2.4.7 and includes both the original fix and patches from a broader security review LiteSpeed conducted after the initial disclosure.&lt;/p&gt;&lt;p&gt;If an immediate upgrade isn't possible, uninstall the vulnerable plugin using:&lt;/p&gt;&lt;pre&gt;/usr/local/lsws/admin/misc/lscmctl cpanelplugin --uninstall&lt;/pre&gt;&lt;p&gt;To check whether your server has already been hit, run:&lt;/p&gt;&lt;pre&gt;grep -rE "cpanel_jsonapi_func=redisAble" /var/cpanel/logs /usr/local/cpanel/logs/ 2&amp;gt;/dev/null&lt;/pre&gt;&lt;p&gt;No output means you're clean. Any output warrants an immediate review of the flagged IP addresses and system logs to assess the extent of access.&lt;/p&gt;&lt;p&gt;If you're a managed hosting provider, assume your customers haven't patched themselves — push the update at the infrastructure level and verify.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFAoMkujcLXCkKzjlNRxRkJGAsCWnt2nmXSrYGtePqmahjfAhuE7NlwsMGvEbT7XKhYSuPEA7yZlhhqpNIazxvVHt_iRE2EidpH0XdjqntNi-w8Fr_LOetMGUQ4vwzWW4nNeCFnA7CQ5EAb61irDWub5lHoPrvDm-PvA-HKw3UgfbBZVwHWL8bJ_U6-wo/s72-c/lite-speed-cpanel-flaw.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>NGINX Hit by Second Unauthenticated RCE —'nginx-poolslip'</title><link>https://www.cyberkendra.com/2026/05/nginx-hit-by-second-unauthenticated-rce.html</link><category>Security</category><category>Vulnerability</category><pubDate>Sat, 23 May 2026 22:06:49 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-96047890604396955</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="nginx-poolslip Flaw" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOrS89UxW4btZ8iF7lA7JowbEYXkfOvofzOQfHJDb03s92YAuor4msRCxWNSBH8UN-io7Mi80S2pnHe3KNkGYkhw5CugRzMHClPMKrZthZC9abl2F29M_o0Qfns39NsuP7xs-3gWRP5woQ8S0VMNtXLRdSSGsQmtssuR1zDoMbfZVQ2Cu1pTW0g6cQEfM/s16000/nginx-poolslip.webp" title="nginx-poolslip Flaw" /&gt;&lt;/div&gt;&lt;p&gt;F5 has rushed out a security advisory for a second critical heap overflow vulnerability in NGINX's URL rewriting engine this month — and this one, nicknamed nginx-poolslip, allows an unauthenticated remote attacker to crash your web server or execute arbitrary code without a single login credential.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Tracked as &lt;b&gt;CVE-2026-9256 &lt;/b&gt;and carrying a CVSS v4.0 score of 9.2 (Critical), the flaw was publicly teased by &lt;a href="https://x.com/nebusecurity/status/2057071579876753643" rel="nofollow" target="_blank"&gt;Nebula Security on May 20&lt;/a&gt; and &lt;a href="https://my.f5.com/manage/s/article/K000161377" rel="nofollow" target="_blank"&gt;formally disclosed by F5 on May 22&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;&lt;p&gt;It sits inside ngx_http_rewrite_module — the same component that was at the center of the NGINX Rift flaw (CVE-2026-42945) patched just nine days earlier. The vulnerability affects both NGINX Plus and NGINX Open Source and can be triggered by a remote, unauthenticated attacker over plain HTTP.&amp;nbsp;&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What Goes Wrong&lt;/h3&gt;&lt;p&gt;The bug is rooted in NGINX's handling of a specific regular expression pattern in rewrite directives. The vulnerability exists when a rewrite directive uses a regex pattern with distinct, overlapping PCRE (Perl-Compatible Regular Expression) captures — for example, ^/((.*))$ — paired with a replacement string that references multiple such captures, like $1$2, in a redirect or arguments context.&amp;nbsp;&lt;/p&gt;&lt;p&gt;When an attacker sends a specially crafted HTTP request into such a configuration, the NGINX worker process suffers a heap buffer overflow (CWE-122), causing it to crash and restart. DirectAdmin&lt;/p&gt;&lt;p&gt;The damage doesn't stop at a service disruption. Attackers can also execute code on systems with Address Space Layout Randomization (ASLR) disabled, or when they can bypass ASLR entirely — a realistic scenario in some legacy or improperly hardened deployments. CVE&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Who Is Exposed&lt;/h3&gt;&lt;p&gt;The scope is substantial. NGINX Open Source versions 0.1.17 through 1.31.0 are vulnerable, while 1.31.1 and 1.30.2 carry the fix. NGINX Plus releases R32 through R37.0.0 are affected; fixes land in R37.0.1.1, R36 P5, and R32 P7. NGINX Instance Manager versions 2.17.0 to 2.22.0 are also flagged, though no fix has been released for that product line yet. nginx&lt;/p&gt;&lt;p&gt;Notably, F5 BIG-IP, BIG-IQ, F5OS, and F5 Distributed Cloud Services are all listed as not vulnerable. The exposure is squarely in the NGINX software layer itself.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Second RCE in NGINX&lt;/h3&gt;&lt;p&gt;CVE-2026-9256 lands barely a week after &lt;a href="https://www.cyberkendra.com/2026/05/nginx-rift-18-year-old-bug-lets-hackers.html" target="_blank"&gt;NGINX Rift (&lt;b&gt;CVE-2026-42945&lt;/b&gt;)&lt;/a&gt; — a separate heap overflow in the same rewrite module that had been quietly lurking in the codebase for 18 years.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Two critical bugs in the same component within the same month are an uncomfortable signal that the rewrite engine has been under-scrutinised for a long time. F5 credited the discovery of nginx-poolslip to Mufeed VH of Winfunc Research, Nebula Security, and Vexera AI for coordinated disclosure.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What You Should Do Right Now&lt;/h3&gt;&lt;p&gt;Upgrading is the definitive fix. If patching immediately isn't an option, F5 offers a practical configuration-level mitigation: replace unnamed PCRE capture groups with named captures in every affected rewrite directive. For example, swap:&amp;nbsp;&lt;/p&gt;&lt;pre&gt;rewrite ^/users/([0-9]+)/profile/(.*)$ /profile.php?id=$1&amp;amp;tab=$2 last;&lt;/pre&gt;&lt;p&gt;…for:&lt;/p&gt;&lt;pre&gt;rrewrite ^/users/(?&amp;lt;user_id&amp;gt;[0-9]+)/profile/(?&amp;lt;section&amp;gt;.*)$
/profile.php?id=$user_id&amp;amp;tab=$section last;&lt;/pre&gt;&lt;p&gt;That single configuration change neutralises the vulnerable code path. Given that NGINX powers roughly one-third of the world's web servers, administrators should treat this as a priority patch rather than a scheduled maintenance item.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOrS89UxW4btZ8iF7lA7JowbEYXkfOvofzOQfHJDb03s92YAuor4msRCxWNSBH8UN-io7Mi80S2pnHe3KNkGYkhw5CugRzMHClPMKrZthZC9abl2F29M_o0Qfns39NsuP7xs-3gWRP5woQ8S0VMNtXLRdSSGsQmtssuR1zDoMbfZVQ2Cu1pTW0g6cQEfM/s72-c/nginx-poolslip.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>How Data Rooms Became Decision-Making Tools</title><link>https://www.cyberkendra.com/2026/05/how-data-rooms-became-decision-making.html</link><category>Tips</category><pubDate>Fri, 22 May 2026 23:08:08 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-4678711839000398852</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="Best virtual data rooms" border="0" data-original-height="3062" data-original-width="4899" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWClNq_cR0wgDXeA525Mpr7fNk-RZdbp8XCte7PWL6CozerSNIHslTHQ9Iuzhax7jFsa46jAwUTo0Yoz5Fxmtko76XwKbW6YMLcgZ-TIT8rOoWR4YSRBpIV6HuwjV7XIEX8nVJ85HdcO4GcNqcETOrD1O7aRGpA6PdRNT4FoV-ZnWqrgb5L8bwb3rVvsg/s16000/virtual-data-rooms.webp" title="Best virtual data rooms" /&gt;&lt;/div&gt;&lt;p&gt;Over the years, data rooms were considered simple storage platforms — a secure location where companies posted documents for audit, fundraising, or mergers.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;The role of the virtual data room (VDR) has evolved greatly today. It becomes a key node in data room decision-making, assisting the business in interpreting data, monitoring stakeholder activity, and making faster, higher-stakes decisions.&lt;/p&gt;&lt;p&gt;This shift reflects a more radical change in how modern organizations operate: no longer is it a matter of decisions being made purely on documents, but of insights derived from them.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;From Document Storage to Strategic Infrastructure&lt;/h3&gt;&lt;p&gt;Traditional data rooms were designed to resolve a narrow problem: secure document collaboration.&lt;/p&gt;&lt;p&gt;They allowed companies to:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Store confidential files&lt;/li&gt;&lt;li&gt;Restrict access to authorized users&lt;/li&gt;&lt;li&gt;Organize documents for due diligence&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;However, they lacked analytical capabilities.&lt;/p&gt;&lt;p&gt;Modern virtual data room platforms function as strategic infrastructure. They integrate:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Secure storage&lt;/li&gt;&lt;li&gt;Activity tracking&lt;/li&gt;&lt;li&gt;Reporting tools&lt;/li&gt;&lt;li&gt;Workflow automation&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This combination transforms static files into actionable intelligence. Instead of simply hosting documents, today’s platforms actively support data room decision-making by revealing how information is used and by whom.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Virtual Data Room Analytics: Turning Activity into Insight&lt;/h3&gt;&lt;p&gt;The introduction of virtual data room analytics has radically transformed how companies evaluate deals.&lt;/p&gt;&lt;p&gt;These tools monitor user behavior on an ongoing basis, and these include:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Document views&lt;/li&gt;&lt;li&gt;Time spent per file&lt;/li&gt;&lt;li&gt;Download activity&lt;/li&gt;&lt;li&gt;User engagement patterns&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This data generates valuable virtual data room insights.&lt;/p&gt;&lt;p&gt;For example:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;A potential investor who repeatedly reviews financial projections is likely serious&lt;/li&gt;&lt;li&gt;Low engagement with legal documents may signal overlooked risks&lt;/li&gt;&lt;li&gt;High activity from multiple stakeholders may indicate competitive interest&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;These lessons can enable companies to prioritize and allocate resources effectively.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Secure Document Collaboration in Complex Transactions&lt;/h3&gt;&lt;p&gt;Modern deals involve multiple stakeholders working across different locations.&lt;/p&gt;&lt;p&gt;A virtual data room enables secure document collaboration by providing:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Role-based permissions&lt;/li&gt;&lt;li&gt;Encrypted file sharing&lt;/li&gt;&lt;li&gt;Real-time document updates&lt;/li&gt;&lt;li&gt;Detailed audit trails&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This ensures that sensitive information is not lost while remaining available to the appropriate individuals.&lt;/p&gt;&lt;p&gt;Centralization is key. Instead of scattered communication across emails and third-party tools, all collaboration happens within a controlled environment.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Why Data Room Providers Focus on Intelligence&lt;/h3&gt;&lt;p&gt;Leading data room providers have shifted their focus from storage capacity to intelligence.&lt;/p&gt;&lt;p&gt;Today’s platforms compete based on their ability to deliver:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Advanced virtual data room analytics&lt;/li&gt;&lt;li&gt;Clear dashboards and reporting&lt;/li&gt;&lt;li&gt;Customizable workflows&lt;/li&gt;&lt;li&gt;Seamless user experience&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This reflects growing demand for virtual data room insights that directly support business outcomes.&lt;/p&gt;&lt;p&gt;Organizations no longer want tools that simply store files.&lt;/p&gt;&lt;p&gt;They want platforms that:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Highlight risks early&lt;/li&gt;&lt;li&gt;Reveal opportunities&lt;/li&gt;&lt;li&gt;Accelerate decision-making&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;As a result, the virtual data room becomes a decision-support system rather than just a storage solution.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;A Practical Example of Data Room Decision Making&lt;/h3&gt;&lt;p&gt;Consider a startup raising capital.&lt;/p&gt;&lt;p&gt;Using a modern virtual data room, the team can:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Track which investors access the platform&lt;/li&gt;&lt;li&gt;Monitor which documents they review&lt;/li&gt;&lt;li&gt;Measure how long they engage with specific files&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Consistently reviewing financial forecasts and market analysis indicates a strong intent.&lt;/p&gt;&lt;p&gt;The startup can then:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Prioritize communication with that investor&lt;/li&gt;&lt;li&gt;Prepare tailored responses&lt;/li&gt;&lt;li&gt;Anticipate questions&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This is a clear data-driven decision-making case, driven by real-time data. Without analytics, this level of insight would not be possible.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Regional Considerations and Market Practices&lt;/h3&gt;&lt;p&gt;The implementation of data rooms is not consistent across geographies, particularly in regulated markets.&lt;/p&gt;&lt;p&gt;For example, many companies look for certifications such as:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;ISO 27001 for information security management&lt;/li&gt;&lt;li&gt;SOC 2 Type II for operational and security controls&lt;/li&gt;&lt;li&gt;GDPR compliance for handling personal data within the European Union&lt;/li&gt;&lt;li&gt;ISO 27701 for privacy information management&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.cyberkendra.com/2023/05/hipaa-checklist-comprehensive-guide-to.html" target="_blank"&gt;HIPAA compliance&lt;/a&gt; when relating to healthcare data&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;These regional differences are critical for understanding cross-border transactions and international deals, especially when selecting a &lt;a href="https://dataroom.org.uk/" target="_blank"&gt;data room in the UK&lt;/a&gt; or other highly regulated markets.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Automation and Workflow Efficiency&lt;/h3&gt;&lt;p&gt;Another major advantage of modern virtual data room platforms is automation.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Automation features include:&lt;/li&gt;&lt;li&gt;Automatic document indexing&lt;/li&gt;&lt;li&gt;Bulk file uploads&lt;/li&gt;&lt;li&gt;Predefined permission templates&lt;/li&gt;&lt;li&gt;Activity-triggered notifications&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This software reduces manual labor and minimizes errors. It is also because they enhance process uniformity.&lt;/p&gt;&lt;p&gt;Consequently, teams will be able to focus on more valuable activities, including data room decision-making and analysis, rather than on administrative tasks.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Risk Reduction Through Visibility and Control&lt;/h3&gt;&lt;p&gt;Risk management is a core function of any transaction.&lt;/p&gt;&lt;p&gt;A virtual data room enhances risk control by providing:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Detailed audit logs&lt;/li&gt;&lt;li&gt;User activity tracking&lt;/li&gt;&lt;li&gt;Document access history&lt;/li&gt;&lt;li&gt;Security functions as watermarking and two-factor authentication&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;All this is made possible by these capabilities.&lt;/p&gt;&lt;p&gt;In case of a problem, teams can discover:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Who accessed a document&lt;/li&gt;&lt;li&gt;When it was accessed&lt;/li&gt;&lt;li&gt;What actions were taken&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Such visibility minimizes the uncertainty and helps to make better decisions.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Competitive Advantage in High-Stakes Environments&lt;/h3&gt;&lt;p&gt;Data rooms help organizations to gain a competitive advantage.&lt;/p&gt;&lt;p&gt;They can:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Respond to stakeholder requests more quickly&lt;/li&gt;&lt;li&gt;Put information in an organized manner&lt;/li&gt;&lt;li&gt;Identify high-priority opportunities&lt;/li&gt;&lt;li&gt;Accelerate deal timelines&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;These advantages can directly influence results in competitive situations such as M&amp;amp;A or fundraising.&lt;/p&gt;&lt;p&gt;A well-organized virtual data room also signals professionalism. It builds trust with investors, partners, and advisors — often a decisive factor in closing deals.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The Future: Intelligent Data Rooms&lt;/h3&gt;&lt;p&gt;The evolution of data rooms is ongoing.&lt;/p&gt;&lt;p&gt;Many platforms are now integrating:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Artificial intelligence&lt;/li&gt;&lt;li&gt;Machine learning&lt;/li&gt;&lt;li&gt;Predictive analytics&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;These technologies enhance virtual data room analytics by:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Identifying missing or incomplete documents&lt;/li&gt;&lt;li&gt;Detecting inconsistencies in data&lt;/li&gt;&lt;li&gt;Recommending relevant files&lt;/li&gt;&lt;li&gt;Predicting user behavior&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This represents the next stage of data room decision-making.&lt;/p&gt;&lt;p&gt;Companies can foresee needs and be proactive rather than respond to user activity. Modern virtual data room providers offer far more than storage.&lt;/p&gt;&lt;p&gt;They deliver:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Actionable virtual data room insights&lt;/li&gt;&lt;li&gt;Advanced virtual data room analytics&lt;/li&gt;&lt;li&gt;Reliable, secure document collaboration&lt;/li&gt;&lt;li&gt;Strong support for data room decision-making&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;These capabilities transform how organizations manage complex transactions.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Conclusion&lt;/h3&gt;&lt;p&gt;The role of data rooms has evolved from passive storage to active decision support.&lt;/p&gt;&lt;p&gt;Today’s virtual data room is a strategic tool that helps businesses:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Understand stakeholder behavior&lt;/li&gt;&lt;li&gt;Reduce risk&lt;/li&gt;&lt;li&gt;Improve efficiency&lt;/li&gt;&lt;li&gt;Make faster, smarter decisions&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This change will only intensify as business environments become more data-driven. Organizations that are effective users of data room providers will handle information efficiently, make better decisions, and achieve better outcomes.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWClNq_cR0wgDXeA525Mpr7fNk-RZdbp8XCte7PWL6CozerSNIHslTHQ9Iuzhax7jFsa46jAwUTo0Yoz5Fxmtko76XwKbW6YMLcgZ-TIT8rOoWR4YSRBpIV6HuwjV7XIEX8nVJ85HdcO4GcNqcETOrD1O7aRGpA6PdRNT4FoV-ZnWqrgb5L8bwb3rVvsg/s72-c/virtual-data-rooms.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Trend Micro's Own Security Tool Turned Against Enterprises — Apex One Zero-Day Actively Exploited</title><link>https://www.cyberkendra.com/2026/05/trend-micros-own-security-tool-turned.html</link><category>Security</category><category>Vulnerability</category><category>ZeroDay Bug</category><pubDate>Fri, 22 May 2026 21:10:40 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-4941070184469962942</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="Apex One Zeroday" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2RWKekXHG6dbOJmAofnBDKAwokyPT0w5F4Sz8akE7POSiTcZaHHIwdAY0vesNvUGeUzZFVLYmDHIS8OxJce6JoeGCm917zBx3KsoGrURPKQKa8QSy_Kt-nfEOEcGt8AaMJm0M8AF0ECoGeCjS47FW-akZ84OXLAexyrxJnV3u4uN9D9qvMPqiipXQJMI/s16000/apex-one-flaw.webp" title="Apex One Zeroday" /&gt;&lt;/div&gt;&lt;p&gt;The endpoint security software meant to protect enterprise networks from attackers has itself become a target. Trend Micro has patched a zero-day vulnerability in Apex One — its flagship corporate endpoint protection platform — after its own incident response team caught threat actors actively exploiting the flaw against Windows systems.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Tracked as &lt;b&gt;CVE-2026-34926&lt;/b&gt;, the vulnerability is a directory traversal flaw (a weakness that lets attackers access files and directories outside intended boundaries) in the Apex One on-premises server.&lt;/p&gt;&lt;p&gt;A local attacker who has already obtained admin credentials can exploit it to tamper with a core server table and silently push malicious code out to all endpoint agents deployed across the organization — effectively hijacking the security infrastructure itself to distribute malware.&lt;/p&gt;&lt;p&gt;The attack does carry prerequisites: the target must be running the on-premise version of Apex One, and the attacker must already hold administrative access to the server. That said, those conditions are far from theoretical — TrendAI's incident response team, which discovered the vulnerability, confirmed at least one real-world exploitation attempt before the patch was even released.&lt;/p&gt;&lt;p&gt;CISA has added CVE-2026-34926 to its Known Exploited Vulnerabilities (KEV) catalog and ordered all U.S. federal agencies to apply fixes no later than June 4.&lt;/p&gt;&lt;p&gt;The same &lt;a href="https://success.trendmicro.com/en-US/solution/KA-0023430" rel="nofollow" target="_blank"&gt;update bundle&lt;/a&gt; addresses seven additional high-severity local privilege escalation flaws (CVE-2026-34927 through 34930 and CVE-2026-45206 through 45208), all carrying CVSS scores of 7.8. These were reported by researcher Lays (@_L4ys) of TRAPA Security through Trend Micro's Zero Day Initiative program. Each flaw exploits origin validation errors across different inter-process communication mechanisms in the Apex One agent.&lt;/p&gt;&lt;p&gt;Apex One has been exploited in zero-day attacks repeatedly — in August 2025, September 2023, and September 2022. SecurityWeek notes that some past Apex One attacks have been attributed to Chinese state-sponsored APT groups, and given the level of access required to trigger CVE-2026-34926, a sophisticated threat actor is the most plausible culprit here, too.&lt;/p&gt;&lt;p&gt;&lt;b&gt;What you should do now:&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;On-premises Apex One SP1 users should update to CP Build 18012 (or 17079 for fresh installs)&lt;/li&gt;&lt;li&gt;SaaS and Vision One SEP customers need Security Agent build 14.0.20731 or later&lt;/li&gt;&lt;li&gt;Review who has remote administrative access to your Apex One server and audit perimeter policies immediately&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2RWKekXHG6dbOJmAofnBDKAwokyPT0w5F4Sz8akE7POSiTcZaHHIwdAY0vesNvUGeUzZFVLYmDHIS8OxJce6JoeGCm917zBx3KsoGrURPKQKa8QSy_Kt-nfEOEcGt8AaMJm0M8AF0ECoGeCjS47FW-akZ84OXLAexyrxJnV3u4uN9D9qvMPqiipXQJMI/s72-c/apex-one-flaw.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Windows Kernel Bug Breaks Every Browser Sandbox — And It Almost Stayed Secret Until Pwn2Own</title><link>https://www.cyberkendra.com/2026/05/windows-kernel-bug-breaks-every-browser.html</link><category>Security</category><category>Vulnerability</category><category>Windows 11</category><pubDate>Thu, 21 May 2026 23:28:28 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-243201699795993654</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="Windows 11 Kernel Bug" border="0" data-original-height="900" data-original-width="1600" height="180" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgtPtkrLGsLtZUeQ_Tv2UsH_He3da-5r7yB16YzBy_OJDJsWdJkA-cuzFHnk5aM6fr9xjqUl-Qp2n8MFhOZAFrsWQVi6-4ESSV9UcWgJYUkQH7znuFFlfpABozTREArkec7IWLkSSJh8kRUaa9aJA-RSsfpf5WqZHzbX0CEEd2TL0aflXpYZ_Y7p_AaqcI/w320-h180/windows11-flaw.webp" title="Windows 11 Kernel Bug" width="320" /&gt;&lt;/div&gt;&lt;p&gt;A security researcher prepared a devastating Windows kernel exploit for Pwn2Own Berlin 2026 — then had to watch it go public days before the contest even started.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;CVE-2026-40369&lt;/b&gt; is an unprivileged arbitrary 12-byte kernel write primitive in &lt;code&gt;nt!ExpGetProcessInformation&lt;/code&gt;, reachable from any context that can call &lt;code&gt;NtQuerySystemInformation&lt;/code&gt; — including Chrome, Edge, and Firefox renderer sandboxes. That part that makes this stand out is that browser sandboxes (the isolation layer that's supposed to contain a compromised browser tab) are completely bypassed.&lt;/p&gt;&lt;p&gt;The researcher — Paolo Stagno — had &lt;a href="https://voidsec.com/cve-2026-40369-browser-sandbox-escape/" rel="nofollow" target="_blank"&gt;originally prepared the bug for Pwn2Own Berlin&lt;/a&gt;. A couple of days before the contest, the CVE was assigned, and the bug went public. That timing effectively ended any competition entry, but the disclosure gave the security community something arguably more valuable: a meticulous technical breakdown of how the flaw works and exactly how far an attacker can take it.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What the Bug Actually Does&lt;/h3&gt;&lt;p&gt;The vulnerability resides in &lt;b&gt;ntoskrnl.exe&lt;/b&gt;, in the function &lt;code&gt;ExpGetProcessInformation&lt;/code&gt;, and is triggered by calling &lt;code&gt;NtQuerySystemInformation&lt;/code&gt; with information class 253 (&lt;code&gt;SystemProcessInformationExtension&lt;/code&gt;), passing a kernel address as the output buffer and a length of zero.&lt;/p&gt;&lt;p&gt;The trick here is brutally simple. &lt;b&gt;ProbeForWrite&lt;/b&gt; — the Windows kernel's own mechanism for validating that a buffer pointer is safe to write — is a complete no-op when the supplied length is zero. The entire function body is gated by &lt;code&gt;if (Length)&lt;/code&gt;, so passing &lt;code&gt;Length=0&lt;/code&gt; slides an unvalidated kernel pointer straight through into &lt;code&gt;ExpGetProcessInformation&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Once inside, the function iterates over all running processes on the system and, for class 253, increments three DWORD values at the attacker's chosen kernel address — providing a reliable 12-byte write primitive. Critically, even though &lt;code&gt;ExpGetProcessInformation&lt;/code&gt; detects the length mismatch and sets &lt;code&gt;STATUS_INFO_LENGTH_MISMATCH&lt;/code&gt;, it does not return early — it stores the error and continues executing the write loop for every process before returning.&lt;/p&gt;&lt;p&gt;The exploit's reliability is described as 100% deterministic. And because &lt;code&gt;NtQuerySystemInformation&lt;/code&gt; is not blocked by Chrome's win32k lockdown, restricted tokens, or untrusted integrity-level checks, the primitive is fully reachable from the renderer sandboxes of Chrome, Edge, and Firefox.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;From Sandbox to SYSTEM&lt;/h3&gt;&lt;p&gt;VoidSec's full write-up chains this primitive into a complete local privilege escalation, lifting a Medium-integrity non-administrator process all the way up to &lt;b&gt;NT AUTHORITY\SYSTEM&lt;/b&gt; via &lt;b&gt;NtCreateToken&lt;/b&gt;. For KASLR (kernel address space layout randomization) bypass, the exploit can be paired with the open-source prefetch-tool, meaning an attacker operating entirely from within a sandboxed browser tab could, in theory, reach full system ownership in two chained steps.&lt;/p&gt;&lt;p&gt;Microsoft assigned it a CVSS score of 7.8 and classified the flaw as an Elevation of Privilege vulnerability affecting Windows 11 versions 24H2 and 25H2.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;The Patch Is Already Out&lt;/h3&gt;&lt;p&gt;Microsoft's May 2026 Patch Tuesday, released on May 12, includes a fix for CVE-2026-40369. Researcher Ori Nimron (@orinimron123) has since published three tiers of working exploit code on &lt;a href="https://github.com/orinimron123/CVE-2026-40369-EXPLOIT" rel="nofollow" target="_blank"&gt;GitHub&lt;/a&gt; — a basic PoC, a full exploit, and a variant with a Chrome sandbox emulator — making it accessible to both defenders testing their own environments and, inevitably, those with less benign intentions.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What You Should Do&lt;/h3&gt;&lt;p&gt;If you manage Windows 11 24H2 or 25H2 endpoints and haven't applied the May 2026 cumulative update yet, that should move to the top of your patch queue immediately.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The combination of sandbox reachability, deterministic reliability, and publicly available exploit code means this vulnerability has crossed the threshold where "we'll get to it next cycle" is no longer a safe posture. Enterprise teams should also verify that endpoint detection rules are in place for anomalous &lt;code&gt;NtQuerySystemInformation&lt;/code&gt; class 253 calls, which have no legitimate user-space use case.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgtPtkrLGsLtZUeQ_Tv2UsH_He3da-5r7yB16YzBy_OJDJsWdJkA-cuzFHnk5aM6fr9xjqUl-Qp2n8MFhOZAFrsWQVi6-4ESSV9UcWgJYUkQH7znuFFlfpABozTREArkec7IWLkSSJh8kRUaa9aJA-RSsfpf5WqZHzbX0CEEd2TL0aflXpYZ_Y7p_AaqcI/s72-w320-h180-c/windows11-flaw.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>PoC Exploit Released for Drupal's Critical SQL Injection CVE-2026-9082</title><link>https://www.cyberkendra.com/2026/05/poc-exploit-released-for-drupals.html</link><category>Drupal</category><category>Security</category><pubDate>Thu, 21 May 2026 22:28:15 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-5989485341691297262</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="SQL Injection in Drupal Core" border="0" data-original-height="1010" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhA2t-hzZEsbKHniC93VmzPPwFmk2TN1Ct-SobxZ5Lo1KnVcIB9U_1HxmNx4jQJV-ysIBFEiKAyX6rIDCdW2qxEiFTQQke6rSnr37_3sq83hmslKPHdsDTX3OzQn5etYe5a5QApeShqPyktOACakJ7oG3MvEi_DdLk72Q05X05z2J89ICY03ULM1Gqc3_A/s16000/drupal-sqli.png" title="SQL Injection in Drupal Core" /&gt;&lt;/div&gt;&lt;p&gt;A day after &lt;a href="https://www.cyberkendra.com/2026/05/drupal-patches-highly-critical-sql.html" target="_blank"&gt;Drupal's emergency patches landed&lt;/a&gt;, security researchers at Searchlight Cyber have published a full technical breakdown of CVE-2026-9082 — complete with two working proof-of-concept exploits. If your PostgreSQL-backed Drupal site isn't patched yet, consider this the final warning.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Drupal's database abstraction API exists for one reason: to sanitise queries and prevent SQL injection. The flaw is inside that very layer — specifically in the PostgreSQL-specific override that handles case-insensitive comparisons.&lt;/p&gt;&lt;p&gt;Researcher at &lt;a href="https://slcyber.io/research-center/keys-to-the-kingdom-anonymous-sql-injection-in-drupal-core-cve-2026-9082/" rel="nofollow" target="_blank"&gt;Searchlight Cyber shows&lt;/a&gt; that PostgreSQL is case-sensitive by default, so Drupal wraps query comparisons in a LOWER() function to normalise them. When processing an IN (...) list — say, matching a username against multiple values — it loops through each value and builds SQL placeholder names by combining a field prefix with an array key. The assumption was that those keys would always be sequential integers (0, 1, 2). They aren't.&lt;/p&gt;&lt;p&gt;If an attacker sends a JSON object instead of a plain string for the name field on the login endpoint, PHP decodes it into an associative array with attacker-controlled keys. Those keys land directly inside the SQL text before PDO (PHP's database layer) ever gets to bind and sanitise them. The fix? Three array_values() calls across three files — roughly seven lines of code — that forcibly reset array keys to sequential integers before they reach the vulnerable loop.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Two Entry Points, Both Unauthenticated&lt;/h3&gt;&lt;p&gt;Researchers confirmed two separate paths to trigger the injection:&lt;/p&gt;&lt;p&gt;&lt;b&gt;Variant 1 — &lt;/b&gt;JSON Login endpoint (/user/login?_format=json): An attacker sends the name field as a JSON object with an injected key containing a divide-by-zero subquery. When the boolean predicate is true, the server returns HTTP 500 with a SQLSTATE[22012] division-by-zero error. When false, it returns HTTP 400. That clean status-code split means an attacker can extract arbitrary database content one bit at a time — at scanning speeds. No session, no CSRF token, no credentials required.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Variant 2 — &lt;/b&gt;JSON:API filter parameters (/jsonapi/node/{bundle}): A single GET request with a backtick in a filter key is enough to produce a SQLSTATE[HY093] error on a vulnerable host. This variant doesn't even need a POST body — it's a one-shot fingerprinting probe that works against any publicly accessible node bundle. JSON:API isn't enabled by default, but it's a standard addition on API-driven Drupal deployments.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What's Actually at Risk&lt;/h3&gt;&lt;p&gt;Both exploit variants are fully anonymous — no account needed. On a vulnerable PostgreSQL-backed site, an attacker can quietly extract usernames, password hashes, private content, and any other data the database user can access. From there, privilege escalation and remote code execution are realistic next steps depending on the site configuration.&lt;/p&gt;&lt;p&gt;MySQL and SQLite installations are not reachable via these specific paths, but the same Drupal release bundle includes Symfony and Twig security fixes that apply to every backend — so there's no justification for skipping the update.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What You Should Do Right Now&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Update to the patched releases: Drupal 11.3.10, 11.2.12, 11.1.10 or Drupal 10.6.9, 10.5.10, 10.4.10&lt;/li&gt;&lt;li&gt;If you can't patch immediately, disable the JSON:API module to close Variant 2&lt;/li&gt;&lt;li&gt;Review which user roles can edit Twig templates — a separate exposure path flagged in the same advisory&lt;/li&gt;&lt;li&gt;Check server logs for unexpected HTTP 500 responses on /user/login or /jsonapi/ routes — that's your indicator of active scanning&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;With working exploits now public, automated scanning of Drupal installations has almost certainly already begun. The patch window is effectively closed.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhA2t-hzZEsbKHniC93VmzPPwFmk2TN1Ct-SobxZ5Lo1KnVcIB9U_1HxmNx4jQJV-ysIBFEiKAyX6rIDCdW2qxEiFTQQke6rSnr37_3sq83hmslKPHdsDTX3OzQn5etYe5a5QApeShqPyktOACakJ7oG3MvEi_DdLk72Q05X05z2J89ICY03ULM1Gqc3_A/s72-c/drupal-sqli.png" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Nine-Year-Old Linux Kernel Flaw CVE-2026-46333 Lets Attackers Steal SSH Keys, Shadow Passwords, and Root Access</title><link>https://www.cyberkendra.com/2026/05/nine-year-old-linux-kernel-flaw-cve.html</link><category>Linux</category><category>Security</category><pubDate>Thu, 21 May 2026 09:38:12 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-2567628608663947303</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="CVE-2026-46333 Logic bug in Linux" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgXkMjiC3sZ45f1mxAAgz4gGtCkFI7o1fePwL3dkMjUG42vhEUsv3PWmbxI8jN1A-_DyKSyglEIIbx8uAjpzQdRJ7-bmcWOQQrn7Cf7cCvB6Phm2hXKp_W2L5h0GV6cyba98Cj2a-DJgAXJPR6V9LU5X8rICdmN1RwCBd1nWR4bOnxedFcxABOBRKw7UkQ/s16000/linux-local-exploit.webp" title="CVE-2026-46333 Logic bug in Linux" /&gt;&lt;/div&gt;&lt;p&gt;The Qualys Threat Research Unit (TRU) has released the full advisory for CVE-2026-46333, a logic flaw in the Linux kernel's &lt;code&gt;__ptrace_may_access()&lt;/code&gt; function that lets an unprivileged local user disclose sensitive files and execute arbitrary commands as root on default installations of several major Linux distributions. The bug has been sitting quietly in mainline Linux since November 2016 — nearly nine years.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This marks the fourth Linux kernel security issue demanding emergency attention in just three weeks, following &lt;b&gt;&lt;a href="https://www.cyberkendra.com/2026/04/a-732-byte-python-script-can-get-root.html" target="_blank"&gt;Copy Fail&lt;/a&gt;&lt;/b&gt; (April 29), &lt;b&gt;&lt;a href="https://www.cyberkendra.com/2026/05/dirty-frag-no-patch-no-warning-root.html" target="_blank"&gt;Dirty Frag&lt;/a&gt;&lt;/b&gt; (May 7), and &lt;b&gt;&lt;a href="https://www.cyberkendra.com/2026/05/linux-kernel-strikes-again-fragnesia-is.html" target="_blank"&gt;Fragnesia&lt;/a&gt; &lt;/b&gt;(May 13). At this rate, Linux administrators aren't patching vulnerabilities anymore — they're running a triage ward.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What the Bug Actually Does&lt;/h3&gt;&lt;p&gt;&lt;a href="https://cdn2.qualys.com/advisory/2026/05/20/cve-2026-46333-ptrace.txt" rel="nofollow" target="_blank"&gt;TRU identified&lt;/a&gt; a narrow timing window in which a privileged process that is dropping its credentials remains reachable through ptrace-family operations (a set of kernel interfaces used for process inspection and debugging), even though its dumpable flag should have closed that path. By pairing this window with &lt;code&gt;pidfd_getfd()&lt;/code&gt; — a syscall that lets one process grab file descriptors from another — an attacker can essentially pickpocket a dying privileged process before it finishes cleaning up.&lt;/p&gt;&lt;p&gt;The proof-of-concept races against &lt;b&gt;&lt;a href="https://www.cyberkendra.com/2026/05/linux-kernel-had-six-year-bug-that-let.html" target="_blank"&gt;ssh-keysign&lt;/a&gt;&lt;/b&gt;, a setuid binary that ships on every Linux system with OpenSSH installed. During its brief lifetime, ssh-keysign holds the SSH host private key files open as root. The exploit races against its exit, calls &lt;code&gt;pidfd_getfd&lt;/code&gt; on its file descriptor table, and steals the open handles to &lt;code&gt;/etc/ssh/ssh_host_ecdsa_key&lt;/code&gt;, &lt;code&gt;ssh_host_ed25519_key&lt;/code&gt;, and &lt;code&gt;ssh_host_rsa_key&lt;/code&gt;. A second variant targets chage — another setuid binary — and steals the open handle to &lt;code&gt;/etc/shadow&lt;/code&gt;, which contains every user's password hash on the system.&lt;/p&gt;&lt;p&gt;Qualys built four working exploits in total — targeting &lt;code&gt;chage&lt;/code&gt;, &lt;code&gt;ssh-keysign&lt;/code&gt;, &lt;code&gt;pkexec&lt;/code&gt;, and &lt;code&gt;accounts-daemon&lt;/code&gt; — confirming root command execution or credential theft across default installs of Debian 13, Ubuntu 24.04, Ubuntu 26.04, Fedora 43, and Fedora 44.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Why "Local-Only" Doesn't Mean Low Priority&lt;/h3&gt;&lt;p&gt;The bug matters because modern intrusions rarely stop at the first foothold. A web RCE running as www-data, a compromised CI job, a stolen developer shell account, an abused shared-hosting account, or a container workload with access to the host kernel may not start as root. A local kernel bug that reads root-owned secrets can turn that foothold into credential theft, host impersonation, password hash cracking, lateral movement, or a stronger privilege-escalation path.&lt;/p&gt;&lt;p&gt;In a shared-hosting environment, the distinction between credential disclosure and direct root is one without much practical difference — either of those files gets an attacker the rest of the way trivially.&amp;nbsp;&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What to Do Right Now&lt;/h3&gt;&lt;p&gt;The fix is Linus Torvald's upstream commit 31e62c2ebbfd — already backported by Debian, Fedora, Red Hat, SUSE, AlmaLinux, CloudLinux, and others. Three concrete steps:&lt;/p&gt;&lt;p&gt;&lt;b&gt;1. Patch and reboot.&lt;/b&gt; Install your distribution's updated kernel and actually reboot — installing the package without rebooting leaves the vulnerable kernel still running.&lt;/p&gt;&lt;p&gt;&lt;b&gt;2. Apply the interim mitigation if patching must wait.&lt;/b&gt; Raise &lt;code&gt;kernel.yama.ptrace_scope&lt;/code&gt; to 2 via &lt;code&gt;sysctl&lt;/code&gt;. This blocks the public exploits since their &lt;code&gt;pidfd_getfd&lt;/code&gt; path is gated by &lt;code&gt;__ptrace_may_access()&lt;/code&gt;. Be aware: this breaks non-root use of &lt;code&gt;gdb -p&lt;/code&gt;, &lt;code&gt;strace -p&lt;/code&gt;, and some container debug tooling, and the setting cannot be lowered without a reboot.&lt;/p&gt;&lt;p&gt;&lt;b&gt;3. Treat SSH host keys as potentially compromised.&lt;/b&gt; If your host allowed untrusted local users during the exposure window, rotate SSH host keys and review any administrative material that lived in the memory of set-uid processes. Silent credential theft is the scariest part of this bug — there's no reliable way to prove after the fact that nothing was exfiltrated.&lt;/p&gt;&lt;p&gt;Working public exploits are already circulating. The window for being ahead of this one is closing fast.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgXkMjiC3sZ45f1mxAAgz4gGtCkFI7o1fePwL3dkMjUG42vhEUsv3PWmbxI8jN1A-_DyKSyglEIIbx8uAjpzQdRJ7-bmcWOQQrn7Cf7cCvB6Phm2hXKp_W2L5h0GV6cyba98Cj2a-DJgAXJPR6V9LU5X8rICdmN1RwCBd1nWR4bOnxedFcxABOBRKw7UkQ/s72-c/linux-local-exploit.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item><item><title>Drupal Patches Highly Critical SQL Injection That Lets Anonymous Attackers Hijack PostgreSQL-Backed Sites</title><link>https://www.cyberkendra.com/2026/05/drupal-patches-highly-critical-sql.html</link><category>Drupal</category><category>Security</category><pubDate>Thu, 21 May 2026 00:29:13 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3448621598664628523.post-9074516310879613360</guid><description>&lt;p&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img alt="CVE-2026-9082 - Drupal SQL Injection" border="0" data-original-height="900" data-original-width="1600" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYmB8vsFk-8-SIe1gbYVNUCjxaUho69AYfhVYBM28rzCaDCHV9kRL9DnLGz5SUFy7HHCbAXAg4bhdTvngwmEKI4KV4mRGSna8qkHnyqQbHo7FCyiXeg1dvfA1bokbsdWZ_aTmYxKJOu5maFtr8RCU4JYwmy8yHAZJiaw4rxJQeLtYCbqqJnBRiejq_CwE/s16000/CVE-2026-9082.webp" title="CVE-2026-9082 - Drupal SQL Injection" /&gt;&lt;/div&gt;&lt;p&gt;Drupal has pushed emergency security updates for a highly critical SQL injection vulnerability in its core database abstraction layer — the kind of flaw that lets an unauthenticated attacker walk straight into your database without needing a username or password.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;The vulnerability, tracked as &lt;b&gt;CVE-2026-9082 &lt;/b&gt;and disclosed under advisory &lt;a href="https://www.drupal.org/sa-core-2026-004" rel="nofollow" target="_blank"&gt;SA-CORE-2026-004&lt;/a&gt;, scores 20 out of 25 on Drupal's risk scale. That "Highly Critical" rating isn't an exaggeration: the scoring breakdown shows zero access complexity, no authentication required, and full confidentiality and integrity impact — meaning an attacker can read everything and modify anything.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;What's broken and why&lt;/h3&gt;&lt;p&gt;Drupal's database abstraction API is supposed to act as a safety net — a layer between PHP code and the database that automatically sanitizes queries to block injection attacks. But a flaw in this API allows specially crafted HTTP requests to slip past that sanitization entirely, enabling arbitrary SQL to execute directly against the database.&lt;/p&gt;&lt;p&gt;The vulnerability only affects sites running PostgreSQL databases, not MySQL or MariaDB backends. That's a narrowing factor, but PostgreSQL is common among enterprise Drupal deployments — government portals, university sites, and large media organizations frequently run it for performance and compliance reasons.&lt;/p&gt;&lt;p&gt;The consequences of successful exploitation range from &lt;b&gt;data exfiltration&lt;/b&gt; (leaking user records, private content, credentials) to &lt;b&gt;privilege escalation&lt;/b&gt; and, in some configurations, &lt;b&gt;remote code execution&lt;/b&gt; — full server takeover.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Broader blast radius: Symfony and Twig&lt;/h3&gt;&lt;p&gt;The patches do more than fix the SQL injection. The releases for all supported branches also bundle upstream security updates for Symfony and Twig, two PHP libraries that Drupal depends on heavily.&lt;/p&gt;&lt;p&gt;Drupal's advisory explicitly warns that depending on your site's configuration and installed modules, you may be independently vulnerable to those upstream issues — even if PostgreSQL isn't in the picture. All sites should update regardless.&lt;/p&gt;&lt;p&gt;The advisory specifically recommends reviewing which user roles have the ability to update Twig templates, for example through Views or contributed modules — a Twig template injection path could compound the risk significantly.&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;Who is affected and what to do&lt;/h3&gt;&lt;p&gt;Every supported Drupal branch is in scope: Drupal 10.4 through 11.3. The Drupal Security Team went further and issued best-effort patches for end-of-life Drupal 8 and 9 installations, acknowledging the severity warrants the exception — though those patches come without guarantees and those sites remain exposed to prior unpatched vulnerabilities.&lt;/p&gt;&lt;p&gt;Patched versions are:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;&lt;b&gt;Drupal 11: &lt;/b&gt;11.3.10, 11.2.12, 11.1.10&lt;/li&gt;&lt;li&gt;&lt;b&gt;Drupal 10: &lt;/b&gt;10.6.9, 10.5.10, 10.4.10&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Sites using Drupal Steward (Drupal's WAF-based protection service) are already shielded from known attack vectors, but should still upgrade promptly in case additional exploitation paths surface.&lt;/p&gt;&lt;p&gt;Two days before release, the Drupal Security Team issued an advance public notice — rare, and a signal of how seriously they treated this. The team explicitly warned that "exploits might be developed within hours or days" of the advisory going public, urging administrators to reserve time the same day patches dropped.&lt;/p&gt;&lt;p&gt;If your Drupal site runs PostgreSQL and hasn't been updated yet, that window is closing fast. Update now.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYmB8vsFk-8-SIe1gbYVNUCjxaUho69AYfhVYBM28rzCaDCHV9kRL9DnLGz5SUFy7HHCbAXAg4bhdTvngwmEKI4KV4mRGSna8qkHnyqQbHo7FCyiXeg1dvfA1bokbsdWZ_aTmYxKJOu5maFtr8RCU4JYwmy8yHAZJiaw4rxJQeLtYCbqqJnBRiejq_CwE/s72-c/CVE-2026-9082.webp" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>protalweb@gmail.com (Vivek Gurung)</author></item></channel></rss>