• A critical security vulnerability in the AI Engine WordPress plugin has put more than 100,000 active installations at risk of privilege escalation attacks.

    The flaw, tracked as CVE-2025-11749 with a CVSS score of 9.8, allows unauthenticated attackers to extract bearer tokens and gain complete administrative control over vulnerable WordPress sites.

    Security researcher Emiliano Versini discovered the vulnerability on October 4, 2025, and responsibly reported it through the Wordfence Bug Bounty Program, earning a bounty of $2,145.

    The vulnerability centers on a sensitive information exposure issue that affects all versions of AI Engine up to and including 3.1.3.

    When site administrators enable the ‘No-Auth URL’ feature in the Model Context Protocol (MCP) settings, the plugin inadvertently exposes bearer tokens through the /wp-json/ REST API index.

    These tokens serve as authentication credentials for the MCP integration, which enables AI agents like Claude and ChatGPT to control WordPress websites by executing commands, managing media files, and editing user accounts.

    Wordfence researchers identified the root cause in the plugin’s REST API route registration process.

    The vulnerable code registers No-Auth URL endpoints without setting the ‘show_in_index’ parameter to false, making these endpoints publicly accessible.

    Once attackers extract the exposed bearer token from the API index, they can authenticate themselves to the MCP endpoint and execute commands such as ‘wp_update_user’ to escalate their privileges to administrator level.

    With administrative access secured, threat actors can upload malicious plugins containing backdoors, modify website content to inject spam, or redirect visitors to harmful sites.

    Technical Breakdown of the Exploitation Process

    The vulnerability exists within the Meow_MWAI_Labs_MCP class where the plugin registers REST API routes using the rest_api_init() function.

    The critical flaw emerges when the No-Auth URL setting is enabled. The code registers special endpoints that include the bearer token directly in the URL path, designed to allow AI agents access without traditional authentication. However, the registration fails to hide these endpoints from the public REST API index.

    // No-Auth URL endpoints (with token in path)
    $noauth_enabled = $this->core->get_option( 'mcp_noauth_url' );
    if ( $noauth_enabled && !empty( $this->bearer_token ) ) {
      register_rest_route( $this->namespace, '/' . $this->bearer_token . '/sse', [
        'methods' => 'GET',
        'callback' => [ $this, 'handle_sse' ],
        'permission_callback' => function ( $request ) {
          return $this->handle_noauth_access( $request );
        },
      ] );
    }

    An unauthenticated attacker can simply navigate to /wp-json/ on a vulnerable WordPress site to view all registered REST API endpoints.

    Sites with No-Auth URL enabled will expose endpoints containing the bearer token in their path structure.

    The attacker can then use this token to authenticate requests to the MCP endpoint and execute privileged operations.

    Plugin developer Jordy Meow addressed the vulnerability in version 3.1.4 by adding the ‘show_in_index’ => false parameter to prevent the endpoints from appearing in the public index.

    However, site administrators who previously had No-Auth URL enabled must rotate their bearer tokens immediately, as the exposed credentials may have already been compromised.

    Wordfence deployed firewall rules for Premium, Care, and Response users on October 15, 2025, while free users will receive protection on November 14, 2025.

    The firewall detects malicious REST API actions targeting the MCP endpoint and blocks exploitation attempts.

    Site owners should update to AI Engine version 3.1.4 immediately and regenerate their bearer tokens through the plugin settings to ensure complete protection against this critical vulnerability.

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

    The post AI Engine WordPress Plugin Exposes 100,000 WordPress Sites to Privilege Escalation Attacks appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Seven critical vulnerabilities in OpenAI’s ChatGPT, affecting both GPT-4o and the newly released GPT-5 models, that could allow attackers to steal private user data through stealthy, zero-click exploits.

    These flaws exploit indirect prompt injections, enabling hackers to manipulate the AI into exfiltrating sensitive information from user memories and chat histories without any user interaction beyond a simple query.

    With hundreds of millions of daily users relying on large language models like ChatGPT, this discovery highlights the urgent need for stronger AI safeguards in an era where LLMs are becoming primary information sources.​

    The vulnerabilities stem from ChatGPT’s core architecture, which relies on system prompts, memory tools, and web browsing features to deliver contextual responses.

    OpenAI’s system prompt outlines the model’s capabilities, including the “bio” tool for long-term user memories enabled by default and a “web” tool for internet access via search or URL browsing.

    Memories can store private details deemed important from past conversations, while the web tool uses a secondary AI, SearchGPT, to isolate browsing from user context, theoretically preventing data leaks.

    However, Tenable researchers found that SearchGPT’s isolation is insufficient, allowing prompt injections to propagate back to ChatGPT.​

    browsing via Search GPT

    Novel Attack Techniques Exposed

    Among the seven vulnerabilities, a standout is the zero-click indirect prompt injection in the Search Context, where attackers create indexed websites tailored to trigger searches on niche topics.

    Here are short summaries of all seven ChatGPT vulnerabilities discovered by Tenable Research:

    • Indirect Prompt Injection via Browsing Context: Attackers hide malicious instructions in places like blog comments, which SearchGPT processes and summarizes for users, compromising them without suspicion.​
    • Zero-Click Indirect Prompt Injection in Search Context: Attackers index websites with malicious prompts that trigger automatically when users ask innocent questions, leading to manipulated responses without any user clicks or interaction.​
    • One-Click Prompt Injection via URL Parameter: Users clicking on crafted links (e.g., chatgpt.com/?q=malicious_prompt) unknowingly cause ChatGPT to execute attacker-controlled instructions.​
    • url_safe Safety Mechanism Bypass: Attackers leverage whitelisted Bing.com tracking links to sneak malicious redirect URLs past OpenAI’s filters and exfiltrate user data, even circumventing built-in protections.​
    • Conversation Injection: Attackers inject instructions into SearchGPT’s output that ChatGPT reads and executes from conversational context, effectively prompting itself and enabling chained exploits.​
    • Malicious Content Hiding: By abusing a markdown rendering flaw, attackers can hide injected malicious prompts from the user’s view while keeping them in model memory for exploitation.​
    • Persistent Memory Injection: Attackers manipulate ChatGPT to update its persistent memory and embed exfiltration instructions so private data continues being leaked in future sessions or interactions.​

    Proofs of Concept and OpenAI’s Response

    Tenable demonstrated full attack chains, such as phishing via blog comments leading to malicious links or image markdowns that exfiltrate info using url_safe bypasses.

    In PoCs for both GPT-4o and GPT-5, attackers phished users by summarizing rigged blogs or hijacking search results to inject persistent memories that leak data perpetually. These scenarios underscore how everyday tasks like asking for dinner ideas could unwittingly expose personal details.​

    Tenable disclosed the issues to OpenAI, resulting in fixes for some vulnerabilities via Technical Research Advisories (TRAs) like TRA-2025-22, TRA-2025-11, and TRA-2025-06.

    Despite improvements, prompt injection remains an inherent LLM challenge, with GPT-5 still vulnerable to several PoCs. Experts urge AI vendors to rigorously test safety mechanisms, as reliance on isolated components like SearchGPT proves fragile against sophisticated chaining.​

    As LLMs evolve to rival traditional search engines, these HackedGPT findings serve as a wake-up call for users and enterprises to scrutinize AI dependencies and implement external monitoring.​

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

    The post HackedGPT – 7 New Vulnerabilities in GPT-4o and GPT-5 Enables 0-Click Attacks appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Another boat attack. The U.S. military killed two more people in an alleged drug-trafficking boat in an unspecified location off the Pacific coast of Latin America, Pentagon chief Pete Hegseth announced Tuesday with an 18-second video posted to Twitter. 

    “No U.S. forces were harmed in the strike, and two male narco-terrorists—who were aboard the vessel—were killed,” Hegseth said. 

    To date, at least 66 people have been killed in 16 strikes on 17 typically small boats. That includes nine vessels attacked in the Caribbean Sea and eight others on the Pacific side of Latin America. 

    Hegseth claims those in the boats are associated with a “Designated Terrorist Organization,” and that “NO cartel terrorist stands a chance against the American military,” he wrote online Tuesday. However, neither the White House nor the Defense Department has provided public evidence supporting their claims for any of the boat strikes, which the White House last week claimed are exempt from congressional oversight under the 1973 War Powers Resolution. 

    Panning out: “For Trump, the entire Western hemisphere is America’s,” former U.S. ambassador to NATO Ivo Daalder wrote Tuesday for Politico. “For him, the biggest threats to America today are the immigrants flooding across the country’s borders and the drugs killing tens of thousands from overdoses. And to that end, his real goal is to dominate the entire Western hemisphere — from the North Pole to the South Pole — using America’s superior military and economic power to defeat all ‘enemies,’ both foreign and domestic,” Daalder explained. 

    Why it matters: “Overall, Trump’s focus on dominating the Western hemisphere represents a profound shift from nearly a century’s-long focus on warding off overseas threats to protect Americans at home,” the former NATO ambassador said. “And like it or not, for Trump, security in the second quarter of the 21st century lies in concepts and ideas first developed in the last quarter of the 19th century.” More, here

    Out in Hawaii, a former Trump acting SecDef said this myopia is degrading America’s ability to deter China. Chris Miller, who ran the Pentagon in the lame-duck months of the first Trump administration, says he expected more from the second, not less. “Where’s the leadership? We spend a trillion dollars a year on national security. We can do more than one thing,” Miller said during a panel at last week’s AFCEA TechNet Indo-Pacific conference. He shared the stage with Sean Berg, a former deputy commander of Special Operations Command Pacific, who said China “is already in phase three” of a war while “we still think of ourselves in phase zero: shaping.” Defense One’s Jennifer Hlad has more, here.

    Related reading:One Caribbean Leader Is Going All-Out for Trump Against Venezuela,” the Wall Street Journal reported Tuesday regarding Trinidad and Tobago Prime Minister Kamla Persad-Bissessar. 

    Update: SecDef Hegseth’s Friday speech to defense industry leaders at the National War College in Washington is scheduled for 2 p.m. ET. 

    Admin note: “All media covering the event must be on the credentialed list,” the Pentagon announced in a message to reporters Wednesday. Read more about the Pentagon’s credentialed media list below the fold. 

    New: Gen. Kenneth Wilsbach was sworn in as the Air Force Chief of Staff this week. The service's new top uniformed leader had previously led Air Combat Command and Pacific Air Forces. 

    He told airmen in a brief letter made public on Tuesday that their mission was simple: “to fly and fix so we are ready to fight.” That message mirrors concerns echoed by Congress last month who urged the then-nominee to reverse the decline in aircraft readiness.

    Wilsbach also said the Air Force will “advocate relentlessly for programs like the F-47, Collaborative Combat Aircraft as well as nuclear force recapitalization through the Sentinel program and the B-21,” according to the letter. Notably, he did not promise to follow lawmakers’ direction on spending the $150 billion allocated in the reconciliation bill last summer.

    Related:Air Force adopts new grooming standards to align with Hegseth’s vision,” Military Times reported Tuesday. 

    Coverage continues after the jump…


    Welcome to this Wednesday edition of The D Brief, a newsletter dedicated to developments affecting the future of U.S. national security, brought to you by Ben Watson, Thomas Novelly and Bradley Peniston. It’s more important than ever to stay informed, so thank you for reading. Share your tips and feedback here. And if you’re not already subscribed, you can do that here. On this day in 2006, and almost three years after his capture, Saddam Hussein was sentenced to death by the Iraqi Interim Government for crimes against humanity committed during his time in office, including the 1982 massacre of 148 people.

    National Guard soldiers ordered to Washington, D.C., have had their deployments extended to at least February, CNN reported last Wednesday as a court case over the matter continues to play out pitting the White House against Washington’s attorney general. 

    Recap: Trump ordered the troops to the nation’s capital in early August, offering false and exaggerated crime statistics to justify the Guard deployment and his takeover of the D.C. police. The deployments—totalling more than 2,300 troops so far, including soldiers from DC, Louisiana, Mississippi, Ohio, South Carolina, West Virginia, Georgia and Alabama—were initially slated to end in November. However, there were indications online suggesting U.S. officials were planning for a longer Guard presence in Washington, as Task & Purpose reported in mid-September. Meanwhile, “Soldiers, who largely have patrolled federal parks and Metro subway stations, have been spotted over recent weeks picking up trash in Washington or being heckled by city residents, including some who have played the ‘Imperial March’ from ‘Star Wars’ at them,” Task & Purpose reported Sunday. 

    ICYMI:Trump's National Guard deployments aren't random. They were planned years ago,” NPR reported Monday. 

    AM dispatch from Washington: “National Guard troops patrolling DC made themselves useful this morning: Pushed a dead BMW out of traffic on Pennsylvania Avenue,” former State Department official Brian Finacune wrote on social media Wednesday. He added, “Not obvious to me however that this needed to be a military function.”

    After booting nearly all of its professional journalists from the building, Trump’s Pentagon credentialed far-right activist Laura Loomer as a reporter—and she quickly began appealing for tips, which is prohibited according to the Pentagon policy she says she’d signed to obtain the credentials, Phil Stewart of Reuters pointed out in response to Loomer’s announcement on social media Tuesday. 

    About that updated Pentagon policy: It reads, “An advertisement or social media post by an individual journalist or media outlet that directly targets [Defense Department] personnel to disclose non-public information without proper authorization would constitute a solicitation that could lead to revocation” of press credentials, Stewart flagged.

    Perspective: The Pentagon’s policy shop is a “Pigpen-like mess,” Arkansas GOP Sen. Cotton said during a routine nomination hearing Tuesday on Capitol Hill. 

    Background: Austin Dahmer was ostensibly before the committee to answer questions about how he would tackle the job of assistant secretary for strategy, plans, and forces—a job whose title and responsibilities have changed in ways that the committee was only told about on Sunday night, Defense One’s Meghann Myers reports. But because Dahmer has already been performing the duties of another high-level Pentagon official—and because SecDef Hegseth has restricted communication between the department and Congress, requiring every interaction be cleared through legislative affairs—a bipartisan group of senators took the opportunity to grill Dahmer on a host of recent department moves.

    Sen. Cotton listed several concerns, including: 

    • A pause in Ukrainian security assistance;
    • The uncoordinated review of the AUKUS agreement;
    • Opposition to deploying more U.S. troops to the Middle East during the Iran-Israel war in June;
    • The cancellation of a meeting among top Japanese and U.S. officials;
    • And the recent cancellation of a rotational Army brigade deployment to Romania. 

    “I understand that media reports can be wrong, believe me, but it just seems like there's this Pigpen-like mess coming out of the policy shop that you don't see from, say, intel and security and acquisition and sustainment,” Cotton said. Asked why the policy undersecretary’s office, led by Elbridge Colby, has been at the center of so many controversies, Dahmer blamed “fake news” and “inaccurate reporting” while claiming ignorance of details. Read the rest, here

    Update: Saudi Arabia moved one step closer to buying 48 F-35 jets after Riyadh’s request recently advanced in the Pentagon’s review process, progressing from the policy shop and now to the secretary level, Reuters reported Tuesday. 

    Caveat: “[N]o final decision has been made and several more steps are needed before the ultimate nod, including further approvals at the Cabinet level, sign-off from Trump and notification of Congress,” Mike Stone of Reuters writes. 

    Reminder: The Saudis are Washington’s biggest arms buyer, and have been seeking to purchase F-35s for several years. More, here

    Additional industry reading: Palantir’s Market Value Skyrocketed. See How Its Revenue Is Still Catching Up,” the Wall Street Journal reported Wednesday. 

    Trump 2.0

    Developing: The ongoing U.S. government shutdown is now the longest in history, passing the prior record set during Trump’s first term. (AP, Axios)

    Status report: Lawmakers signal some progress in bipartisan talks to end shutdown, Eric Katz of Government Executive reported Tuesday.  

    Related reading:

    ]]>

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Google on Wednesday said it discovered an unknown threat actor using an experimental Visual Basic Script (VB Script) malware dubbed PROMPTFLUX that interacts with its Gemini artificial intelligence (AI) model API to write its own source code for improved obfuscation and evasion. “PROMPTFLUX is written in VBScript and interacts with Gemini’s API to request specific VBScript obfuscation and

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A sophisticated threat actor known as Curly COMrades has deployed an innovative attack methodology that leverages legitimate Windows virtualization features to establish covert, long-term access to victim networks.

    The campaign, which began in early July 2025, represents a significant evolution in adversary tactics as threat actors increasingly seek methods to bypass endpoint detection and response solutions that have become standard defensive tools.

    The operation centers on the abuse of Hyper-V virtualization technology on compromised Windows 10 machines.

    By enabling the Hyper-V role and deploying a minimalistic Alpine Linux-based virtual machine, the attackers created a hidden operational environment that hosts custom malware while evading traditional host-based security monitoring.

    The virtual machine, requiring only 120MB of disk space and 256MB of memory, provides a dedicated platform for running two custom implants: CurlyShell, a persistent reverse shell, and CurlCat, a reverse proxy tool.

    Bitdefender researchers identified this advanced campaign through collaboration with the Georgian CERT, which detected a malicious sample communicating with a compromised site under monitoring.

    The joint investigation revealed that Curly COMrades, first documented in August 2025 as a threat actor supporting Russian interests in geopolitical hotbeds, has significantly enhanced its toolkit and operational sophistication.

    The forensic analysis uncovered that attackers effectively isolated their malware execution environment within a virtual machine, bypassing many traditional security detections by routing malicious traffic through the host’s network stack, making it appear to originate from legitimate IP addresses.

    The attack demonstrates meticulous operational planning and technical expertise. Threat actors established persistence through multiple mechanisms, including PowerShell scripts configured via Group Policy for local account creation and Kerberos ticket manipulation for lateral movement.

    Attack flow (Source – Bitdefender)

    The deployment of various proxy and tunneling tools such as Resocks, Rsockstun, Ligolo-ng, CCProxy, and Stunnel further illustrates the group’s determination to maintain flexible access channels to compromised environments.

    Virtual Machine Deployment and Persistence Mechanism

    The deployment sequence begins with enabling the Hyper-V virtualization feature while deliberately disabling its management interface to reduce visibility. The attackers executed the following commands remotely:

    dism /online /disable-feature /FeatureName:microsoft-hyper-v-Management-clients /norestart
    dism /online /enable-feature /All /LimitAccess /FeatureName:microsoft-hyper-v /norestart

    Following a brief interval, the threat actors initiated the payload delivery phase. A RAR archive disguised as a video file was downloaded and extracted to the deceptive directory `c:\programdata\microsoft\AppV\app`, a location designed to blend with legitimate Microsoft application virtualization files. The virtual machine files were then imported using PowerShell:

    powershell.exe -c import-vm -path "c:\\programdata\\microsoft\\AppV\\app\\Virtual Machines\\1DBCC80B-5803-4AF1-8772-712C688F408A.vmcx" -Copy -GenerateNewId
    powershell.exe -c Start-VM -name WSL

    The VM naming convention “WSL” serves as a deception tactic, suggesting the use of Windows Subsystem for Linux, a commonly trusted developer tool that typically receives less security scrutiny. However, this is a fully isolated Hyper-V instance operating outside the standard WSL framework.

    Persistence within the virtual machine operates through a root-level crontab entry that executes every four hours at 20 minutes past the hour.

    The cron task runs `/bin/alpine_init`, which subsequently launches the CurlyShell implant located at `/bin/init_tools`.

    This custom reverse shell maintains HTTPS communication with the command and control infrastructure, while CurlCat manages SSH reverse proxy tunneling on demand.

    The VM configuration utilizes Hyper-V’s Default Switch network adaptor with Network Address Translation, ensuring all malicious outbound traffic appears to originate from the compromised host machine’s legitimate IP address, significantly complicating attribution and detection efforts.

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

    The post Curly COMrades Hacker Group Using New Tools to Create Hidden Remote Access on Compromised Windows 10 appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Any individual heavily depends on data as their most critical asset: from memorable photos to important work documents, everything must be safeguarded properly.

    Why? Simply because you can never predict what might happen to your data: you could lose your laptop with thousands of stored projects or accidentally delete entire folders containing your child’s photos. 

    The good news is that backups can easily protect you from these problems. And even better, you don’t have to pay to get an efficient data protection solution. 

    There’s a wide range of backup software available that offers a solid set of features for effective data protection completely free of charge for individual use. 

    The only thing that matters is understanding your requirements for these solutions: what to back up, how to do it, what limitations might prevent you from choosing a particular tool, and, finally, what the essentials of a perfect backup solution for home use are. 

    Free Backup Solutions Explained 

    Sometimes, unfortunately, “free” can mean “incomplete.”

    Many solutions on the market are limited in functionality, and what might appear to be the same version as the paid product is often just a trimmed-down edition with blocked or removed features, designed to entice you into purchasing a more advanced version. 

    However, not all limitations are problematic for a home user. Free solutions may simply not offer advanced features that businesses or power users require, ensuring the software remains simple and manageable for individual users who don’t need them.

    So, yes, these tools do work, but it’s important to understand their limitations and choose a solution that fits your needs as closely as possible.

    Typical limitations can include lack of support, fewer or no advanced features (like image-based backup, for instance), and storage restrictions in terms of supported storage providers and the volume of data that can be backed up. 

    Still, for the most part, free backup solutions are more than enough for home users.

    With the available features, you can successfully back up your data and protect your most valuable assets, but it’s still important to do your research to choose the solution that best fits your needs. 

    Key Features to Consider 

    Now, you need to understand the essential features of a free backup solution that you might want to check: 

    • Backup options supported: the most important types are file-level backup (for files and folders only) and image-based backup (a full snapshot of your entire system). 
    • Storage options supported: to follow the industry standard called 3-2-1-1-0 backup rule, you should be able to back up your data both locally and to the cloud. Some free editions may only support local storage or a very limited number of offsite storage destinations. The best choice is usually a solution that supports a BYOS (bring-your-own-storage) approach, allowing you to connect to the storage account of your choice. 
    • Customizable scheduling: the solution should allow you to schedule backups to run on specific days or at specific times. 
    • Customizable retention and versioning settings: the ability to retain multiple versions of files lets you restore the latest version if data is lost or corrupted. 
    • Security: some backup tools don’t encrypt your data while it’s being uploaded or stored, and they may not have features like object lock. Object lock is a feature that prevents your files from being deleted or changed for a certain period of time, adding an extra layer of protection against ransomware. 
    • Simplicity: for personal use, ease of deployment, installation, and use is critical. If the interface is overwhelming or you can’t find or understand the features you need, that’s a red flag and a reason to look for another solution. 
    • Upgrade options: if the free edition is limited to personal use, you should be able to scale up or access more advanced features easily. Usually, this means a smooth switch to the paid version or an option to enable paid features within your current solution. 

    Best Free Backup Solutions 

    According to recent reviews and round-ups, some of the top free tools include: 

    MSP360 Backup Free 

    MSP360 Free Backup software is a free backup solution for personal data backup.

    For a free backup tool, MSP360 Backup Free provides a remarkably rich set of features: it runs on Windows, Linux, and macOS, and offers support for a wide range of cloud storage options like AWS, Wasabi Hot Cloud Storage, Backblaze B2, Microsoft Azure, Google Cloud, IDrive e2, and other S3-compatible storage providers.

    With the recent update, the freeware also supports image-based backups and raises the storage limit to 5 TB – which is incredible for home users. This software also supports object lock making it an excellent choice for ransomware protection. 

    EaseUS ToDo Backup Free 

    EaseUS ToDo Backup Free is a solution for home use that features drive and partition imaging and file and folder backup for Windows.

    As they state on their website, “advanced backup options are open to free users, such as incremental and differential backup, scheduled backup, encrypted backup, <…> and more”. 

    They also offer 250 GB of free storage for users (which is great, but might not be enough for the majority of home users), and if you run out of the storage space, you can purchase 1 TB of storage space for $20.  

    Paragon Backup & Recovery Community Edition 

    This free backup solution provides full support for Windows-based desktops, and supports both file-level and disk image backups.

    Other features included in the free edition include password protection, compression, automatic scheduling, versioning, and more making this freeware a very strong and advanced choice for home users.

    With Paragon freeware, you can back up your data to different types of drives and devices, including SSDs, HDDs, Windows Storage Spaces, advanced-format drives, and more.  

    Cobian Backup 

    Cobian Backup is one of the most advanced solutions on this list (which might be a little bit too much for home users, however, if you know exactly how your backups should be configured, you should opt for this solution) with support for multiple backup jobs creation, archiving to external hard drive or network location, and simultaneous backups to several locations.

    You can also enable encryption to add an extra layer of protection for your files and enable encryption to save on storage space.  

    AOMEI Backupper Standard 

    Another great solution on our list is a free backup from AOMEI: it offers support for file, image, and system backup, and one-way sync and disaster recovery. 

    It’s a full-featured free backup solution for Windows: back up Windows OS, entire hard disk, partitions and individual files. With this solution, you can customize backup schedules, enable compression, configure email notification, and more.  

    Final Thoughts 

    Free backup software has matured to the point where it can offer surprisingly robust protection.

    With careful selection, you can deploy a perfect solution that covers your data, provides off-site protection, and gives you peace of mind with no dime spent.  

    The post Guide to Choosing the Best Free Backup Software for Secure, Reliable Cloud Backup appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • The Clop ransomware group continues to pose a significant threat to enterprise organizations worldwide, with recent analysis revealing their exploitation of a critical zero-day vulnerability in Oracle E-Business Suite. Operating since early 2019, Clop has established itself as one of the most prolific and sophisticated ransomware gangs, amassing a victim count exceeding 1,025 organizations and […]

    The post Clop Ransomware Group Exploits New 0-Day Vulnerabilities in Active Attacks appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • The notorious FIN7 threat group, also known by the nickname Savage Ladybug, continues to pose a significant risk to enterprise environments through an increasingly refined Windows SSH backdoor campaign.

    The group has been actively deploying this sophisticated backdoor mechanism to establish persistent remote access and facilitate data exfiltration operations.

    First documented in 2022, the malware has remained largely unchanged in its core functionality, suggesting that FIN7 has found a highly effective attack methodology that continues to evade traditional detection mechanisms.

    The attack campaign leverages a combination of batch script execution and legitimate OpenSSH toolsets to create a covert communication channel between compromised systems and attacker-controlled infrastructure.

    By exploiting the trust typically placed in SSH protocols, FIN7 operatives can establish reverse SSH and SFTP connections that bypass conventional network monitoring and appear as legitimate administrative traffic.

    This technique demonstrates the group’s sophisticated understanding of system administration tools and their ability to weaponize widely-available utilities for malicious purposes.

    PRODAFT analysts and researchers identified that the malware employs an install.bat script paired with OpenSSH components to automate the deployment and configuration process.

    This approach significantly reduces the operational complexity for threat actors while maintaining a low profile across security logs and event monitoring systems.

    Persistence Mechanisms and Evasion Tactics

    The persistence strategy employed by FIN7’s SSH backdoor represents a particularly insidious aspect of the threat.

    By establishing SSH access points on compromised Windows systems, the attackers ensure continued access even after initial compromise vectors are remediated.

    The reverse SSH tunnel configuration allows operators to maintain command and control communication through encrypted channels, making it substantially more difficult for security teams to detect malicious traffic patterns.

    The backdoor’s ability to execute both SSH and SFTP operations provides attackers with multiple pathways for data extraction and lateral movement within network environments.

    Security researchers have documented that the malware maintains minimal modification signatures, relying instead on legitimate system components to avoid triggering behavioral detection rules.

    Organizations must implement robust SSH access controls, monitor for anomalous SSH connection patterns, and maintain comprehensive network segmentation to effectively counter this persistent threat.

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

    The post FIN7 Hackers Using Windows SSH Backdoor to Establish Stealthy Remote Access and Persistence appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Microsoft has issued an urgent advisory for Windows users, confirming that a recent set of security updates released after October 14, 2025 may cause certain systems to boot into the BitLocker recovery screen upon restart. The issue, currently under active investigation, has resulted in user reports of unexpected prompts for BitLocker recovery keys following device […]

    The post Microsoft Issues Alert: BitLocker Recovery Risk After October 2025 Updates appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Cybersecurity researchers have disclosed a new set of vulnerabilities impacting OpenAI’s ChatGPT artificial intelligence (AI) chatbot that could be exploited by an attacker to steal personal information from users’ memories and chat histories without their knowledge. The seven vulnerabilities and attack techniques, according to Tenable, were found in OpenAI’s GPT-4o and GPT-5 models. OpenAI has

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶