• A sophisticated technique that allows attackers to execute malicious code directly in memory is gaining traction, posing a significant challenge to modern Endpoint Detection and Response (EDR) solutions.

    This method, which involves an in-memory Portable Executable (PE) loader, enables a threat actor to run an executable within an already trusted process, effectively bypassing security checks that primarily monitor files written to disk.

    Loading PE in Memeory
    Loading PE in Memeory

    According to a user with the alias G3tSyst3m, the technique highlights a critical blind spot in some security postures, allowing secondary payloads to be deployed stealthily after initial access is gained.

    This “fileless” attack vector is particularly dangerous because it operates under the radar. An EDR solution may validate and approve an initial application, deeming it safe to run.

    However, once that trusted process is active, it can be manipulated to download and execute another PE file, such as a remote access trojan or info-stealer, entirely within its own memory space.

    Because the malicious executable never touches the file system, traditional antivirus and EDR tools that rely on file scanning and disk-based heuristics may fail to detect the threat.

    In-Memory PE Loader Leveraged

    The attack begins by leveraging the legitimate process to download a PE file from a remote source, such as a GitHub repository.

    Using standard Windows APIs like InternetOpenUrlA and InternetReadFile, the code fetches the executable and stores it in a memory buffer.

    This initial step is often mistaken for delicate network activity, allowing the payload to be smuggled onto the target system without raising alarms. Once the PE file resides in memory as a byte array, the loader meticulously reconstructs it for execution.

    Putty downloaded using PE
    Putty downloaded using PE

    This reconstruction process manually emulates the functions of the Windows operating system’s own loader. At a high level, the loader performs several critical steps:

    • Parses PE Headers: It reads the DOS and NT headers of the downloaded file to understand its structure, including its sections and dependencies.
    • Allocates Memory: It uses VirtualAlloc to reserve a new block of memory within the host process to map the executable image.
    • Maps Sections: The loader copies the PE headers and sections (like .text for code and .data for variables) from the buffer into the newly allocated memory space according to their virtual addresses.
    • Resolves Imports: It loads any required Dynamic-Link Libraries (DLLs) and resolves the addresses of external functions the PE needs to run. This is done by using LoadLibraryA and GetProcAddress.
    • Applies Relocations: It adjusts any hardcoded addresses in the code to ensure they point to the correct locations in memory.

    After successfully mapping the PE file and resolving its dependencies, the final steps involve adjusting memory permissions and triggering execution.

    The loader uses VirtualProtect to set the appropriate permissions for each section, for instance, marking the code section as executable and the data section as readable/writable.

    This mirrors the behavior of a legitimately loaded program and is crucial for the code to run without crashing the process. With the memory correctly prepared, the loader simply calls the PE file’s entry point, launching the malicious code.

    This method has proven effective in red team engagements and has been observed bypassing prominent EDR solutions like Microsoft Defender for Endpoint (XDR) and Sophos XDR.

    While not entirely foolproof, especially against advanced AI and machine learning-based detection that can flag anomalous process behavior over time, custom-built PE loaders remain a potent tool for evading detection.

    The technique underscores the need for security solutions that can perform deep memory inspection and behavioral analysis, moving beyond a reliance on file-based threat intelligence.

    Follow us on Google News, LinkedIn, and X for daily cybersecurity updates. Contact us to feature your stories.

    The post Hackers Can Bypass EDR by Downloading Malicious File as In-Memory PE Loader appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A newly disclosed flaw in OnePlus OxygenOS lets any app on a device read SMS and MMS messages without asking the user. Tracked as CVE-2025-10184, the issue stems from a permission bypass in the Telephony content provider (com.android.providers.telephony). Normally, apps must hold the Android READ_SMS permission and prompt the user before accessing text messages. In […]

    The post OnePlus OxygenOS Vulnerability Lets Apps Access SMS Data Without User Permission appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • In January 2025, Supermicro released patches addressing critical vulnerabilities in its Baseboard Management Controller (BMC) firmware validation logic. Despite these updates, subsequent research has uncovered bypass techniques that undermine signature verification and even compromise the BMC’s Root of Trust (RoT). Among these, CVE-2024-10237 stemmed from a logical vulnerability in the validation process, allowing malicious firmware […]

    The post Attackers Exploit BMC Firmware Vulnerabilities to Bypass Signature Verification appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • In recent weeks, cybersecurity teams have observed a surge in malicious GitHub repositories masquerading as legitimate security and financial software.

    Threat actors have crafted convincing forks of projects bearing names like Malwarebytes, LastPass, Citibank, and SentinelOne, populated with trojanized installers and scripts that deliver stealthy malware payloads.

    These repositories exploit the trust developers place in open source platforms, luring users into executing seemingly benign code. Early indicators suggest the campaign began in late August 2025, rapidly proliferating through GitHub’s trending and search features.

    Malicious search results (Source – Malwarebytes)

    The attackers register accounts mimicking official vendor identities, complete with cloned logos, README files, and release notes.

    When unsuspecting users clone or download these repositories, the build scripts invoke a hidden PowerShell downloader that retrieves payloads from remote command-and-control (C2) servers.

    Malwarebytes researchers identified the malware after noticing anomalous network connections emerging from sandboxed build environments, triggering an investigation that unmasked the underlying attack chain.

    Initial analysis reveals that once executed, the dropper goes to work: it decrypts embedded shellcode, injects it into a suspended process, and establishes persistence via registry run keys.

    Victims experience no visible alerts or installation failures, while the malware stealthily harvests system information and credentials before deploying secondary modules.

    The impact is twofold: organizations suffer data exfiltration risks, while individual users face credential theft and potential account takeover.

    Beyond the direct financial and reputational damage, this campaign underscores a new attack vector: weaponizing open source collaboration platforms.

    Security teams must elevate scrutiny of code origin and integrity, incorporating automated scanning tools into CI/CD pipelines to flag suspicious scripts and remote downloads.

    Fake ‘GET MALWAREBYTES’ button on the dedicated GitHub page (Source – Malwarebytes)

    The ease with which attackers replicated vendor identities on GitHub highlights the need for stronger verification measures across developer communities.

    Infection Mechanism

    At the heart of this campaign lies a sophisticated PowerShell-based infection mechanism.

    Upon cloning the malicious repository, users are instructed to execute a build script named install.ps1, which appears to perform routine setup tasks.

    In reality, the script contains an obfuscated block that decodes a Base64 payload before executing it in memory:-

    $enc = 'JABXAG8AbgBlAAD...'
    $bytes = [Convert]::FromBase64String($enc)
    $asm = [System.Reflection.Assembly]::Load($bytes)
    $entry = $asm.EntryPoint
    $entry. Invoke($null, (,@()))

    Once loaded, this in-memory assembly (a variant of the SilentRunner loader) seeks out legitimate Windows processes—commonly svchost.exe—and performs process hollowing to evade detection.

    The hollowed process then initializes the main payload, which registers persistence through a registry key:

    New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run" -Name "Windows Defender Update" -Value "$env:APPDATA\msupd.exe"

    Throughout this sequence, network indicators include HTTPS requests to hxxps://secure-update-server[.]com/manifest.json and subsequent POSTs exfiltrating environment variables.

    The brevity and stealth of the loader’s operations allow the campaign to infect systems with minimal forensic artifacts, illustrating the evolving sophistication of code-execution exploits on open source platforms.

    Follow us on Google NewsLinkedIn, and X to Get More Instant UpdatesSet CSN as a Preferred Source in Google.

    The post Weaponized Malwarebytes, LastPass, Citibank, SentinelOne, and Others on GitHub Deliver Malware appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Cybersecurity researchers have disclosed details of a new malware family dubbed YiBackdoor that has been found to share “significant” source code overlaps with IcedID and Latrodectus. “The exact connection to YiBackdoor is not yet clear, but it may be used in conjunction with Latrodectus and IcedID during attacks,” Zscaler ThreatLabz said in a Tuesday report. “YiBackdoor is able to execute

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Think payment iframes are secure by design? Think again. Sophisticated attackers have quietly evolved malicious overlay techniques to exploit checkout pages and steal credit card data by bypassing the very security policies designed to stop them. Download the complete iframe security guide here.  TL;DR: iframe Security Exposed Payment iframes are being actively exploited by attackers using

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A severe security vulnerability in OnePlus OxygenOS has been discovered that allows any installed application to read SMS and MMS messages without requesting permission or notifying users. 

    The flaw, designated CVE-2025-10184, affects multiple OnePlus devices running OxygenOS versions 12 through 15, potentially compromising SMS-based multi-factor authentication (MFA) systems and exposing sensitive personal communications to unauthorized access.

    Cybersecurity firm Rapid7 identified this permission bypass vulnerability across several OnePlus smartphone models, including the OnePlus 8T, OnePlus 10 Pro 5G, and potentially other devices in the ecosystem. 

    The vulnerability stems from improperly secured internal content providers within the Android Telephony package (com.android.providers.telephony) that can be exploited through SQL injection techniques.

    OnePlus OxygenOS Vulnerability

    The vulnerability exploits Android’s content provider system, which manages structured data access across applications. 

    OnePlus introduced three additional exported content providers in their OxygenOS implementation that are not present in stock Android: PushMessageProvider, PushShopProvider, and ServiceNumberProvider. 

    These providers contain inadequate permission controls and lack proper SQL injection protections.

    The most critical flaw exists in the ServiceNumberProvider class, where the update method accepts arbitrary SQL code through the where parameter without sanitization. 

    Malicious applications can exploit this weakness to perform blind SQL injection attacks, utilizing Boolean inference techniques to extract SMS data character by character from the device’s message database, as the report states.

    The exploitation process involves crafting SQL queries with UNION SELECT statements and substr functions to systematically extract message contents. 

    This vulnerability presents significant security implications beyond simple message interception. 

    The flaw effectively bypasses Android’s READ SMS permission system, allowing malicious applications to access SMS data silently without user consent or system notifications. 

    Most critically, this compromises SMS-based MFA systems used by banking applications, social media platforms, and other security-sensitive services.

    Risk FactorsDetails
    Affected ProductsOnePlus devices running OxygenOS 12, 14, and 15 (e.g. 8T, 10 Pro)
    ImpactUnauthorized read of SMS and MMS data and metadata; silent bypass of SMS-based MFA
    Exploit Prerequisites1. Vulnerable OxygenOS version with unprotected Telephony content providers
    2. At least one row in exposed table or ability to insert dummy row
    3. Malicious app installed on device
    CVSS 3.1 Score7.8 (High)

    Mitigations

    The vulnerability affects OxygenOS versions 12, 14, and 15 across multiple device models. Notably, the OxygenOS 11 versions tested were not vulnerable, suggesting the security flaw was introduced during the OxygenOS 12 development cycle in 2021. 

    Rapid7 estimates the issue could affect surveillance activities by state-sponsored adversaries and authoritarian regimes seeking to monitor communications.

    OnePlus has remained unresponsive to Rapid7’s disclosure attempts since May 2025, leading to public disclosure without vendor coordination. 

    Users can mitigate exposure by removing non-essential applications, transitioning from SMS-based MFA to authenticator applications, and utilizing end-to-end encrypted messaging platforms for sensitive communications until OnePlus releases security patches addressing CVE-2025-10184.

    Follow us on Google News, LinkedIn, and X for daily cybersecurity updates. Contact us to feature your stories.

    The post OnePlus OxygenOS Vulnerability Allows Any App to Read SMS Data Without Permission appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A serious security flaw in the Salesforce CLI installer (sf-x64.exe) has been assigned CVE-2025-9844. This weakness allows attackers to execute arbitrary code with SYSTEM-level privileges on Windows machines. Users who installed Salesforce CLI from untrusted sources may be at risk. The vulnerability stems from improper handling of file paths during installation, which can be abused […]

    The post Salesforce CLI Installer Flaw Lets Attackers Run Code and Gain SYSTEM-Level Access appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Since August 2024, a financially motivated threat group has been targeting Android users in Indonesia and Vietnam with banking trojans disguised as official government identity and payment applications. By employing elaborate download mechanisms, reusing infrastructure, and leveraging template-based spoofed sites, the operators have used a coordinated campaign to evade detection and steal user credentials. The […]

    The post Banking Trojans Targeting Android Users Disguise as Government and Trusted Payment Apps appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A critical vulnerability in the Salesforce CLI installer (sf-x64.exe) enables attackers to achieve arbitrary code execution, privilege escalation, and SYSTEM-level access on Windows systems. 

    Tracked as CVE-2025-9844, the flaw stems from improper handling of executable file paths by the installer, allowing malicious files to be executed in place of legitimate binaries when the software is obtained from untrusted sources.

    Path Hijacking Vulnerability (CVE-2025-9844)

    The vulnerability exploits how the Salesforce-CLI installer resolves file paths during installation. When sf-x64.exe runs, it loads several auxiliary executables and DLLs from the current working directory before falling back to the directory containing the installer. 

    An attacker who places a crafted executable named identically to a legitimate component (for example, sf-autoupdate.exe or sf-config.dll) in the same folder can cause the installer to load and execute the attacker’s code. 

    Because the installer runs with elevated privileges by default, writing registry keys under HKLM and creating services under LocalSystem, the injected code inherits SYSTEM-level privileges, enabling complete takeover of the host machine.

    Upon execution, the installer loads the rogue sf-autoupdate.exe, which escalates privileges by creating a reverse shell service under the LocalSystem account. The attacker then uses the shell to execute commands and successfully retrieves SYSTEM-level output.

    Risk FactorsDetails
    Affected ProductsSalesforce CLI installer (sf-x64.exe) versions < 2.106.6
    ImpactArbitrary code execution; privilege escalation to SYSTEM-level access
    Exploit PrerequisitesInstaller obtained from untrusted source; attacker places malicious executable in installer’s working directory; installer run with elevated privileges
    CVSS 3.1 Score7.8 (High)

    Affected Versions and Mitigation

    All Salesforce-CLI versions prior to 2.106.6 are impacted by this path hijacking vulnerability. 

    Importantly, only users who install the CLI from untrusted mirrors or third-party repositories are at risk; installations directly downloaded via the official Salesforce site use a signed installer that enforces strict path resolution and integrity checks.

    To remediate, affected users should immediately uninstall any CLI version obtained from unverified sources and perform a thorough system scan for unknown executables or suspicious services. 

    Salesforce has released version 2.106.6, which fixes the issue by hard-coding absolute file paths and validating digital signatures before loading supplementary executables. 

    Administrators are advised to enforce installation from trusted endpoints only and to enable Microsoft Defender Application Control (MDAC) policies to restrict execution of unauthorized binaries in installation directories. 

    Continuous monitoring of system event logs for unexpected service creation or installer execution under non-standard paths will help detect attempted exploits early.

    Follow us on Google News, LinkedIn, and X for daily cybersecurity updates. Contact us to feature your stories.

    The post Salesforce CLI Installer Vulnerability Let Attackers Execute Code and Gain SYSTEM-Level Access appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶